:root {
  --bg: #f5f5f7;
  --surface: #ffffff;
  --ink: #1d1d1f;
  --ink-strong: #050506;
  --muted: #6e6e73;
  --muted-dark: #86868b;
  --line: #dedee3;
  --line-soft: #e8e8ed;
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --dark: #111113;
  --green: #29a36a;
  --radius-sm: 0.75rem;
  --radius-md: 1.5rem;
  --radius-lg: 2rem;
  --radius-xl: 2.75rem;
  --pill: 999px;
  --header-height: 3.75rem;
  --announcement-height: 2rem;
  --announcement-offset: var(--announcement-height);
  --shell: 77.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-ios: cubic-bezier(0.32, 0.72, 0, 1);
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
}

/* Legal pages */
.legal-page {
  min-height: 100vh;
  background: #f5f5f7;
  color: #111111;
}

.legal-header {
  padding: 22px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(245, 245, 247, 0.94);
}

.legal-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-back {
  min-height: auto;
  padding: 10px 16px;
}

.legal-main {
  width: min(820px, calc(100% - 40px));
  padding-top: clamp(64px, 9vw, 112px);
  padding-bottom: clamp(72px, 10vw, 128px);
}

.legal-main > h1 {
  max-width: 100%;
  margin: 14px 0 10px;
  font-size: clamp(3rem, 7vw, 5.25rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.legal-updated {
  margin: 0 0 56px;
  color: #66666b;
}

.legal-main section {
  padding: 30px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.legal-main section:last-child {
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.legal-main h2 {
  margin: 0 0 14px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -0.025em;
}

.legal-main section p {
  max-width: 72ch;
  margin: 0;
  color: #3f3f44;
  line-height: 1.75;
}

.legal-main a,
.legal-footer a {
  color: inherit;
  text-underline-offset: 0.2em;
}

.legal-footer {
  margin-top: 0;
}

@media (max-width: 640px) {
  .legal-header-inner {
    gap: 14px;
  }

  .legal-back {
    padding: 9px 12px;
    font-size: 0.82rem;
  }

  .legal-main {
    width: min(100% - 28px, 820px);
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--announcement-offset) + 1rem);
}

html.announcement-dismissed {
  --announcement-offset: 0rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html[lang="zh-CN"] body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "SF Pro Text", sans-serif;
}

html[lang="zh-CN"] h1,
html[lang="zh-CN"] h2,
html[lang="zh-CN"] h3 {
  letter-spacing: -0.035em;
  line-height: 1.06;
}

body.nav-open {
  overflow: hidden;
}

.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-rows: 1fr;
  overflow: hidden;
  color: #17130a;
  background: #ffbf1a;
  opacity: 1;
  transition:
    grid-template-rows 260ms var(--ease-ios),
    opacity 180ms ease;
}

.announcement-bar-clip {
  min-height: 0;
  overflow: hidden;
}

.announcement-bar-inner {
  position: relative;
  display: flex;
  height: var(--announcement-height);
  align-items: center;
  justify-content: center;
  padding: 0.3rem 3rem;
}

.announcement-bar p {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 720;
  line-height: 1.3;
  text-align: center;
}

.announcement-bar strong {
  font-weight: 820;
}

.announcement-close {
  position: absolute;
  top: 50%;
  right: 0.7rem;
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #17130a;
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transform: translateY(-50%);
  transition:
    color 160ms ease,
    background-color 160ms ease;
}

.announcement-close:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.68);
}

.announcement-close:focus-visible {
  outline: 2px solid #17130a;
  outline-offset: 2px;
}

.announcement-bar.is-dismissed {
  grid-template-rows: 0fr;
  opacity: 0;
}

.announcement-bar[hidden] {
  display: none;
}

.no-js .announcement-close {
  display: none;
}

@media (max-width: 39.999rem) {
  :root {
    --announcement-height: 3.5rem;
  }

  .announcement-bar-inner {
    padding: 0.45rem 2.65rem 0.45rem 0.8rem;
  }

  .announcement-bar p {
    font-size: 0.68rem;
    line-height: 1.28;
  }
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  color: inherit;
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1;
  text-wrap: balance;
}

p {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

::selection {
  color: #fff;
  background: var(--blue);
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.shell {
  width: min(calc(100% - 2.5rem), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 999;
  padding: 0.7rem 1rem;
  border-radius: var(--pill);
  color: #fff;
  background: var(--ink-strong);
  font-size: 0.85rem;
  font-weight: 650;
  transform: translateY(-160%);
  transition: transform 240ms var(--ease);
}

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

.section {
  padding-block: clamp(5.5rem, 11vw, 9rem);
}

.section-index {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.statement {
  display: grid;
  gap: 1.5rem;
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.statement h2 {
  max-width: 59rem;
  font-size: clamp(2.75rem, 7.2vw, 5.4rem);
}

@media (min-width: 40rem) {
  #problems-title {
    font-size: clamp(2.5rem, 4.6vw, 4rem);
  }
}

.statement h2 span {
  color: var(--muted);
}

.statement > p {
  max-width: 35rem;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.8rem 1.35rem;
  border: 0;
  border-radius: var(--pill);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.button-blue {
  color: #fff;
  background: var(--blue);
}

.button-blue:hover {
  background: var(--blue-hover);
}

.button-dark {
  color: #fff;
  background: var(--ink-strong);
}

.button-dark:hover {
  background: var(--blue);
}

/* Header */
.site-header {
  position: sticky;
  top: var(--announcement-offset);
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(245, 245, 247, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition:
    top 260ms var(--ease-ios),
    border-color 240ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(0, 0, 0, 0.09);
}

.header-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.nav-shell {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  gap: 0.6rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink-strong);
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.header-actions {
  display: flex;
  order: 2;
  align-items: center;
  gap: 0.45rem;
  margin-left: auto;
}

.nav-toggle {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-content: center;
  gap: 0.35rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1rem;
  height: 1.5px;
  background: currentColor;
  transition:
    transform 240ms var(--ease),
    opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(0.22rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-0.22rem) rotate(-45deg);
}

.primary-nav {
  position: absolute;
  order: 3;
  top: calc(100% + 0.5rem);
  right: 0;
  left: 0;
  display: grid;
  gap: 0.25rem;
  max-height: calc(100vh - var(--header-height) - 1rem);
  max-height: calc(100dvh - var(--header-height) - 1rem);
  padding: 0.75rem;
  overflow-y: auto;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
  opacity: 1;
  overscroll-behavior: contain;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition:
    opacity 200ms ease,
    transform 300ms var(--ease),
    visibility 200ms ease;
}

.no-js .nav-shell {
  height: auto;
  min-height: var(--header-height);
  flex-wrap: wrap;
  padding-block: 0.5rem;
}

.no-js .nav-toggle {
  display: none;
}

.no-js .primary-nav {
  position: static;
  flex-basis: 100%;
  box-shadow: none;
}

.primary-nav a {
  display: flex;
  min-height: 2.7rem;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border-radius: var(--pill);
  color: #424245;
  font-size: 0.84rem;
  font-weight: 520;
}

.primary-nav a:hover {
  color: var(--ink-strong);
  background: var(--bg);
}

.nav-industries {
  position: relative;
}

.nav-industries > summary {
  display: flex;
  min-height: 2.7rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.8rem;
  border-radius: var(--pill);
  color: #424245;
  font-size: 0.84rem;
  font-weight: 520;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.nav-industries > summary::-webkit-details-marker {
  display: none;
}

.nav-industries > summary::marker {
  content: "";
}

.nav-industries > summary::after {
  width: 0.42rem;
  height: 0.42rem;
  flex: 0 0 auto;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-0.1rem);
  transition: transform 180ms ease;
}

.nav-industries[open] > summary::after {
  transform: rotate(225deg) translate(-0.08rem, -0.08rem);
}

.nav-industries > summary:hover,
.nav-industries[open] > summary {
  color: var(--ink-strong);
  background: var(--bg);
}

.nav-industries > summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.nav-industries-menu {
  display: grid;
  gap: 0.15rem;
  padding: 0.15rem 0.25rem 0.35rem 0.7rem;
}

.primary-nav .nav-industries-menu a {
  min-height: 2.45rem;
  padding-block: 0.45rem;
  font-size: 0.8rem;
}

.primary-nav .nav-industries-menu a[aria-current="page"] {
  color: var(--blue);
  background: #eef5ff;
  font-weight: 650;
}

.primary-nav .nav-cta {
  justify-content: center;
  color: #fff;
  background: var(--ink-strong);
}

.primary-nav .nav-cta:hover {
  color: #fff;
  background: var(--blue);
}

@media (max-width: 51.249rem) {
  .js .primary-nav {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.65rem) scale(0.985);
    visibility: hidden;
  }
}

.primary-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  visibility: visible;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  background: var(--surface);
}

.hero-wordmark {
  position: absolute;
  top: clamp(3rem, 7vw, 6rem);
  left: 50%;
  z-index: 0;
  width: max-content;
  margin: 0;
  color: #e8e8eb;
  font-size: clamp(6.5rem, 17vw, 19rem);
  font-weight: 700;
  letter-spacing: -0.095em;
  line-height: 0.74;
  pointer-events: none;
  transform: translateX(-50%);
  translate: 0 var(--hero-depth-back, 0px);
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  padding-block: clamp(10rem, 22vw, 13rem) clamp(5rem, 10vw, 7.5rem);
  text-align: center;
  translate: 0 var(--hero-depth-front, 0px);
}

@media (min-width: 48rem) and (pointer: fine) {
  .hero.is-parallax-active .hero-wordmark,
  .hero.is-parallax-active .hero-content {
    will-change: translate;
  }
}

html[lang="zh-CN"] .hero h1 {
  letter-spacing: -0.055em;
  line-height: 1;
}

.hero h1 {
  max-width: 70rem;
  color: var(--ink-strong);
  font-size: clamp(3.35rem, 9.2vw, 7.25rem);
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.hero h1 span {
  display: block;
  color: var(--muted);
}

.hero-lead {
  max-width: 46rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.3vw, 1.35rem);
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.5rem;
  padding-inline: 0.6rem;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 560;
}

/* Problems */
.problems {
  padding-top: 0;
  background: var(--surface);
}

.pain-grid {
  position: relative;
  display: grid;
  align-items: start;
  gap: 1rem;
  isolation: isolate;
}

.pain-card {
  display: flex;
  min-width: 0;
  min-height: 18.5rem;
  flex-direction: column;
  overflow: hidden;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg);
  transition:
    min-height 430ms var(--ease-ios),
    border-color 300ms ease,
    background 300ms ease,
    transform 500ms var(--ease),
    box-shadow 500ms var(--ease);
}

.pain-card:is(.is-open, :focus-within) {
  border-color: #d3d3d8;
  background: #fafafa;
  box-shadow: var(--shadow);
}

.pain-card-heading {
  display: flex;
  min-height: 0;
  flex: 1 1 auto;
  margin: 0;
  font-size: clamp(2.15rem, 3.25vw, 2.75rem);
  line-height: 0.98;
  transition:
    flex-grow 430ms var(--ease-ios),
    transform 430ms var(--ease-ios);
}

.pain-card-toggle {
  display: flex;
  width: 100%;
  min-height: 100%;
  flex: 1 1 auto;
  align-items: center;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: left;
}

.pain-card-toggle > span {
  display: block;
  min-width: 0;
  hyphens: none;
  overflow-wrap: normal;
  text-wrap: wrap;
  word-break: normal;
}

.pain-title-word,
.pain-body-word {
  display: inline-block;
  white-space: nowrap;
}

.pain-word-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  overflow: hidden;
  contain: paint;
  pointer-events: none;
}

.pain-word-overlay[hidden] {
  display: none;
}

.pain-word-overlay-token {
  position: absolute;
  display: block;
  margin: 0;
  transform-origin: top left;
  white-space: nowrap;
  will-change: transform;
}

.pain-grid.is-pain-flipping [data-pain-title],
.pain-grid.is-pain-flipping [data-pain-body].is-pain-body-flipping {
  opacity: 0;
}

.pain-grid.pain-grid-measure {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  z-index: -1 !important;
  margin: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.pain-grid-measure,
.pain-grid-measure * {
  animation: none !important;
  transition: none !important;
}

.pain-card-toggle:focus-visible {
  outline: 3px solid rgba(0, 113, 227, 0.32);
  outline-offset: 0.35rem;
}

.pain-card-panel {
  display: grid;
  min-height: 0;
  flex: 0 1 auto;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    flex-grow 430ms var(--ease-ios),
    grid-template-rows 430ms var(--ease-ios),
    opacity 220ms ease;
}

.pain-card-panel-inner {
  min-height: 0;
  overflow: hidden;
}

.pain-card-panel-content {
  display: grid;
  align-content: start;
  padding-top: clamp(1.35rem, 2.2vw, 2rem);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 240ms ease,
    transform 430ms var(--ease-ios);
  transition-delay: 0ms;
}

.pain-card.is-open .pain-card-heading {
  flex-grow: 0;
  transform: translateY(-8px);
}

.pain-card.is-open .pain-card-panel {
  flex-grow: 1;
  grid-template-rows: 1fr;
  opacity: 1;
}

.pain-card.is-open .pain-card-panel-content {
  opacity: 1;
  transform: translateY(0);
}

.pain-card-panel p {
  width: 100%;
  margin: 0;
  color: #515154;
  font-size: clamp(1.28rem, 1.75vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.42;
}

@media (max-width: 39.999rem) {
  .hero-wordmark {
    top: clamp(5.5rem, 24vw, 6.5rem);
    font-size: clamp(3.7rem, 19vw, 5rem);
  }

  .hero-content {
    width: calc(100% - 1.5rem);
    padding-block: clamp(8.5rem, 35vw, 9.5rem) clamp(4rem, 14vw, 5rem);
  }

  .hero h1 {
    width: 100%;
    max-width: none;
    font-size: clamp(1.85rem, 9.4vw, 2.55rem);
    line-height: 0.94;
  }

  .hero h1 span {
    white-space: nowrap;
  }

  .problems .statement h2 {
    font-size: clamp(2rem, 9vw, 2.35rem);
  }

  .pain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    align-items: stretch;
  }

  .pain-card {
    min-height: clamp(9.25rem, 46vw, 11.75rem);
    padding: clamp(0.82rem, 3.7vw, 1.08rem);
    border-radius: clamp(1.1rem, 5vw, 1.35rem);
  }

  .pain-card-heading {
    font-size: clamp(1.08rem, 5.55vw, 1.4rem);
    line-height: 1;
  }

  .pain-card-panel-content {
    padding-top: 0.8rem;
  }

  .pain-card-panel p {
    font-size: clamp(0.82rem, 3.75vw, 1rem);
    line-height: 1.35;
  }
}

.card-caption {
  width: fit-content;
  margin-top: 1.2rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 600;
}

/* Services */
.services {
  color: #f5f5f7;
  background: var(--dark);
}

.statement-dark h2 span {
  color: var(--muted-dark);
}

.statement-dark > p {
  color: #a1a1a6;
}

.services .statement h2 {
  font-size: clamp(2.4rem, 4.8vw, 4.25rem);
}

@media (max-width: 39.999rem) {
  .services .statement h2 {
    font-size: clamp(1.9rem, 8.3vw, 2.3rem);
  }
}

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

.service-row {
  display: grid;
  gap: 1.25rem;
  padding-block: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  transition:
    background 300ms ease,
    padding 450ms var(--ease);
}

.service-row:hover {
  background: #1a1a1d;
}

.service-number {
  color: #6f6f73;
  font-size: 0.7rem;
  font-weight: 600;
}

.service-symbol {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #f5f5f7;
  font-size: 0.8rem;
  font-weight: 600;
  transition:
    color 300ms ease,
    border-color 300ms ease,
    transform 450ms var(--ease);
}

.service-row:hover .service-symbol {
  color: #74b9ff;
  border-color: rgba(116, 185, 255, 0.55);
  transform: rotate(-5deg);
}

.service-main h3 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
}

.service-main p {
  max-width: 35rem;
  margin-top: 0.75rem;
  color: #a1a1a6;
  font-size: 0.92rem;
  line-height: 1.5;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-content: flex-start;
}

.service-tags li {
  padding: 0.4rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--pill);
  color: #c7c7cc;
  font-size: 0.66rem;
  font-weight: 550;
}

/* Work */
.work {
  background: var(--bg);
}

.work-grid {
  position: relative;
  display: grid;
  gap: 1rem;
}

.project {
  position: relative;
  display: flex;
  min-height: 30rem;
  flex-direction: column;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  transition:
    box-shadow 500ms var(--ease),
    transform 500ms var(--ease);
}

.project:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.project-blue {
  background: #dceeff;
}

.project-pet {
  background: #f4e7ec;
}

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

.project-title-overlay {
  position: absolute;
  inset: 0;
  z-index: 8;
  overflow: hidden;
  contain: paint;
  pointer-events: none;
}

.project-title-overlay[hidden] {
  display: none;
}

.project-title-overlay-token {
  position: absolute;
  display: block;
  margin: 0;
  transform-origin: top left;
  white-space: nowrap;
  will-change: transform;
}

.work-grid.is-project-title-flipping [data-project-motion-title] {
  opacity: 0;
}

.work-grid-measure {
  position: fixed !important;
  z-index: -1 !important;
  top: 0 !important;
  left: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.work-grid-measure,
.work-grid-measure * {
  transition: none !important;
  animation: none !important;
}

.work-grid-measure .project-measure-hover {
  transform: translateY(-4px) !important;
}

.project-roof {
  color: #f5f5f7;
  background: #18181a;
}

.project-green {
  background: #deeee4;
}

.project-ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(29, 29, 31, 0.075);
  font-size: clamp(6rem, 16vw, 12rem);
  font-weight: 720;
  letter-spacing: -0.09em;
  line-height: 1;
  transform: translate(-50%, -55%);
  transition: transform 700ms var(--ease);
  user-select: none;
  white-space: nowrap;
}

.project-roof .project-ghost {
  color: rgba(255, 255, 255, 0.055);
}

.project:hover .project-ghost {
  transform: translate(-50%, -55%) scale(1.035);
}

.project-copy {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.project-copy > p {
  margin-bottom: 1.15rem;
  font-size: clamp(2.35rem, 4.6vw, 4rem);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.project-copy h3 {
  max-width: 38rem;
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  line-height: 1.08;
}

.project-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.25rem;
}

.project-copy li {
  padding: 0.38rem 0.65rem;
  border-radius: var(--pill);
  color: rgba(29, 29, 31, 0.7);
  background: rgba(255, 255, 255, 0.44);
  font-size: 0.63rem;
  font-weight: 570;
}

.project-roof .project-copy li {
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.09);
}

.project-video-card {
  --project-media-bg: #c9e3f8;
  --project-preview-expand: 0rem;
  --project-preview-height: clamp(16rem, 20vw, 18rem);
  --project-preview-shift: 0rem;
}

.project-clearflow {
  --project-preview-height: clamp(18rem, 25vw, 22rem);
}

.project-movewell {
  --project-media-bg: #d3e7da;
  --project-preview-height: clamp(18rem, 25vw, 22rem);
}

.project-pet {
  --project-media-bg: #eadbe2;
  --project-preview-height: 14rem;
}

.project-roof {
  --project-media-bg: #111113;
  --project-preview-height: 14rem;
}

.project-video-card .project-copy {
  transition: transform 520ms var(--ease-ios);
}

.project-video-frame {
  position: relative;
  z-index: 2;
  aspect-ratio: 5 / 3;
  margin: 1.5rem -1.5rem -1.5rem;
  overflow: hidden;
  background: var(--project-media-bg);
}

.project-video-frame video {
  position: absolute;
  top: 1.9rem;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: calc(100% - 1.9rem);
  object-fit: cover;
  object-position: 50% 0;
  background: var(--project-media-bg);
  opacity: 1;
  pointer-events: none;
  transition: opacity 220ms var(--ease);
}

.project-video-frame video::-webkit-media-controls {
  display: none !important;
}

.project-video-frame video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.project-window-bar {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 1.9rem;
  align-items: center;
  padding-inline: 0.72rem;
  border-bottom: 1px solid rgba(29, 29, 31, 0.1);
  background: rgba(246, 246, 248, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  pointer-events: none;
}

.project-window-controls {
  display: flex;
  gap: 0.38rem;
}

.project-window-controls > span {
  width: 0.58rem;
  height: 0.58rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
}

.project-window-controls > span:nth-child(1) {
  background: #ff5f57;
}

.project-window-controls > span:nth-child(2) {
  background: #febc2e;
}

.project-window-controls > span:nth-child(3) {
  background: #28c840;
}

.project-video-card.is-video-ready .project-video-frame video {
  opacity: 1;
}

.project-video-card.is-video-error .project-video-frame {
  display: none;
}

/* Pricing */
.pricing {
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  gap: 1rem;
}

.price-card {
  display: flex;
  min-width: 0;
  min-height: 35rem;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition:
    box-shadow 500ms var(--ease),
    transform 500ms var(--ease);
}

.price-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.price-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink-strong);
  font-size: 0.95rem;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.price-card h3 {
  margin-top: 2.5rem;
  font-size: 1.8rem;
  line-height: 1.08;
}

.price {
  margin-top: 2rem;
}

.price strong {
  display: block;
  font-size: clamp(2.6rem, 7vw, 3.5rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 1;
}

.price > span {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.price-note {
  margin-top: 0.75rem;
  color: #8a5a00;
  font-size: 0.63rem;
  font-weight: 580;
}

.price-includes-label {
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line-soft);
  color: var(--ink-strong);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-card > ul.price-includes {
  display: grid;
  gap: 0.55rem;
  margin-block: 0.75rem 0;
}

.price-card > ul.price-includes li {
  position: relative;
  padding-left: 1.25rem;
  color: #424245;
  font-size: 0.84rem;
  line-height: 1.35;
}

.price-card > ul.price-includes li::before {
  position: absolute;
  left: 0;
  color: var(--blue);
  content: "✓";
  font-size: 0.7rem;
  font-weight: 700;
}

.price-maintenance {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.4;
}

.price-link {
  display: flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: auto;
  padding: 0.75rem 1rem;
  border-radius: var(--pill);
  color: #fff;
  background: var(--ink-strong);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.price-link:hover {
  color: #fff;
  background: var(--blue);
}

.pricing-disclaimer {
  max-width: 45rem;
  margin: 1.5rem auto 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
  text-align: center;
}

/* Testimonials */
.testimonials {
  background: var(--surface);
}

.testimonial-statement {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.testimonial-grid {
  display: grid;
  gap: 1rem;
}

.testimonial-placeholder {
  display: flex;
  min-height: 17rem;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--bg);
}

.testimonial-placeholder > span {
  width: fit-content;
  padding: 0.38rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 620;
  text-transform: uppercase;
}

.testimonial-placeholder p {
  max-width: 30rem;
  margin-top: auto;
  font-size: clamp(1.45rem, 3.5vw, 2.2rem);
  font-weight: 570;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.testimonial-placeholder small {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.68rem;
}

/* Contact */
.contact {
  position: relative;
  padding-bottom: clamp(2.5rem, 7vw, 5rem);
  overflow: hidden;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  gap: 3rem;
  padding: clamp(1.5rem, 5vw, 4.5rem);
  border-radius: clamp(1.75rem, 5vw, 3rem);
  color: #f5f5f7;
  background: var(--dark);
}

.section-index-light {
  color: #a1a1a6;
}

.contact-copy h2 {
  max-width: 38rem;
  margin-top: 2rem;
  font-size: clamp(3rem, 7.2vw, 5.5rem);
}

.contact-copy h2 span {
  display: block;
  color: #8e8e93;
}

.contact-copy > p:not(.section-index) {
  max-width: 34rem;
  margin-top: 1.75rem;
  color: #a1a1a6;
  font-size: 1rem;
  line-height: 1.58;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-actions a {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--pill);
  color: #f5f5f7;
  background: transparent;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 560;
  text-align: center;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.contact-actions a:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.07);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.whatsapp-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex: none;
}

.form-card {
  padding: clamp(1.25rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: var(--surface);
}

.form-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line-soft);
}

.form-heading > div > span,
.form-heading > span {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 580;
}

.form-heading h3 {
  margin-top: 0.25rem;
  font-size: 1.35rem;
  line-height: 1.1;
}

.form-heading > span {
  text-align: right;
}

.field-row {
  display: grid;
  gap: 0.9rem;
}

.form-field {
  display: grid;
  gap: 0.42rem;
  margin-bottom: 0.9rem;
}

.form-field label {
  color: #424245;
  font-size: 0.72rem;
  font-weight: 580;
}

.form-field label span {
  color: var(--muted);
  font-weight: 450;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 0.9rem;
  color: var(--ink-strong);
  background: var(--bg);
  font-size: 0.9rem;
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    background 200ms ease;
}

.form-field input {
  min-height: 3.35rem;
  padding: 0.75rem 0.9rem;
}

.form-field textarea {
  min-height: 8.5rem;
  padding: 0.85rem 0.9rem;
  line-height: 1.5;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #86868b;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.16);
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
  padding-inline: 1.15rem;
  text-align: center;
}

.form-note {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.63rem;
  line-height: 1.45;
  text-align: center;
}

.form-honeypot {
  display: none;
}

.form-status {
  display: none;
  margin-top: 0.9rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid #f0d28e;
  border-radius: 0.85rem;
  color: #664500;
  background: #fff9e8;
  font-size: 0.72rem;
  font-weight: 560;
  line-height: 1.45;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-sending {
  border-color: #c9d9f3;
  color: #164a88;
  background: #eef5ff;
}

.form-status.is-success {
  border-color: #b9ddc5;
  color: #14532d;
  background: #edf9f1;
}

.form-status.is-error {
  border-color: #efc1c1;
  color: #8a1c1c;
  background: #fff1f1;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

/* Footer */
.site-footer {
  background: var(--bg);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-block: 3.5rem;
  border-top: 1px solid var(--line);
}

.footer-brand {
  width: fit-content;
}

.footer-grid > div:first-child > p {
  max-width: 24rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-grid nav,
.footer-contact {
  display: grid;
  justify-items: start;
  gap: 0.55rem;
  align-content: start;
}

.footer-nav {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(1.25rem, 3vw, 2.75rem);
  row-gap: 1rem;
}

.footer-nav-group {
  display: grid;
  justify-items: start;
  gap: 0.55rem;
  align-content: start;
}

.footer-nav-legal {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
}

.footer-grid nav a,
.footer-contact > a {
  color: #424245;
  font-size: 0.76rem;
}

.footer-grid nav a:hover,
.footer-contact > a:hover {
  color: var(--blue);
}

.footer-grid nav a[aria-current="page"] {
  color: var(--ink-strong);
  font-weight: 700;
}

.footer-contact > span {
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-block: 1.25rem 2rem;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.65rem;
}

/* Motion */
[data-hero-item] {
  animation: hero-enter 800ms var(--ease) both;
}

[data-hero-item]:nth-child(2) {
  animation-delay: 80ms;
}

[data-hero-item]:nth-child(3) {
  animation-delay: 160ms;
}

[data-hero-item]:nth-child(4) {
  animation-delay: 240ms;
}

[data-reveal].reveal-pending {
  opacity: 0;
  translate: 0 1rem;
}

[data-reveal].is-visible {
  animation: reveal-enter 560ms var(--ease) var(--reveal-delay, 0ms) both;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reveal-enter {
  from {
    opacity: 0;
    translate: 0 1rem;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@media (min-width: 40rem) {
  .shell {
    width: min(calc(100% - 4rem), var(--shell));
  }

  .hero-actions {
    flex-direction: row;
  }

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

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

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

  .footer-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(16rem, 0.9fr) minmax(10rem, 0.75fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
  }
}

@media (min-width: 51.25rem) {
  .no-js .nav-shell {
    height: 100%;
    min-height: 0;
    flex-wrap: nowrap;
    padding-block: 0;
  }

  .no-js .primary-nav {
    flex-basis: auto;
  }

  .nav-toggle {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .primary-nav {
    position: static;
    order: 2;
    display: flex;
    max-height: none;
    align-items: center;
    gap: 0.05rem;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
    margin-left: auto;
  }

  .primary-nav a {
    min-height: 2.25rem;
    padding-inline: 0.65rem;
    font-size: 0.74rem;
  }

  .nav-industries > summary {
    min-height: 2.25rem;
    padding: 0.45rem 0.65rem;
    font-size: 0.74rem;
  }

  .nav-industries-menu {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 50%;
    z-index: 60;
    min-width: 11.5rem;
    padding: 0.45rem;
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.12);
    transform: translateX(-50%);
  }

  .primary-nav .nav-industries-menu a {
    min-height: 2.35rem;
    padding: 0.5rem 0.65rem;
    font-size: 0.76rem;
  }

  .primary-nav .nav-cta {
    min-height: 2.35rem;
    margin-left: 0.35rem;
    padding-inline: 0.9rem;
  }

  body.nav-open {
    overflow: auto;
  }
}

@media (min-width: 60rem) {
  .statement {
    grid-template-columns: minmax(0, 1.45fr) minmax(19rem, 0.55fr);
    gap: 4rem;
    align-items: end;
  }

  .statement > p {
    justify-self: end;
  }

  .service-row {
    grid-template-columns: 2rem 3.25rem minmax(0, 1.45fr) minmax(16rem, 0.75fr);
    align-items: start;
    gap: 1.5rem;
    padding-inline: 0.5rem;
  }

  .service-row:hover {
    padding-inline: 1.25rem;
  }

  .service-tags {
    justify-content: flex-end;
  }

  .work > .shell {
    width: min(calc(100% - 4rem), 84rem);
  }

  .work-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .project {
    grid-column: span 4;
    min-height: 34rem;
    padding: 2rem;
  }

  .project-large {
    grid-column: span 8;
  }

  .project-large .project-copy h3 {
    font-size: clamp(1.75rem, 2.8vw, 2.65rem);
  }

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .price-card {
    padding: 2rem;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(25rem, 0.82fr);
    gap: clamp(3rem, 7vw, 6rem);
    align-items: center;
  }
}

@media (min-width: 74rem) {
  .pain-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

/* Rebuilt content system */
.hero h1 .hero-title-primary,
.statement h2 > span:first-child,
.contact-copy h2 > span:first-child {
  color: inherit;
}

.statement h2 > span,
.contact-copy h2 > span {
  display: block;
}

.statement-solo,
.work-statement {
  grid-template-columns: minmax(0, 1fr);
}

.statement-solo h2 {
  max-width: 68rem;
}

@media (min-width: 74rem) and (hover: hover) and (pointer: fine) {
  .pain-grid {
    display: flex;
    align-items: stretch;
  }

  .pain-card {
    width: 0;
    height: 22rem;
    min-height: 22rem;
    flex: 1 1 0;
    transition:
      flex-grow 430ms var(--ease-ios),
      border-color 300ms ease,
      background 300ms ease,
      transform 430ms var(--ease-ios),
      box-shadow 500ms var(--ease);
  }

  .pain-grid:is(.has-hover-preview, :focus-within, .has-open-card) .pain-card {
    flex-grow: 0.8;
  }

  .pain-grid .pain-card:is(.is-hovered, .is-open) {
    flex-grow: 1.6;
  }

  .pain-card.is-hovered {
    border-color: #d3d3d8;
    background: #fafafa;
    box-shadow: var(--shadow);
    transform: translateY(-4px);
  }

  .pain-card.is-hovered .pain-card-heading {
    flex-grow: 0;
    transform: translateY(-8px);
  }

  .pain-card.is-hovered .pain-card-panel {
    flex-grow: 1;
    grid-template-rows: 1fr;
    opacity: 1;
  }

  .pain-card.is-hovered .pain-card-panel-content {
    opacity: 1;
    transform: translateY(0);
  }

}

.services {
  position: relative;
  overflow: hidden;
}

.services-watermark {
  position: absolute;
  top: 5.5rem;
  right: -0.06em;
  color: rgba(255, 255, 255, 0.025);
  font-size: clamp(7rem, 19vw, 18rem);
  font-weight: 750;
  letter-spacing: -0.09em;
  line-height: 0.75;
  pointer-events: none;
  user-select: none;
}

.services .shell {
  position: relative;
  z-index: 1;
}

.service-grid {
  display: grid;
  align-items: start;
  gap: 1rem;
}

.service-card {
  --service-card-padding: clamp(1.5rem, 4vw, 2.6rem);
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: #1a1a1d;
  transition:
    border-color 300ms ease,
    background-color 300ms ease,
    transform 500ms var(--ease);
}

.service-card:not(.is-open):hover {
  border-color: rgba(116, 185, 255, 0.46);
  background: #1d1d20;
  transform: translateY(-3px);
}

.service-card.is-open {
  border-color: rgba(116, 185, 255, 0.46);
  background: #1d1d20;
}

.service-card:focus-within {
  border-color: rgba(116, 185, 255, 0.72);
}

.service-accordion-heading {
  position: relative;
  z-index: 1;
  margin: 0;
}

.service-accordion-trigger {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 24rem;
  flex-direction: column;
  padding: var(--service-card-padding);
  border: 0;
  color: #f5f5f7;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.service-accordion-trigger:focus-visible {
  outline: 2px solid #74b9ff;
  outline-offset: -6px;
}

.service-watermark {
  position: absolute;
  top: 0.1em;
  right: -0.08em;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(5.5rem, 15vw, 10.5rem);
  font-weight: 720;
  letter-spacing: -0.08em;
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
}

.service-click-hint {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--pill);
  color: #171719;
  background: rgba(245, 245, 247, 0.96);
  font-size: 0.76rem;
  font-weight: 620;
  letter-spacing: 0.01em;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.9);
  translate: var(--service-hint-x, 8rem) var(--service-hint-y, 3rem);
  visibility: hidden;
  transition:
    opacity 180ms ease,
    transform 320ms var(--ease-ios),
    visibility 0s linear;
}

.service-click-hint > span {
  transform: translateY(0.08rem);
}

.service-card.is-hint-active:not(.is-hint-dismissed) .service-click-hint,
.service-card:focus-within:not(.is-hint-dismissed) .service-click-hint {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  visibility: visible;
}

.service-card.is-hint-dismissed .service-click-hint {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.78);
  visibility: hidden;
  transition-delay: 0s, 0s, 180ms;
}

.service-card-title {
  display: block;
  max-width: 28rem;
  margin-top: auto;
  font-size: clamp(2.35rem, 6vw, 4.3rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.service-accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 430ms var(--ease-ios);
}

.service-card.is-open .service-accordion-panel {
  grid-template-rows: 1fr;
}

.service-accordion-panel-inner {
  min-height: 0;
  overflow: hidden;
}

.service-process-steps {
  --service-step-marker-width: 3.7rem;
  display: grid;
  gap: 0.1rem;
  margin: 0 var(--service-card-padding);
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  counter-reset: service-step;
  list-style: none;
}

.service-process-steps li {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: 4.4rem minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
  padding: 0.95rem 0 1.1rem;
  counter-increment: service-step;
}

.service-process-steps li::before {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  width: var(--service-step-marker-width);
  min-height: 1.85rem;
  place-items: center;
  padding: 0.35rem 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--pill);
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.045);
  content: "Step " counter(service-step);
  font-size: 0.67rem;
  font-weight: 680;
  letter-spacing: 0.035em;
  line-height: 1;
  white-space: nowrap;
}

.service-process-steps li:last-child::before {
  border-color: rgba(116, 185, 255, 0.4);
  color: #f5f5f7;
  background: rgba(116, 185, 255, 0.1);
}

html[lang="zh-CN"] .service-process-steps li::before {
  content: "步骤 " counter(service-step);
}

.service-step-copy {
  display: grid;
  min-width: 0;
  grid-column: 2;
  grid-row: 1;
  gap: 0.25rem;
}

.service-step-heading {
  display: block;
}

.service-step-heading strong {
  min-width: 0;
  color: #f5f5f7;
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.service-step-copy p {
  margin: 0;
  color: #a1a1a6;
  font-size: 13px;
  line-height: 1.45;
}

.service-whatsapp {
  margin: 0 var(--service-card-padding) var(--service-card-padding);
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-whatsapp-link {
  display: flex;
  width: 100%;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--pill);
  color: #f5f5f7;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.78rem;
  font-weight: 650;
  text-align: center;
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    transform 220ms var(--ease);
}

.service-whatsapp-link:hover {
  border-color: rgba(37, 211, 102, 0.55);
  background: rgba(37, 211, 102, 0.1);
  transform: translateY(-2px);
}

.service-whatsapp-link:focus-visible {
  outline: 2px solid #74b9ff;
  outline-offset: 3px;
}

.service-whatsapp-link .whatsapp-icon {
  flex: 0 0 auto;
}

@media (max-width: 39.999rem) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 0.75rem;
  }

  .service-card {
    --service-card-padding: clamp(0.9rem, 4vw, 1.1rem);
    border-radius: clamp(1.1rem, 5vw, 1.35rem);
  }

  .service-accordion-trigger {
    min-height: clamp(10.5rem, 50vw, 12.5rem);
    padding-bottom: clamp(1.4rem, 6.5vw, 1.9rem);
  }

  .service-card-title {
    max-width: 100%;
    margin-bottom: clamp(0.5rem, 3vw, 0.85rem);
    font-size: clamp(1.18rem, 5.35vw, 1.48rem);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .service-watermark {
    font-size: clamp(3.2rem, 19vw, 5rem);
  }

  .service-process-steps {
    --service-step-marker-width: 3.1rem;
  }

  .service-process-steps li {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.55rem;
    padding: 0.8rem 0 0.9rem;
  }

  .service-process-steps li::before {
    grid-column: 1;
    grid-row: 1;
    width: fit-content;
    min-width: var(--service-step-marker-width);
    min-height: 1.6rem;
    padding: 0.28rem 0.4rem;
    font-size: 0.58rem;
  }

  .service-step-copy {
    grid-column: 1;
    grid-row: 2;
    gap: 0.22rem;
  }

  .service-step-heading strong {
    font-size: 0.8rem;
    line-height: 1.25;
  }

  .service-step-copy p {
    font-size: 0.69rem;
    line-height: 1.42;
  }

  .service-whatsapp-link {
    min-height: 3.4rem;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.55rem 0.4rem;
    font-size: 0.62rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .service-whatsapp-link .whatsapp-icon {
    width: 1rem;
    height: 1rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .service-card.is-open .service-process-steps li {
    animation: service-step-enter 420ms var(--ease-ios) both;
  }

  .service-card.is-open .service-process-steps li:nth-child(1) {
    animation-delay: 150ms;
  }

  .service-card.is-open .service-process-steps li:nth-child(2) {
    animation-delay: 210ms;
  }

  .service-card.is-open .service-process-steps li:nth-child(3) {
    animation-delay: 270ms;
  }

  .service-card.is-open .service-process-steps li:nth-child(4) {
    animation-delay: 330ms;
  }

  .service-card.is-open .service-process-steps li:nth-child(5) {
    animation-delay: 390ms;
  }

  @keyframes service-step-enter {
    from {
      opacity: 0;
      transform: translateY(6px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

.work-statement h2 {
  max-width: 70rem;
}

.pricing-statement > p {
  max-width: 31rem;
}

.price-card {
  min-height: 27rem;
}

.price-card:hover {
  transform: translateY(-4px);
}

.price {
  margin-top: clamp(2.25rem, 5vw, 3.5rem);
}

.price strong {
  font-size: clamp(3.4rem, 8vw, 5rem);
  font-weight: 650;
}

.price-custom > span {
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  font-weight: 620;
}

.price-custom strong {
  font-size: clamp(2.8rem, 5vw, 4.1rem);
}

.price-description {
  max-width: 25rem;
  margin-top: 1.25rem;
  color: #424245;
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  font-weight: 520;
  line-height: 1.5;
}

.industry-pricing-note {
  max-width: 56rem;
  margin: 1.25rem auto 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
  text-align: center;
}

.contact-copy h2 > span:first-child {
  color: #f5f5f7;
}

.form-status {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 0;
  padding: 0 0.9rem;
  overflow: hidden;
  border-width: 0;
  opacity: 0;
  transition:
    grid-template-rows 240ms var(--ease),
    margin-top 240ms var(--ease),
    padding 240ms var(--ease),
    border-width 160ms ease,
    opacity 160ms ease;
}

.form-status.is-visible {
  display: grid;
  grid-template-rows: 1fr;
  margin-top: 0.9rem;
  padding: 0.75rem 0.9rem;
  border-width: 1px;
  opacity: 1;
}

.form-status > span {
  min-height: 0;
  overflow: hidden;
}

/* Fixed trust badge and responsive details drawer */
.trust-trigger {
  position: fixed;
  right: 1.25rem;
  top: 50%;
  bottom: auto;
  z-index: 70;
  display: inline-flex;
  min-width: 4rem;
  min-height: 12.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 1rem 0.7rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--pill);
  color: #fff;
  background: #673de6;
  box-shadow: 0 14px 38px rgba(62, 29, 164, 0.34);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    opacity 160ms ease,
    background-color 180ms ease,
    transform 240ms var(--ease),
    box-shadow 240ms var(--ease);
}

.trust-trigger:hover {
  background: #5d35d8;
  box-shadow: 0 18px 48px rgba(62, 29, 164, 0.46);
  transform: translate(-2px, -50%);
}

.trust-trigger-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 0.95rem;
  font-weight: 760;
  letter-spacing: -0.015em;
  line-height: 1;
}

html[lang="zh"] .trust-trigger-label {
  text-orientation: upright;
  transform: none;
  letter-spacing: 0.12em;
}

.trust-trigger-icon {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink-strong);
  font-size: 1rem;
  font-weight: 450;
  transition: transform 240ms var(--ease);
}

.trust-trigger[aria-expanded="true"] .trust-trigger-icon {
  transform: rotate(45deg);
}

body.trust-open .trust-trigger {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

body.trust-open .trust-dialog {
  inset: auto 1.25rem 1.25rem auto;
}

.no-js .trust-trigger {
  display: none;
}

.trust-dialog {
  position: fixed;
  inset: auto 1.25rem 5.3rem auto;
  z-index: 80;
  width: min(36rem, calc(100% - 2.5rem));
  max-height: min(45rem, calc(100dvh - 7rem));
  margin: 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  overflow-y: auto;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.2);
}

.trust-dialog[open] {
  animation: trust-dialog-enter 240ms var(--ease) both;
}

.trust-dialog::backdrop {
  background: rgba(5, 5, 6, 0.22);
  backdrop-filter: blur(3px);
}

.trust-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.25rem;
}

.trust-dialog-head h2 {
  margin-top: 0;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  line-height: 0.98;
}

.trust-close {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-strong);
  background: var(--bg);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.trust-close:hover {
  color: #fff;
  border-color: var(--ink-strong);
  background: var(--ink-strong);
}

.trust-points {
  display: grid;
  margin-top: 0.25rem;
}

.trust-points article {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.35rem 0.8rem;
  padding-block: 1.15rem;
}

.trust-points article > span {
  grid-row: span 2;
  color: #a1a1a6;
  font-size: 0.65rem;
  font-weight: 650;
}

.trust-points h3 {
  font-size: 1.05rem;
  line-height: 1.2;
}

.trust-points p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.52;
}

@keyframes trust-dialog-enter {
  from {
    opacity: 0;
    transform: translateY(0.6rem) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 60rem) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .service-accordion-trigger {
    min-height: 28rem;
  }
}

@media (max-width: 47.999rem) {
  body {
    padding-bottom: calc(4.65rem + env(safe-area-inset-bottom));
  }

  .trust-trigger {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    min-width: 0;
    min-height: calc(4rem + env(safe-area-inset-bottom));
    flex-direction: row;
    justify-content: center;
    padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: 0 -10px 34px rgba(0, 0, 0, 0.1);
    transform: none;
  }

  .trust-trigger-label {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    transform: none;
    font-size: 0.9rem;
    letter-spacing: -0.015em;
  }

  .trust-trigger:hover {
    transform: none;
  }

  body.form-active .trust-trigger {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    visibility: hidden;
  }

  .trust-dialog {
    inset: auto 0 calc(4rem + env(safe-area-inset-bottom)) 0;
    width: 100%;
    max-width: none;
    max-height: min(78dvh, 44rem);
    padding: 1.25rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom));
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 1.75rem 1.75rem 0 0;
  }

  body.trust-open .trust-dialog {
    inset: auto 0 0 0;
  }

  .trust-dialog::backdrop {
    background: rgba(5, 5, 6, 0.42);
  }
}

@media (min-width: 60rem) {
  .project-video-frame {
    margin-right: -2rem;
    margin-bottom: -2rem;
    margin-left: -2rem;
  }
}

@media (min-width: 60rem) and (hover: hover) and (pointer: fine) {
  .project-video-card {
    z-index: 1;
    width: 100%;
    margin-left: 0;
    transition:
      width 520ms var(--ease-ios),
      margin-left 520ms var(--ease-ios),
      box-shadow 500ms var(--ease),
      transform 520ms var(--ease-ios);
  }

  .project-video-frame {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: var(--project-preview-height);
    aspect-ratio: auto;
    margin: 0;
    opacity: 0;
    transform: translate3d(0, 102%, 0);
    transition:
      transform 520ms var(--ease-ios),
      opacity 180ms var(--ease);
  }

  .project-video-frame video {
    opacity: 0;
  }

  .project-video-card.is-video-active .project-copy {
    transform: translate3d(0, calc(1rem - var(--project-preview-height)), 0);
  }

  .project-video-card.is-video-active .project-video-frame {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .project-video-card.is-video-active {
    z-index: 4;
    width: calc(100% + var(--project-preview-expand));
    margin-left: var(--project-preview-shift);
  }
}

@media (min-width: 74rem) and (hover: hover) and (pointer: fine) {
  .project-clearflow {
    --project-preview-expand: 3rem;
    --project-preview-shift: -1.5rem;
  }

  .project-movewell {
    --project-preview-expand: 3rem;
    --project-preview-shift: -1.5rem;
  }

  .project-pet {
    --project-preview-expand: clamp(22rem, 34vw, 28rem);
    --project-preview-height: clamp(18rem, 25vw, 22rem);
    --project-preview-shift: calc(0rem - var(--project-preview-expand));
  }

  .project-roof {
    --project-preview-expand: clamp(22rem, 34vw, 28rem);
    --project-preview-height: clamp(18rem, 25vw, 22rem);
    --project-preview-shift: 0rem;
  }
}

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

  .hero-wordmark,
  .hero-content {
    translate: none !important;
  }

  .project-video-card .project-video-frame {
    position: relative;
    inset: auto;
    height: auto;
    aspect-ratio: 5 / 3;
    margin-top: 1.5rem;
    opacity: 1;
    transform: none;
  }

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

  [data-reveal].reveal-pending,
  [data-reveal].is-visible {
    animation: none !important;
    opacity: 1;
    translate: none;
  }

  .pain-grid .pain-card,
  .pain-grid:is(.has-hover-preview, :focus-within, .has-open-card) .pain-card,
  .pain-grid .pain-card:is(.is-hovered, .is-open) {
    flex-grow: 1;
  }

  .pain-card.is-hovered {
    transform: none;
  }

  .service-accordion-panel {
    transition-duration: 430ms !important;
    transition-timing-function: var(--ease-ios) !important;
  }
}

@media (max-width: 47.999rem) {
  .work-grid {
    gap: 0.85rem;
  }

  .work-grid > .project.project-video-card {
    min-height: 0;
    height: auto;
    padding: 1rem;
  }

  .work-grid > .project-video-card .project-copy {
    margin-top: 0;
  }

  .work-grid > .project-video-card .project-copy > p {
    margin-bottom: 0.65rem;
    font-size: clamp(1.8rem, 8.5vw, 2.35rem);
    line-height: 0.96;
    overflow-wrap: anywhere;
  }

  .work-grid > .project-video-card .project-copy h3 {
    max-width: none;
    font-size: clamp(1rem, 4.6vw, 1.25rem);
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .work-grid > .project-video-card .project-video-frame {
    aspect-ratio: 16 / 9;
    margin: 1rem -1rem -1rem;
  }

  .work-grid > .project-video-card .project-ghost {
    top: clamp(4rem, 18vw, 5rem);
    font-size: clamp(4.2rem, 22vw, 6rem);
    transform: translate(-50%, -50%);
  }

  .work-grid > .project-video-card:hover .project-ghost {
    transform: translate(-50%, -50%);
  }

  .pricing-grid {
    --pricing-card-width: calc(50vw - 0.75rem);
    display: flex;
    width: 100vw;
    gap: 0.75rem;
    margin-left: calc(50% - 50vw);
    padding-block: 0.3rem 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-grid::-webkit-scrollbar {
    display: none;
  }

  .pricing-grid::before,
  .pricing-grid::after {
    flex: 0 0 calc(25vw - 0.375rem);
    content: "";
  }

  .pricing-grid .price-card {
    flex: 0 0 var(--pricing-card-width);
    min-height: 23rem;
    padding: 0.9rem 0.75rem;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .pricing-grid .price-card:hover {
    box-shadow: none;
    transform: none;
  }

  .pricing-grid .price-top {
    font-size: 0.82rem;
  }

  .pricing-grid .price {
    margin-top: clamp(1.6rem, 7vw, 2.2rem);
  }

  .pricing-grid .price strong {
    font-size: clamp(2rem, 10.5vw, 2.7rem);
  }

  .pricing-grid .price-custom strong {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
    line-height: 0.95;
  }

  .pricing-grid .price-description {
    margin-top: 1rem;
    font-size: clamp(0.73rem, 3vw, 0.86rem);
    line-height: 1.4;
    overflow-wrap: anywhere;
  }

  .pricing-grid .price-includes-label {
    margin-top: 0.95rem;
    padding-top: 0.8rem;
    font-size: 0.6rem;
  }

  .pricing-grid .price-includes {
    gap: 0.4rem;
    margin-block: 0.6rem 0;
  }

  .pricing-grid .price-includes li {
    padding-left: 0.95rem;
    font-size: clamp(0.65rem, 2.55vw, 0.74rem);
    line-height: 1.3;
    overflow-wrap: anywhere;
  }

  .pricing-grid .price-includes li::before {
    font-size: 0.58rem;
  }

  .pricing-grid .price-maintenance {
    margin-top: 0.65rem;
    font-size: clamp(0.61rem, 2.35vw, 0.69rem);
    line-height: 1.35;
  }

  .pricing-grid .price-link {
    min-height: 2.8rem;
    padding: 0.65rem 0.4rem;
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .pricing-grid:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: -2px;
  }

  .site-footer {
    padding-top: 0.75rem;
    background: var(--bg);
  }

  .footer-grid {
    position: relative;
    isolation: isolate;
    display: grid;
    width: min(calc(100% - 2.5rem), 40rem);
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    overflow: hidden;
    padding: 1.15rem;
    border: 1px solid var(--line-soft);
    border-radius: 1.75rem;
    background: var(--surface);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.05);
  }

  .footer-grid::before {
    position: absolute;
    top: 0.35rem;
    right: 0;
    z-index: -1;
    color: #f1f1f3;
    content: "LONGWAN";
    font-size: clamp(3.4rem, 18vw, 5.25rem);
    font-weight: 800;
    letter-spacing: -0.085em;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
  }

  .footer-intro,
  .footer-nav,
  .footer-contact {
    position: relative;
    z-index: 1;
  }

  .footer-intro {
    padding: 0.25rem 0.2rem 0.45rem;
  }

  .footer-brand {
    color: var(--ink-strong);
    font-size: clamp(1.65rem, 7.5vw, 2rem);
    font-weight: 750;
    letter-spacing: -0.045em;
    line-height: 0.96;
  }

  .footer-grid > .footer-intro > p {
    max-width: 18rem;
    margin-top: 0.7rem;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .footer-grid .footer-nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    justify-items: stretch;
    gap: 0.45rem;
    padding: 0.45rem;
    border-radius: 1.25rem;
    background: #f2f2f4;
  }

  .footer-grid .footer-nav-group {
    display: grid;
    justify-items: stretch;
    gap: 0.4rem;
    align-content: start;
  }

  .footer-grid .footer-nav-legal {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
    padding-top: 0.45rem;
    border-top-color: rgba(0, 0, 0, 0.08);
  }

  .footer-grid .footer-nav a {
    display: grid;
    min-width: 0;
    min-height: 2.75rem;
    place-items: center;
    padding: 0.55rem 0.25rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--pill);
    color: #424245;
    background: #fff;
    font-size: 0.72rem;
    font-weight: 650;
    line-height: 1.2;
    text-align: center;
  }

  .footer-grid .footer-nav a:hover {
    color: var(--ink-strong);
    border-color: #c9c9cf;
  }

  .site-footer .footer-contact {
    display: grid;
    width: 100%;
    justify-items: stretch;
    gap: 0.55rem;
  }

  .site-footer .footer-contact > span {
    margin: 0 0 0.1rem 0.2rem;
    color: var(--muted);
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }

  .site-footer .footer-contact > a {
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 3.25rem;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.85rem;
    border: 1px solid transparent;
    border-radius: 1rem;
    font-size: clamp(0.72rem, 3.2vw, 0.84rem);
    font-weight: 680;
    line-height: 1.25;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .site-footer .footer-contact > .footer-email-link {
    color: #fff;
    border-color: var(--dark);
    background: var(--dark);
  }

  .site-footer .footer-contact > .footer-email-link:hover {
    color: #fff;
    background: #242427;
  }

  .site-footer .footer-contact > .whatsapp-link {
    color: #0b5d31;
    border-color: #cbe9d6;
    background: #eaf8ef;
  }

  .site-footer .footer-contact > .whatsapp-link:hover {
    color: #084925;
    border-color: #a9d9bb;
    background: #def3e6;
  }

  .site-footer .footer-contact .whatsapp-icon {
    width: 1.05rem;
    height: 1.05rem;
  }

  .footer-bottom {
    width: min(calc(100% - 2.5rem), 40rem);
    align-items: center;
    gap: 0.2rem;
    margin-top: 0.75rem;
    padding: 1rem 0.25rem 1.25rem;
    border-top: 0;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 0.66rem;
    line-height: 1.4;
  }

  .footer-bottom p:first-child {
    color: var(--ink);
    font-weight: 650;
  }
}

/* Industry landing pages */
.project-detail-link {
  display: inline-flex;
  width: fit-content;
  min-height: 2rem;
  align-items: center;
  margin-top: 0.85rem;
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(29, 29, 31, 0.16);
  border-radius: var(--pill);
  color: inherit;
  background: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  font-weight: 680;
  line-height: 1.15;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.project-detail-link:hover {
  border-color: rgba(29, 29, 31, 0.3);
  background: rgba(255, 255, 255, 0.76);
}

.project-roof .project-detail-link {
  border-color: rgba(255, 255, 255, 0.24);
  color: #f5f5f7;
  background: rgba(255, 255, 255, 0.09);
}

.project-roof .project-detail-link:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.16);
}

.industry-page {
  color: var(--ink);
  background: var(--surface);
}

.industry-page h1,
.industry-page h2,
.industry-page h3,
.industry-page p {
  margin-top: 0;
}

.industry-page .site-header {
  background: rgba(245, 245, 247, 0.9);
}

.industry-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 113, 227, 0.12), transparent 30rem),
    var(--bg);
}

.industry-hero-grid {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding-block: clamp(5rem, 10vw, 8rem);
}

.industry-hero-copy {
  max-width: 48rem;
}

.industry-eyebrow,
.industry-card-kicker {
  margin-bottom: 0.8rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.industry-hero h1 {
  max-width: 49rem;
  margin-bottom: 1.45rem;
  font-size: clamp(3rem, 5.6vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.industry-hero-lead {
  max-width: 43rem;
  margin-bottom: 1.7rem;
  color: #4f4f54;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.industry-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.industry-text-link {
  color: var(--ink-strong);
  font-size: 0.9rem;
  font-weight: 680;
  text-decoration: underline;
  text-decoration-color: rgba(29, 29, 31, 0.3);
  text-underline-offset: 0.28em;
}

.industry-text-link:hover {
  color: var(--blue);
  text-decoration-color: currentColor;
}

.industry-assurance {
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 550;
}

.industry-journey-card {
  padding: clamp(1.4rem, 4vw, 2.2rem);
  border-radius: clamp(1.7rem, 4vw, 2.5rem);
  color: #fff;
  background: var(--dark);
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.16);
}

.industry-journey-card .industry-card-kicker {
  color: rgba(255, 255, 255, 0.55);
}

.industry-journey-card ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.industry-journey-card li {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding-block: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.industry-journey-card li span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
  font-weight: 700;
}

.industry-journey-card li strong {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.25;
}

.industry-section {
  padding-block: clamp(4.75rem, 9vw, 8rem);
  background: var(--surface);
}

.industry-section-muted {
  background: var(--bg);
}

.industry-section-dark {
  color: #fff;
  background: var(--dark);
}

.industry-section-heading {
  max-width: 53rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.industry-section-heading h2,
.industry-final-cta h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 5.2vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.industry-section-heading > p:last-child {
  max-width: 43rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  line-height: 1.6;
}

.industry-section-dark .industry-section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.industry-outcome-grid,
.industry-feature-grid,
.industry-split-grid,
.industry-price-grid {
  display: grid;
  gap: 1rem;
}

.industry-outcome-grid article,
.industry-feature-grid article,
.industry-price-grid article {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--line-soft);
  border-radius: 1.5rem;
  background: #fff;
}

.industry-outcome-grid article > span {
  display: inline-flex;
  margin-bottom: 2.5rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 750;
}

.industry-outcome-grid h3,
.industry-feature-grid h3,
.industry-split-grid h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.industry-outcome-grid p,
.industry-feature-grid p,
.industry-split-grid p,
.industry-price-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.industry-feature-grid article {
  min-height: 12rem;
}

.industry-resource-note {
  max-width: 48rem;
  margin: clamp(1.5rem, 4vw, 2.5rem) 0 0;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.55;
}

.industry-resource-note a {
  color: var(--ink-strong);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(29, 29, 31, 0.28);
  text-underline-offset: 0.22em;
}

.industry-resource-note a:hover {
  color: var(--blue);
  text-decoration-color: currentColor;
}

.industry-demo-section {
  overflow: hidden;
}

.industry-demo-grid {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.industry-demo-grid .industry-section-heading {
  margin-bottom: 0;
}

.industry-concept-note {
  width: fit-content;
  margin-top: 1.4rem !important;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  color: var(--ink) !important;
  background: var(--bg);
  font-size: 0.72rem !important;
  font-weight: 700;
  line-height: 1.2 !important;
}

.industry-browser {
  position: relative;
  margin: 0;
  padding-top: 1.9rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: clamp(1.35rem, 3vw, 2rem);
  background: #d7ebfb;
  box-shadow: var(--shadow);
}

.industry-browser video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  background: #c9e3f8;
}

.industry-browser figcaption {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.45rem 0.65rem;
  border-radius: var(--pill);
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  font-size: 0.62rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.industry-split-grid article {
  min-height: 19rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.045);
}

.industry-split-grid .industry-card-kicker {
  color: rgba(255, 255, 255, 0.48);
}

.industry-split-grid h3 {
  max-width: 28rem;
  color: #fff;
  font-size: clamp(1.7rem, 3.8vw, 3rem);
}

.industry-split-grid p:last-child {
  max-width: 33rem;
  color: rgba(255, 255, 255, 0.6);
}

.industry-steps {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.industry-steps li {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}

.industry-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.industry-steps li span {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink-strong);
  font-size: 0.72rem;
  font-weight: 750;
}

.industry-steps li strong {
  padding-top: 0.25rem;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.35;
}

.industry-price-grid article {
  display: flex;
  min-height: 18rem;
  flex-direction: column;
}

.industry-price-grid article > strong {
  margin: auto 0 1rem;
  color: var(--ink-strong);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.industry-price-grid .industry-card-kicker {
  color: var(--muted);
}

.industry-faq-layout {
  display: grid;
  gap: clamp(1.5rem, 5vw, 4rem);
}

.industry-faq-layout .industry-section-heading {
  margin-bottom: 0;
}

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

.industry-faq-list details {
  border-bottom: 1px solid var(--line);
}

.industry-faq-list summary {
  position: relative;
  padding: 1.35rem 2.5rem 1.35rem 0;
  cursor: pointer;
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
}

.industry-faq-list summary::-webkit-details-marker {
  display: none;
}

.industry-faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0.15rem;
  content: "+";
  font-size: 1.3rem;
  font-weight: 450;
  transform: translateY(-50%);
}

.industry-faq-list details[open] summary::after {
  content: "−";
}

.industry-faq-list details p {
  max-width: 48rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.industry-final-cta {
  padding-block: clamp(4.5rem, 9vw, 7rem);
  color: #fff;
  background: #101e32;
}

.industry-final-inner {
  display: grid;
  gap: 2rem;
  align-items: end;
}

.industry-final-cta .industry-eyebrow {
  color: #79b8ff;
}

.industry-final-cta h2 {
  max-width: 48rem;
  margin-bottom: 0;
}

.industry-whatsapp-button {
  color: #0b5d31;
  background: #eaf8ef;
}

.industry-whatsapp-button:hover {
  color: #084925;
  background: #dff3e7;
}

@media (min-width: 48rem) {
  .industry-outcome-grid,
  .industry-price-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .industry-steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .industry-steps li,
  .industry-steps li:last-child {
    grid-template-columns: 1fr;
    align-content: start;
    padding: 1.5rem;
    border-top: 0;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .industry-steps li:first-child {
    padding-left: 0;
  }

  .industry-steps li:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .industry-steps li strong {
    min-height: 7rem;
    padding-top: 0.65rem;
  }
}

@media (min-width: 60rem) {
  .industry-hero-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(19rem, 0.65fr);
  }

  .industry-demo-grid {
    grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  }

  .industry-faq-layout {
    grid-template-columns: minmax(16rem, 0.65fr) minmax(0, 1.35fr);
  }

  .industry-final-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 70rem) {
  .industry-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 47.999rem) {
  .industry-page {
    padding-bottom: 0;
  }

  .industry-page .shell {
    width: min(calc(100% - 1.5rem), var(--shell));
  }

  .industry-hero-grid {
    padding-block: 4rem;
  }

  .industry-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .industry-section-heading h2,
  .industry-final-cta h2 {
    font-size: clamp(2.25rem, 10.5vw, 3.4rem);
  }

  .industry-actions {
    align-items: stretch;
  }

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

  .industry-text-link {
    width: 100%;
    padding: 0.35rem 0;
    text-align: center;
  }

  .industry-browser video {
    aspect-ratio: 16 / 11;
  }

  .industry-split-grid article,
  .industry-price-grid article {
    min-height: 15rem;
  }

  .industry-page .footer-grid {
    width: min(calc(100% - 1.5rem), var(--shell));
  }
}

@media (prefers-reduced-motion: reduce) {
  .industry-browser video {
    animation: none;
  }
}

/* Blog and editorial pages */
.blog-page,
.article-page {
  color: var(--ink);
  background: var(--surface);
}

.blog-page .site-header,
.article-page .site-header {
  background: rgba(245, 245, 247, 0.92);
}

.blog-eyebrow,
.article-section-label {
  margin: 0 0 0.85rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.blog-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 16%, rgba(0, 113, 227, 0.13), transparent 30rem),
    var(--bg);
}

.blog-hero-inner {
  padding-block: clamp(5.5rem, 11vw, 9rem);
}

.blog-hero h1 {
  max-width: 58rem;
  margin: 0 0 1.5rem;
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.blog-hero-lead {
  max-width: 43rem;
  margin: 0;
  color: #4f4f54;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.blog-listing,
.blog-principles {
  padding-block: clamp(4.75rem, 9vw, 8rem);
}

.blog-principles {
  background: var(--bg);
}

.blog-section-heading {
  max-width: 48rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.blog-section-heading h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.blog-grid {
  display: grid;
  gap: 1rem;
}

.blog-card {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: clamp(1.6rem, 3vw, 2.4rem);
  background: #fff;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.06);
}

.blog-card-featured {
  display: grid;
}

.blog-card-art {
  display: grid;
  min-height: clamp(15rem, 34vw, 27rem);
  align-content: end;
  padding: clamp(1.5rem, 5vw, 3rem);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 75% 25%, rgba(52, 143, 255, 0.7), transparent 17rem),
    linear-gradient(145deg, #0f1013, #162946);
}

.blog-card-art span {
  display: block;
  margin-left: -0.06em;
  font-size: clamp(6rem, 19vw, 13rem);
  font-weight: 780;
  letter-spacing: -0.095em;
  line-height: 0.72;
}

.blog-card-art strong {
  display: block;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(0.85rem, 2vw, 1.15rem);
  letter-spacing: 0.16em;
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 4vw, 2.75rem);
}

.blog-card-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 620;
}

.blog-card h2 {
  max-width: 42rem;
  margin: clamp(2rem, 5vw, 4rem) 0 1rem;
  font-size: clamp(2rem, 4.8vw, 4.15rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.blog-card h2 a {
  color: inherit;
}

.blog-card h2 a:hover {
  color: var(--blue);
}

.blog-card-body > p {
  max-width: 38rem;
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.blog-card-link,
.article-text-link {
  width: fit-content;
  color: var(--ink-strong);
  font-size: 0.9rem;
  font-weight: 720;
  text-decoration: underline;
  text-decoration-color: rgba(29, 29, 31, 0.28);
  text-underline-offset: 0.3em;
}

.blog-card-link:hover,
.article-text-link:hover {
  color: var(--blue);
  text-decoration-color: currentColor;
}

.blog-principle-grid {
  display: grid;
  gap: 1rem;
}

.blog-principle-grid article {
  min-height: 17rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--line-soft);
  border-radius: 1.5rem;
  background: #fff;
}

.blog-principle-grid span {
  display: inline-block;
  margin-bottom: 4rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 760;
}

.blog-principle-grid h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.blog-principle-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.58;
}

.blog-cta {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
  color: #fff;
  background: #101e32;
}

.blog-cta .blog-eyebrow {
  color: #79b8ff;
}

.blog-cta-inner {
  display: grid;
  gap: 2rem;
  align-items: end;
}

.blog-cta h2 {
  max-width: 48rem;
  margin: 0;
  font-size: clamp(2.5rem, 5.2vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.article-header {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 8%, rgba(0, 113, 227, 0.12), transparent 26rem),
    var(--bg);
}

.article-header-inner {
  padding-block: clamp(4.5rem, 10vw, 8.5rem) clamp(4rem, 8vw, 7rem);
}

.article-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 620;
}

.article-breadcrumbs a {
  color: inherit;
}

.article-breadcrumbs a:hover {
  color: var(--blue);
}

.article-header h1 {
  max-width: 64rem;
  margin: 0 0 1.5rem;
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.072em;
}

.article-deck {
  max-width: 48rem;
  margin: 0 0 2rem;
  color: #4f4f54;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  line-height: 1.55;
}

.article-layout {
  width: min(calc(100% - 2.5rem), 52rem);
  padding-block: clamp(4rem, 8vw, 7.5rem);
}

.article-content {
  color: #343438;
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  line-height: 1.78;
}

.article-content > p,
.article-content section > p {
  margin: 0 0 1.4rem;
}

.article-content a:not(.button) {
  color: #075eae;
  text-decoration: underline;
  text-decoration-color: rgba(0, 113, 227, 0.3);
  text-underline-offset: 0.2em;
}

.article-content a:not(.button):hover {
  color: var(--blue);
  text-decoration-color: currentColor;
}

.article-intro {
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 560;
  line-height: 1.62;
}

.article-toc {
  margin-block: clamp(2.75rem, 6vw, 4.5rem);
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--bg);
}

.article-toc > p {
  margin: 0 0 1rem;
  color: var(--ink-strong);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-toc ol {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.25rem;
}

.article-toc a {
  font-size: 0.92rem;
  font-weight: 620;
}

.article-content section {
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
  margin-top: clamp(4.5rem, 9vw, 7rem);
}

.article-content section > h2 {
  margin: 0 0 1.3rem;
  color: var(--ink-strong);
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.058em;
}

.article-content h3 {
  color: var(--ink-strong);
}

.article-question-grid,
.article-industry-grid,
.article-comparison {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.article-question-grid article,
.article-industry-grid article,
.article-comparison article {
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border: 1px solid var(--line-soft);
  border-radius: 1.35rem;
  background: #fff;
}

.article-question-grid span {
  display: inline-block;
  margin-bottom: 2.5rem;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 760;
}

.article-question-grid h3,
.article-industry-grid h3,
.article-comparison h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.article-question-grid p,
.article-industry-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.58;
}

.article-industry-grid article {
  display: flex;
  min-height: 19rem;
  flex-direction: column;
}

.article-industry-grid article a {
  margin-top: auto;
  padding-top: 2rem;
  font-size: 0.84rem;
  font-weight: 720;
}

.article-checklist {
  display: grid;
  gap: 0;
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.article-checklist > li {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  padding-block: clamp(2rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

.article-check-number {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink-strong);
  font-size: 0.68rem;
  font-weight: 760;
}

.article-checklist h3 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.article-checklist p {
  margin: 0 0 1rem;
}

.article-checklist p:last-child {
  margin-bottom: 0;
}

.article-callout {
  margin-top: clamp(3.5rem, 8vw, 6rem);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 1.75rem;
  color: #fff;
  background: #101e32;
}

.article-callout .article-section-label {
  color: #79b8ff;
}

.article-callout > p:last-child {
  max-width: 43rem;
  margin: 0;
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  line-height: 1.42;
}

.article-comparison article:first-child {
  background: var(--bg);
}

.article-comparison article:last-child {
  color: #fff;
  background: var(--dark);
}

.article-comparison article:last-child .article-section-label {
  color: #79b8ff;
}

.article-comparison article:last-child h3 {
  color: #fff;
}

.article-comparison ul {
  display: grid;
  gap: 0.6rem;
  margin: 1.25rem 0 0;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.article-comparison article:last-child ul {
  color: rgba(255, 255, 255, 0.68);
}

.article-audit-list {
  display: grid;
  gap: 0;
  margin: 2rem 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.article-audit-list li {
  position: relative;
  padding: 1rem 0 1rem 2rem;
  border-bottom: 1px solid var(--line);
}

.article-audit-list li::before {
  position: absolute;
  top: 1.05rem;
  left: 0.1rem;
  color: var(--blue);
  content: "✓";
  font-size: 0.9rem;
  font-weight: 800;
}

.article-next-step {
  padding: clamp(1.75rem, 5vw, 3rem);
  border-radius: clamp(1.6rem, 4vw, 2.25rem);
  background: var(--bg);
}

.article-next-step > h2 {
  max-width: 42rem;
}

.article-next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  margin-top: 1.8rem;
}

@media (min-width: 40rem) {
  .blog-card-featured {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

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

  .article-question-grid,
  .article-comparison {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 60rem) {
  .blog-cta-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

@media (max-width: 47.999rem) {
  .blog-page,
  .article-page {
    padding-bottom: 0;
  }

  .blog-page .shell,
  .article-page .shell {
    width: min(calc(100% - 1.5rem), var(--shell));
  }

  .blog-hero-inner {
    padding-block: 4.5rem 5rem;
  }

  .blog-hero h1 {
    font-size: clamp(2.8rem, 13.5vw, 4.1rem);
  }

  .blog-card-art {
    min-height: 13rem;
  }

  .blog-section-heading h2,
  .blog-cta h2 {
    font-size: clamp(2.25rem, 10.5vw, 3.4rem);
  }

  .blog-principle-grid article {
    min-height: 14rem;
  }

  .blog-card h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .blog-cta .button {
    width: 100%;
  }

  .article-header-inner {
    padding-block: 3.5rem 4.5rem;
  }

  .article-header h1 {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
  }

  .article-layout {
    width: min(calc(100% - 1.5rem), 52rem);
  }

  .article-content section > h2 {
    font-size: clamp(2rem, 9.5vw, 3rem);
  }

  .article-checklist > li {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 0.85rem;
  }

  .article-check-number {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 0.62rem;
  }

  .article-next-actions {
    align-items: stretch;
  }

  .article-next-actions .button,
  .article-next-actions .article-text-link {
    width: 100%;
    text-align: center;
  }

  .blog-page .footer-grid,
  .article-page .footer-grid {
    width: min(calc(100% - 1.5rem), var(--shell));
  }
}

@media print {
  .site-header,
  .announcement-bar,
  .hero-actions,
  .project-video-frame,
  .form-card,
  .trust-trigger,
  .trust-dialog {
    display: none;
  }

  .section,
  .hero-content,
  .contact {
    padding-block: 2rem;
  }

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