:root {
  --bg-light: #f6f5f3;
  --bg-mid: #f8f7f5;
  --bg: #f6f5f3;
  --surface: #111111;
  --border: rgba(17, 17, 17, 0.08);
  --text: #111111;
  --text-muted: #505050;
  --accent: #6EE7B7;
  --accent-small: #a3ffda;
  --accent-dim: #6ee7b727;
  --font-sans: "Clash Grotesk", system-ui, sans-serif;
  --font-display: "Clash Grotesk", system-ui, sans-serif;
  --font-serif: "Clash Grotesk", system-ui, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 80px;
  --footer-h: 100vh;
  --section-padding: 200px;
  --mobile-gutter: 24px;
  --gutter: 80px;
  --radius: 0px;
}
[data-theme="dark"] {
  --bg-light: #111111;
  --bg-mid: #0c0c0c;
  --bg: #111111;
  --surface: #f6f5f3;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f6f5f3;
  --text-muted: #a0a0a0;
  --accent: #6EE7B7;
  --accent-small: #a3ffda;
  --accent-dim: rgba(110, 231, 183, 0.15);
}
.detail-body {
  background-color: var(--bg-light);
}
::selection {
  background-color: var(--text);
  color: var(--bg);
}
::-moz-selection {
  background-color: var(--text);
  color: var(--bg);
}
#root {
  background: #0c0c0c;
}
.page-wrap {
  position: relative;
  z-index: 2;
  background: var(--bg-mid);
  margin-bottom: var(--footer-h);
  min-height: 100vh;
  border-radius: 0;
  border: 1px solid var(--border);
  border-top: none;
}
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html.lenis,
html.lenis body,
html.lenis-enhanced,
html.lenis-enhanced body {
  height: auto;
}

html.lenis.lenis-smooth,
html.lenis-enhanced.lenis-smooth {
  scroll-behavior: auto !important;
}

html.lenis.lenis-stopped,
html.lenis-enhanced.lenis-stopped {
  overflow: hidden;
}

html.lenis.lenis-smooth iframe,
html.lenis-enhanced.lenis-smooth iframe {
  pointer-events: none;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-mid) !important;
  cursor: none;

}
a {
  color: inherit;
  text-decoration: none;
  cursor: none;
}
button {
  cursor: none;
}
p {
  text-wrap: pretty;
}
img {
  max-width: 100%;
  display: block;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(17, 17, 17, 0.06) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(17, 17, 17, 0.04) 0 1px, transparent 1px);
  background-size: 32px 32px, 44px 44px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  mix-blend-mode: multiply;
}
html,
body {
  scrollbar-width: none;
}
::-webkit-scrollbar {
  display: none;
}
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border: 1px solid color-mix(in srgb, var(--text) 24%, transparent);
  background: color-mix(in srgb, var(--bg-mid) 18%, transparent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s var(--ease-out-expo),
    height 0.3s var(--ease-out-expo),
    border-radius 0.3s var(--ease-out-expo),
    border-color 0.3s var(--ease-out-expo),
    background-color 0.3s var(--ease-out-expo),
    box-shadow 0.3s var(--ease-out-expo);
}
.cursor-ring:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: var(--text);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    opacity 0.2s ease,
    background-color 0.3s var(--ease-out-expo),
    transform 0.3s var(--ease-out-expo);
}
.cursor-hover {
  width: 52px;
  height: 52px;
  background-color: var(--accent-dim);
  border-color: var(--accent);
}
.cursor-ring.cursor-hover {
  width: 52px;
  height: 52px;
  border-color: var(--accent);
  background: var(--accent-dim);
  transition:
    width 0.3s var(--ease-out-expo),
    height 0.3s var(--ease-out-expo),
    background-color 0.3s var(--ease-out-expo),
    border-color 0.3s var(--ease-out-expo);
}
.cursor-ring.cursor-hover:before {
  background: var(--accent);
  transform: translate(-50%, -50%) scale(0.72);
}
.cursor-ring.cursor-drag {
  width: 82px;
  height: 36px;
  background: var(--text);
  border-color: color-mix(in srgb, var(--accent) 52%, var(--text));
  border-radius: 999px;
  mix-blend-mode: normal;
  box-shadow: 0 12px 34px color-mix(in srgb, var(--text) 18%, transparent);
  transition:
    width 0.3s var(--ease-out-expo),
    height 0.3s var(--ease-out-expo),
    border-radius 0.3s var(--ease-out-expo),
    background-color 0.3s var(--ease-out-expo),
    border-color 0.3s var(--ease-out-expo),
    box-shadow 0.3s var(--ease-out-expo);
}
.cursor-ring.cursor-drag:before {
  opacity: 0;
}
.cursor-ring.cursor-drag ~ .cursor-label {
  color: var(--bg-mid);
  font-weight: 700;
}
.cursor-label {
  position: fixed;
  pointer-events: none;
  z-index: 10001;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg-mid);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.cursor-label.visible {
  opacity: 1;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  z-index: 300;
  opacity: 1;
  transition:
    transform 0.5s var(--ease-out-expo),
    opacity 0.35s ease;
  background-color: #f5f2eb00;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}
.navbar--footer-marquee-active {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}
.navbar.dark {
  color: #fff;
}
.navbar.light {
  color: #000;
}
.navbar__logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  letter-spacing: -0.02em;
  z-index: 101;
  padding: 0 calc(var(--gutter) - 22px);
  display: flex;
  align-items: center;
  height: 100%;
  margin-right: 0;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}
.header__logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
[data-theme="dark"] .header__logo {
  content: url("src/assets/mlogo.png");
}
.navbar__links {
  display: flex;
  gap: 0;
  list-style: none;
  height: 100%;
  align-items: stretch;
  padding-left: calc(var(--gutter) - 22px);
}
.navbar__links li {
  display: flex;
  align-items: center;
  padding: 0 28px;
}
.navbar__links a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color 0.3s;
}
.navbar__links a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease-out-expo);
}
.navbar__links a:hover:after {
  transform: scaleX(1);
}
.navbar__availability {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  margin-left: auto;
  padding: 0 var(--gutter);
  height: 100%;
  border-left: 1px solid var(--border);
}
.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #60ff53;
  box-shadow: 0 0 12px #5eff6066;
}
.desktop-only {
  display: flex;
}
.mobile-only {
  display: none;
}
@media (max-width: 900px) {
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    grid-template-columns: none;
  }
  .navbar__logo {
    padding: 0;
    border-right: none;
    height: auto;
  }
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: flex !important;
  }
}
.navbar__toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
  padding: 10px;
  margin-right: -10px;
}
.hamburger {
  width: 24px;
  height: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger span {
  width: 100%;
  height: 2px;
  background: var(--text);
  transition:
    transform 0.3s var(--ease-out-expo),
    background-color 0.3s;
}
.menu-open .hamburger span {
  background: var(--text);
}
.menu-open .hamburger span:first-child {
  transform: translateY(5px) rotate(45deg);
}
.menu-open .hamburger span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}
.navbar__mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 120px 40px 40px;
  transform: translate(100%);
  transition: transform 0.6s var(--ease-out-expo);
  overflow-y: auto;
  visibility: hidden;
  pointer-events: none;
}
.navbar__mobile-overlay.active {
  transform: translate(0);
  visibility: visible;
  pointer-events: all;
}
.navbar__mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.navbar__mobile-links a {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.navbar__mobile-footer {
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 40px;
}
.lang-switcher {
  display: flex;
  gap: 16px;
  align-items: center;
}
.lang-switcher button {
  background: transparent;
  border: none;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  cursor: pointer;
}
.lang-switcher button.active {
  color: var(--text);
  font-weight: 600;
}
.navbar__links a:hover {
  color: var(--text);
}
.navbar__links a:hover:after {
  width: 100%;
}
.navbar__mail-link {
  display: flex;
}
.navbar__mail-link:hover #navbar__mail {
  transform: scale(1.75);
}
#navbar__mail {
  display: inline-block;
  transition: transform 0.2s linear;
}
.navbar__availability {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.75rem;
  color: var(--text);
}
.navbar__availability-status {
  display: flex;
  align-items: center;
  gap: 8px;
}
.availability-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #60ff53;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  to {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
.section {
  width: 100%;
  position: relative;
  border-top: 1px solid var(--border);
}
.section + .section {
  border-top: 1px solid var(--border);
}
.hero {
  min-height: calc(100vh - 36px);
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 0;
  overflow: hidden;
  position: relative;
  padding-top: var(--nav-h);
}
@media (max-width: 900px) {
  .hero {
    min-height: 100svh;
    padding: 0;
    justify-content: stretch;
  }
}
.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow:before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text-muted);
  flex-shrink: 0;
}
.hero__eyebrow b {
  font-weight: 500;
}
@media (max-width: 900px) {
  .hero__eyebrow {
    line-height: 150%;
  }
  .hero__eyebrow:before {
    display: none;
  }
}
@media (max-width: 480px) {
  .hero__eyebrow {
    margin-top: 0;
    margin-bottom: 24px;
    max-width: 100%;
  }
  .hero__eyebrow b {
    display: block;
  }
}
.hero__eyebrow span {
  display: inline-block;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 11rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: lowercase;
}
.hero__title-line {
  display: block;
}
.hero__title-line span {
  display: inline-block;
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
}
.hero__title-line-2 {
  font-weight: 400;
}
.hero__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 40px;
  padding: 40px var(--gutter);
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.hero__title-wrap {
  padding: var(--gutter);
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
}
@media (max-width: 768px) {
  .hero {
    grid-template-rows: minmax(0, 1fr) auto;
  }
  .hero__title-wrap {
    padding: calc(var(--nav-h) + 54px) 24px 32px;
    justify-content: flex-end;
    min-width: 0;
  }
  .hero__title {
    font-size: clamp(3.25rem, 17vw, 5.8rem);
    line-height: 0.92;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .hero__bottom {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }
  .hero__scroll-hint {
    display: none;
  }
}
@media (max-width: 380px) {
  .hero__title-wrap {
    padding-top: calc(var(--nav-h) + 34px);
  }
  .hero__title {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }
}
.hero__tagline {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 360px;
}
@media (max-width: 768px) {
  .hero__tagline {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.65;
  }
}
.hero__cta {
  display: flex;
  align-items: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--accent);
  color: #111;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition:
    transform 0.3s var(--ease-out-expo),
    box-shadow 0.3s,
    background 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff26;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px #00000021;
}
.btn-primary:hover:before {
  opacity: 1;
}
.hero__scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  height: 80px;
  justify-content: flex-end;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--text-muted);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line:after {
  content: "";
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollLine 2s var(--ease-in-out-quart, ease-in-out) infinite;
}
@keyframes scrollLine {
  0% {
    top: -100%;
  }
  to {
    top: 100%;
  }
}
@media (max-width: 1024px) {
  :root {
    --section-padding: 120px;
    --gutter: 48px;
  }
}
@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
    --gutter: 24px;
    --radius: 0px;
  }
}
.about {
  padding: 0;
  margin-top: 0;
  display: grid;
  grid-template-columns: 38% 1fr;
  min-height: 80vh;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 1024px) {
  .about {
    grid-template-columns: 1fr;
  }
}
.about__photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  width: 100%;
  border-right: 1px solid var(--border);
  min-height: 80vh;
}
@media (max-width: 1024px) {
  .about__photo-wrap {
    border-right: none;
    border-bottom: 1px solid var(--border);
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }
}
@media (max-width: 768px) {
  .about__photo-wrap {
    aspect-ratio: 5 / 4;
    width: calc(100% - 48px);
    margin: 24px;
    border: 1px solid var(--border);
  }
}
@media (max-width: 480px) {
  .about__photo-wrap {
    aspect-ratio: 1 / 1.12;
  }
}
.about__mark {
  width: 100%;
  height: 100%;
  min-height: 80vh;
  display: grid;
  place-items: center;
  color: var(--text);
  font-size: clamp(5rem, 18vw, 13rem);
  font-weight: 700;
  letter-spacing: 0;
  background:
    linear-gradient(135deg, var(--accent-dim), transparent 55%),
    var(--bg-light);
  transition:
    transform 0.8s var(--ease-out-expo),
    background-color 0.3s;
}
.about__photo-wrap:hover .about__mark {
  transform: scale(1.03);
}
.pixel-easter {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  grid-auto-rows: auto;
  gap: 0;
  opacity: 0.1;
}
.pixel {
  opacity: 0;
  transform: scale(0.85);
  background: var(--tone);
  aspect-ratio: 1 / 1;
  mix-blend-mode: screen;
}
.pixel-easter:hover .pixel {
  animation: pixelBlink var(--duration) ease var(--delay) 1;
}
.pixel-photo {
  position: relative;
  width: 420px;
  overflow: hidden;
}
.pixel-photo img {
  width: 100%;
  display: block;
}
.pixel-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(28, 1fr);
  pointer-events: none;
}
.pixel {
  aspect-ratio: 1;
  opacity: 0;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  mix-blend-mode: screen;
  mix-blend-mode: overlay;
  background: linear-gradient(135deg, #ffe066, #ffb703);
}
.pixel.active {
  opacity: 1;
  transform: scale(1.1);
  filter: blur(2px);
}
@keyframes pixelBlink {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  20% {
    opacity: 0.9;
    transform: scale(1);
  }
  70% {
    opacity: 0.35;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.92);
  }
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: var(--section-padding) var(--gutter);
}
@media (max-width: 768px) {
  .about__content {
    gap: 20px;
    padding: 72px 24px 80px;
  }
}
.about__label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about__label:before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text-muted);
  flex-shrink: 0;
}
.about__label:after {
  display: none;
}
.about__label:after {
  content: "";
  position: absolute;
  left: 110px;
  top: 8px;
  width: min(25vw, 200px);
  height: 1px;
  background: var(--accent);
  opacity: 1;
  z-index: 999;
}
@media (max-width: 1024px) {
  .about__label:after {
    display: none;
  }
}
.about__heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 400;
  margin-bottom: 40px;
  text-transform: lowercase;
}
.about__heading-lead {
  display: block;
  font-weight: 600 !important;
  text-transform: none;
}
.about__heading em {
  font-style: normal;
  font-weight: 400;
}
.about__text {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-muted);
  text-wrap: pretty;
}
@media (max-width: 768px) {
  .about__heading {
    font-size: clamp(2.75rem, 13vw, 4.8rem);
    margin-bottom: 12px;
  }
  .about__heading-lead {
    font-size: 1.12em;
    line-height: 0.95;
  }
  .about__text {
    font-size: 1rem;
    line-height: 1.65;
  }
}
.about__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.skill-tag {
  display: inline-flex;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  transition:
    border-color 0.3s,
    color 0.3s,
    background 0.3s;
}
.skill-tag:hover {
  border-color: var(--text-muted);
  color: var(--text);
}
.about__worked-with {
  padding-top: 32px;
}
@media (max-width: 600px) {
  .about__worked-with {
    padding-top: 0;
    border-top: none;
  }
}
.worked-with__row {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}
.worked-with__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.worked-with__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.worked-with__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 600px) {
  .worked-with__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    width: 100%;
  }
}
.projects-slider-section {
  padding: 0 0 var(--section-padding);
  margin-top: 0;
  overflow: hidden;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (max-width: 768px) {
  .projects-slider-section {
    margin-top: 40px;
  }
}
.projects-slider__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 80px;
  padding: var(--section-padding) var(--gutter) 80px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .projects-slider__header {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 80px 24px 48px;
    border-bottom: none;
  }
  .projects-slider__label:before {
    display: none;
  }
  .projects-slider__heading {
    font-size: clamp(2.6rem, 13vw, 4.8rem);
  }
  .projects-slider__p {
    font-size: 1rem;
    line-height: 1.65;
  }
}
.projects-slider__p {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 480px;
  align-self: end;
}
.projects-slider__label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.projects-slider__label:before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text-muted);
  flex-shrink: 0;
}
.projects-slider__heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: lowercase;
  font-weight: 600;
}
@media (max-width: 768px) {
  .projects-slider__label:before {
    display: none;
  }
  .projects-slider__heading {
    font-size: clamp(2.6rem, 13vw, 4.8rem);
  }
  .projects-slider__p {
    font-size: 1rem;
    line-height: 1.65;
  }
}
.projects-slider__container {
  width: 100%;
  cursor: none;
  position: relative;
}
.local-time-trigger {
  position: relative;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.local-time-tooltip {
  position: absolute;
  bottom: calc(100% + 15px);
  left: 50%;
  transform: translate(-50%) translateY(10px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s var(--ease-out-expo),
    transform 0.3s var(--ease-out-expo);
  min-width: 120px;
  z-index: 100;
}
.local-time-tooltip.visible {
  opacity: 1;
  transform: translate(-50%) translateY(0);
}
@media (max-width: 768px) {
  .local-time-trigger {
    display: inline-block;
  }
  .local-time-tooltip {
    top: calc(100% + 10px);
    bottom: auto;
    left: 0;
    transform: translateY(-4px);
  }
  .local-time-tooltip.visible {
    transform: translateY(0);
  }
}
.tooltip__label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2c2a266c;
  font-weight: 500;
  white-space: nowrap;
}
.tooltip__time {
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  color: #2c2a26;
  white-space: nowrap;
}
.projects-swiper {
  width: 100%;
  margin-top: 0;
  padding: 64px var(--gutter) 80px !important;
  overflow: hidden !important; /* Hide the scrolling wrapper */
}
.swiper-wrapper {
  display: flex;
  gap: clamp(16px, 1.7vw, 26px);
  width: max-content;
  align-items: center;
  will-change: transform;
}
.projects-swiper__slide {
  width: 900px !important;
  height: auto;
  transition:
    transform 0.6s var(--ease-out-expo),
    filter 0.6s var(--ease-out-expo);
}
@media (max-width: 768px) {
  .projects-swiper {
    padding-bottom: 28px !important;
  }
  .projects-swiper__slide {
    width: 80% !important;
    height: auto;
  }
  .projects-slider__container {
    cursor: grab;
  }
}
.projects-swiper__slide.swiper-slide-active {
  opacity: 1;
}
.project-card-slider {
  width: 100%;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 768px) {
  .project-card-slider {
    aspect-ratio: auto;
  }
}
.project-card__visual {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  transform: translateZ(0);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(110, 231, 183, 0.32), transparent 48%),
    linear-gradient(315deg, rgba(99, 66, 244, 0.24), transparent 42%),
    #10100f;
  color: #fff;
}
@media (max-width: 768px) {
  .project-card__visual {
    aspect-ratio: 4 / 3;
  }
}
.project-card__visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.52) 0%,
    rgba(0, 0, 0, 0.18) 40%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
}
.project-card__visual:before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
  z-index: 1;
}
.project-card-slider:hover .project-card__visual:after {
  opacity: 1;
}
.project-card__visual--vox {
  background:
    linear-gradient(135deg, rgba(110, 231, 183, 0.28), transparent 52%),
    linear-gradient(315deg, rgba(255, 224, 102, 0.22), transparent 45%),
    #f6f5f3;
  color: #111;
}
.project-card__visual--klever {
  background:
    linear-gradient(135deg, rgba(99, 66, 244, 0.24), transparent 52%),
    linear-gradient(315deg, rgba(110, 231, 183, 0.28), transparent 45%),
    #f8f7f5;
  color: #111;
}
.project-card__mock-title,
.project-card__mock-line {
  position: relative;
  z-index: 2;
}
.project-card__mock-title {
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
}
.project-card__mock-line {
  width: min(62%, 420px);
  height: 10px;
  background: currentColor;
  opacity: 0.22;
}
.project-card__mock-line.is-short {
  width: min(38%, 260px);
  opacity: 0.14;
}
.project-card__hover-reveal {
  position: absolute;
  bottom: 20px;
  right: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffffeb;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 4;
  opacity: 0;
  transform: translateY(7px);
  transition:
    opacity 0.45s var(--ease-out-expo),
    transform 0.45s var(--ease-out-expo);
  pointer-events: none;
}
.project-card-slider:hover .project-card__hover-reveal {
  opacity: 1;
  transform: translateY(0);
}
.project-card__content {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 16px;
  width: 100%;
  padding: 24px 28px;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0;
}
@media (max-width: 768px) {
  .project-card__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-radius: 0;
  }
}
.project-card__info {
  grid-column: 1;
  grid-row: 2;
}
.project-card__tags {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  gap: 10px;
}
.project-card__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  background: transparent;
}
.project-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 600;
}
.project-card__subtitle {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.project-card-slider .project-card__overlay {
  background: #fffffff2;
  border-color: #ffffff0d;
}
.project-card-slider .project-card__title,
.project-card-slider .project-card__year {
  color: var(--text);
}
.project-card-slider .project-card__tag {
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: transparent;
}
.project-card__year {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  align-self: center;
  grid-column: 2;
  grid-row: 1 / 3;
}
@media (max-width: 768px) {
  .project-card__year {
    align-self: flex-start;
  }
}
.projects-slider__hint {
  width: 100%;
  text-align: center;
  margin-top: 60px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.5;
}
[data-theme="dark"] .project-card__content {
  background: #10100f;
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .project-card__tag,
[data-theme="dark"] .project-card-slider .project-card__tag {
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffffb8;
  background: #ffffff0d;
}

[data-theme="dark"] .project-card__title,
[data-theme="dark"] .project-card-slider .project-card__title,
[data-theme="dark"] .project-card-slider .project-card__year {
  color: #fff;
}

[data-theme="dark"] .project-card__subtitle {
  color: #ffffff9c;
}

[data-theme="dark"] .project-card__year,
[data-theme="dark"] .projects-slider__hint {
  color: #ffffff80;
}
@media (max-width: 768px) {
  .projects-slider__hint {
    margin-top: 14px;
  }
}
.cta-band {
  padding: var(--section-padding) var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 40px;
  border-top: 1px solid var(--border);
  position: relative;
}
.cta-band:after {
  content: "";
  height: 80px;
  width: 1px;
  position: absolute;
  left: 50%;
  bottom: 0;
  background: var(--border);
}
.cta-band p {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-muted);
}
.cta-band__label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.cta-band__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 6rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-transform: lowercase;
  font-weight: 600;
}
.cta-band__heading em {
  color: var(--accent);
  font-style: italic;
}
.btn-primary #mail-icon {
  height: 14px;
  width: auto;
}
.cta-band__email {
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.cta-band__email:hover {
  color: var(--accent);
}
.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 60px 60px;
  background: var(--bg-light);
}
.detail-hero__img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  transform-origin: center top;
}
.detail-hero__overlay {
  position: absolute;
  inset: 0;
}
.detail-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
  padding: 100px var(--gutter) 0px;
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  min-height: 70vh;
  background: #ffffff80;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.detail-body {
  position: relative;
  border-radius: 0 0 24px 24px;
}
.detail-body:after {
  content: "";
  height: 80px;
  width: 1px;
  position: absolute;
  left: 50%;
  bottom: 0;
  background: var(--accent);
}
.detail-hero__back {
  position: absolute;
  top: 40px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition:
    color 0.3s,
    gap 0.3s;
}
.detail-hero__back svg {
  margin-top: -3px;
}
.detail-hero__back:hover {
  color: var(--text);
  gap: 12px;
}
.detail-hero__tags {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.detail-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.8vw, 4.8rem);
  letter-spacing: -0.03em;
  line-height: 0.9;
  font-weight: 600;
  margin-bottom: 16px;
}
.detail-hero__subtitle {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-muted);
}
.detail-body {
  max-width: 2000px;
  margin: 0 auto;
  padding: 120px var(--gutter) 100px;
}
.detail-hero__stats {
  display: flex;
  gap: 0;
  margin: 40px 0 0;
  width: 100%;
}
.detail-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 48px;
}
.detail-hero__stat + .detail-hero__stat {
  padding-left: 48px;
  padding-right: 0;
}
.detail-hero__stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.detail-hero__stat-label {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--text-muted);
  max-width: 20ch;
}
.detail-meta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 120px;
  margin-top: 30px;
  padding: 30px 0 60px;
  border-top: 1px solid #505050;
}
.detail-meta__item strong {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 8px;
}
.detail-meta__item span {
  font-size: 0.875rem;
  color: var(--text);
}
.detail-meta__focus {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.detail-meta__item .focus-tag {
  display: inline-flex;
  font-size: 0.875rem;
  color: var(--text);
  transition:
    border-color 0.3s,
    color 0.3s,
    background 0.3s;
}
.detail-meta__focus .focus-tag:not(:last-child):after {
  content: "/";
  margin-left: 12px;
  color: var(--text-muted);
  opacity: 0.2;
  font-weight: 400;
}
.detail-meta__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.detail-section {
  margin-bottom: 160px;
  padding-bottom: 120px;
  border-bottom: 1px solid var(--border);
}
.detail-section:has(+ .detail-nav) {
  border-bottom: none;
}
.detail-section__top {
  display: grid;
  grid-template-columns: 420px minmax(0, 760px);
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
}
.detail-section__intro {
  position: sticky;
  top: 120px;
  align-self: start;
}
.detail-section__main {
  min-width: 0;
  padding-top: 32px;
}
.detail-section__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  max-width: 760px;
}
.detail-section__label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
  margin-bottom: 14px;
}
.detail-section__heading {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 3vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 12px;
  font-weight: 600;
  max-width: 100%;
}
.detail-section__subtitle {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 34ch;
}
.detail-section__text {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 760px;
}
.detail-section__text p {
  margin-bottom: 20px;
}
.detail-section__text p:last-child {
  margin-bottom: 0;
}
.detail-section__text strong {
  font-weight: 600;
}
.detail-section__list {
  padding: 8px 0 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--text-muted);
  max-width: 760px;
  font-size: 1.1rem;
  line-height: 1.75;
}
.detail-section__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.detail-section__stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 32px;
}
.detail-section__stat + .detail-section__stat {
  padding-left: 32px;
  padding-right: 0;
  border-left: 1px solid var(--border);
}
.detail-section__stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.detail-section__stat-label {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 22ch;
}
.detail-section__media {
  width: 100%;
  margin-top: 100px;
  padding-bottom: 40px;
}
.detail-section__image-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  align-items: stretch;
  margin-top: 0;
}
.detail-section__figure {
  margin: 0;
  width: 100%;
  min-width: 0;
  position: relative;
}
.detail-section__image-grid .detail-section__figure--span-1 {
  grid-column: span 1;
}
.detail-section__image-grid .detail-section__figure--span-2 {
  grid-column: span 2;
}
.detail-section__image-grid .detail-section__figure--span-3 {
  grid-column: span 3;
}
.detail-section__image-grid .detail-section__figure--span-4 {
  grid-column: span 4;
}
.detail-section__image-grid .detail-section__figure--span-5 {
  grid-column: span 5;
}
.detail-section__image-grid .detail-section__figure--span-6 {
  grid-column: span 6;
}
.detail-section__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  background: var(--surface);
  display: block;
}
.detail-section__caption {
  margin-top: 10px;
  text-align: left;
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-muted);
  position: static;
}
.detail-section__caption span {
  color: var(--text-muted);
  font-style: italic;
}
.detail-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 80px;
  border-top: 1px solid var(--border);
}
.detail-nav__label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
}
.detail-nav__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  transition: color 0.3s;
  font-weight: 600;
}
.detail-nav__link:hover .detail-nav__title {
  color: var(--text-muted);
}
@media (max-width: 1200px) {
  .detail-section__top {
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 48px;
  }
}
@media (max-width: 1024px) {
  .detail-section {
    margin-bottom: 88px;
    padding-bottom: 56px;
  }
  .detail-section__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .detail-section__intro {
    position: static;
  }
  .detail-section__subtitle,
  .detail-section__text,
  .detail-section__list,
  .detail-section__content {
    max-width: 100%;
  }
  .detail-section__media {
    margin-top: 40px;
  }
}
@media (max-width: 900px) {
  .detail-body {
    border-radius: 0;
  }
}
@media (max-width: 768px) {
  .detail-hero {
    padding: 80px 24px 20px;
  }
  .detail-hero__content {
    padding: 60px 24px 0;
  }
  .detail-body {
    padding: 60px 24px 80px;
  }
  .detail-hero__back {
    left: 24px;
    top: 24px;
  }
  .detail-meta {
    grid-template-columns: 1fr;
    gap: 24px 48px;
    flex-wrap: wrap;
    padding-top: 40px;
  }
  .detail-section__heading {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }
  .detail-section__image-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .detail-section__figure,
  .detail-section__figure--span-1,
  .detail-section__figure--span-2,
  .detail-section__figure--span-3,
  .detail-section__figure--span-4,
  .detail-section__figure--span-5,
  .detail-section__figure--span-6 {
    grid-column: 1 / -1;
  }
  .detail-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
@media (min-width: 768px) {
  .detail-section__caption {
    position: absolute;
  }
  .detail-section__img {
    height: 100%;
    object-fit: cover;
  }
}
.page-transition__overlay {
  position: fixed;
  inset: 0;
  background: var(--accent);
  z-index: 11000;
  transform-origin: bottom;
  pointer-events: none;
}
.reveal-wrap {
  overflow: hidden;
}
.reveal-inner {
  display: block;
  transform: translateY(100%);
  opacity: 0;
}
.cap-section {
  display: flex;
  flex-direction: column;
}
.cap-section__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: var(--section-padding) var(--gutter) 80px;
  border-bottom: 1px solid var(--border);
  align-items: end;
}
@media (max-width: 768px) {
  .cap-section__header {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 80px 24px 48px;
  }
}
.cap-section__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.cap-section__eyebrow:before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text-muted);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .cap-section__eyebrow:before {
    display: none;
  }
}
.cap-section__heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  letter-spacing: -0.04em;
  line-height: 1;
  font-weight: 600;
  text-transform: lowercase;
}
.cap-section__intro {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 480px;
  align-self: end;
}
@media (max-width: 768px) {
  .cap-section__heading {
    font-size: clamp(2.6rem, 13vw, 4.8rem);
  }
  .cap-section__intro {
    font-size: 1rem;
    line-height: 1.65;
  }
}
.cap-rows {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
}
.cap-row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr;
  gap: 40px;
  padding: 40px var(--gutter);
  border-top: 1px solid var(--border);
  align-items: center;
  transition: background 0.3s;
}
.cap-row:hover {
  background: #11111105;
}
@media (max-width: 768px) {
  .cap-row {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    gap: 12px 16px;
    padding: 28px 24px;
  }
  .cap-row__description {
    grid-column: 2;
  }
}
.cap-row__index {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  opacity: 0.5;
}
.cap-row__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.cap-row__description {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 520px;
}
.cap-accordion {
  border-bottom: 1px solid var(--border);
}
.cap-accordion__row {
  border-top: 1px solid var(--border);
  cursor: pointer;
  transition: background-color 0.25s ease;
  position: relative;
  isolation: isolate;
}
.cap-accordion__row:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s var(--ease-out-expo);
}
.cap-accordion__row:hover:before,
.cap-accordion__row:focus-within:before,
.cap-accordion__row.is-open:before {
  transform: scaleY(1);
}
.cap-accordion__row:hover,
.cap-accordion__row:focus-within,
.cap-accordion__row.is-open {
  background-color: color-mix(in srgb, var(--text) 3.5%, transparent);
}
.cap-accordion__header {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 24px;
  padding: 80px var(--gutter);
  align-items: center;
}
.cap-accordion__header:focus-visible {
  outline: 1px solid color-mix(in srgb, var(--accent) 72%, transparent);
  outline-offset: -1px;
  background-color: color-mix(in srgb, var(--accent) 5%, transparent);
}
@media (max-width: 768px) {
  .cap-accordion__header {
    grid-template-columns: minmax(0, 1fr) 36px;
    grid-template-rows: auto auto auto;
    gap: 14px 12px;
    padding: 30px 24px;
  }
  .cap-accordion__icon svg {
    width: 20px;
    height: 20px;
  }
}
.cap-accordion__index {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  opacity: 0.4;
  font-variant-numeric: tabular-nums;
}
.cap-accordion__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  min-width: 0;
}
.cap-accordion__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cap-accordion__tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 100px;
  white-space: nowrap;
}
.cap-accordion__toggle {
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--text) 2%, transparent);
  transition:
    color 0.2s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.3s var(--ease-out-expo);
}
.cap-accordion__toggle svg {
  transition: transform 0.4s var(--ease-out-expo);
}
.cap-accordion__row:hover .cap-accordion__toggle,
.cap-accordion__header:focus-visible .cap-accordion__toggle {
  color: var(--text);
  border-color: color-mix(in srgb, var(--text) 24%, transparent);
  background-color: color-mix(in srgb, var(--text) 4%, transparent);
}
.cap-accordion__row.is-open .cap-accordion__toggle {
  color: #111111;
  border-color: color-mix(in srgb, var(--accent) 72%, transparent);
  background-color: var(--accent);
}
.cap-accordion__row.is-open .cap-accordion__toggle svg {
  transform: rotate(45deg);
}
.cap-accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  max-height: none;
  opacity: 0;
  overflow: hidden;
  transition:
    grid-template-rows 0.45s var(--ease-out-expo),
    opacity 0.22s ease;
}
.cap-accordion__body > * {
  min-height: 0;
  overflow: hidden;
}
.cap-accordion__row.is-open .cap-accordion__body {
  grid-template-rows: 1fr;
  opacity: 1;
}
.cap-accordion__description {
  padding: 0 var(--gutter) 40px calc(80px + 24px + var(--gutter));
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 680px;
}
@media (max-width: 768px) {
  .cap-accordion__index {
    grid-column: 1 / -1;
    grid-row: 1;
    padding-top: 0;
  }
  .cap-accordion__title {
    grid-column: 1;
    grid-row: 2;
    font-size: clamp(1.55rem, 7vw, 2.25rem);
    line-height: 1;
  }
  .cap-accordion__tags {
    grid-column: 1;
    grid-row: 3;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
  }
  .cap-accordion__tag {
    font-size: 0.62rem;
    padding: 5px 10px;
    letter-spacing: 0.08em;
  }
  .cap-accordion__toggle {
    grid-column: 2;
    grid-row: 2 / 4;
    width: 36px;
    height: 36px;
    align-self: center;
  }
  .cap-accordion__description {
    padding: 0 24px 32px;
    font-size: 1rem;
    line-height: 1.65;
  }
}
@media (max-width: 420px) {
  .cap-accordion__header {
    grid-template-columns: minmax(0, 1fr) 36px;
    gap: 14px 12px;
    padding: 26px 20px;
  }
  .cap-accordion__description {
    padding: 0 20px 30px;
  }
}
.section:has(.gravity-section-wrapper) {
  min-height: 60vh;
}
.gravity-section-wrapper {
  padding: 0 var(--gutter) 16px;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 60vh;
}
@media (max-width: 1024px) {
  .gravity-section-wrapper {
    padding: var(--section-padding) var(--gutter) 16px;
  }
}
@media (max-width: 768px) {
  .gravity-section-wrapper {
    padding: 0 var(--gutter) 16px;
  }
}
.gravity-section__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 40px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .gravity-section__header {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
  }
}
.gravity-section__label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.gravity-section__hint {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.cap-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  background: var(--border);
  border: 1px solid var(--border);
  overflow: hidden;
}
.cap-pillar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px;
  background: var(--bg-mid);
  border-radius: 0;
  border-right: 1px solid var(--border);
}
.cap-pillar:first-child {
  border-radius: 0;
}
.cap-pillar:last-child {
  border-radius: 0;
  border-right: none;
}
.cap-pillar:nth-child(2) {
  border-radius: 0;
}
@media (min-width: 1440px) {
  .cap-pillar {
    padding: 80px;
  }
}
.cap-pillar__index {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.5;
  font-family: var(--font-sans);
}
.cap-pillar__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text);
}
.cap-pillar__body {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 400;
}
@media (max-width: 1280px) {
  .cap-pillar {
    padding: 48px;
  }
}
@media (max-width: 1024px) {
  .cap-pillars {
    grid-template-columns: 1fr 1fr;
  }
  .cap-pillar {
    padding: 40px 32px;
  }
  .cap-pillar:first-child {
    padding-left: 0;
    padding-right: 32px;
  }
  .cap-pillar:last-child {
    padding-right: 0;
    padding-left: 32px;
  }
  .cap-pillar__title {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  }
  .cap-pillar__body {
    max-width: 100%;
    font-size: 0.95rem;
  }
}
@media (max-width: 640px) {
  .cap-pillars {
    grid-template-columns: 1fr;
    gap: 1px;
    margin-bottom: 0;
    border-radius: 20px;
  }
  .cap-pillar {
    padding: 28px;
    grid-column: auto;
  }
  .cap-pillar:first-child,
  .cap-pillar:last-child {
    border-radius: 20px;
    padding-left: 28px;
    padding-right: 28px;
  }
  .cap-pillar__title {
    font-size: 1.2rem;
  }
  .cap-pillar__body {
    font-size: 0.95rem;
  }
}
.gravity-tags {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 640px;
  padding-bottom: 5px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .gravity-tags {
    min-height: 860px;
  }
}
.gtag-bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  padding: 120px 0 40px;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  z-index: 0;
  gap: 24px;
}
.gtag-bg-text p {
  font-size: clamp(1.1rem, 3vw, 1.1rem);
  line-height: 1.6;
  color: var(--text);
  white-space: pre-line;
  max-width: 600px;
}
@media (max-width: 768px) {
  .gtag-bg-text {
    padding: 72px 0 24px;
    gap: 16px;
  }
}
.gtag-pill {
  position: absolute;
  top: 0;
  left: 0;
  height: 117px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 68px;
  border-radius: 100px;
  border: 3px solid rgba(200, 255, 0, 1);
  background: #c8ff001a;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  pointer-events: none;
  will-change: transform;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
  transform-origin: center center;
  -webkit-user-select: none;
  user-select: none;
}
.gtag-pill--strategy {
  border: 3px solid rgba(45, 44, 40, 0.82);
  background: #2d2c281a;
}
.gtag-pill--design {
  border: 3px solid rgba(200, 255, 0, 1);
  background: #c8ff001a;
}
.gtag-pill--systems {
  border: 3px solid rgba(0, 181, 173, 1);
  background: #00b5ad1a;
}
.gtag-pill--engineering,
.gtag-pill--tech {
  border: 3px solid rgba(99, 66, 244, 1);
  background: #6342f41a;
}
.gtag-pill:active {
  cursor: grabbing;
  filter: brightness(0.95);
}
@media (max-width: 768px) {
  .gtag-pill {
    height: 54px;
    padding: 0 24px;
    font-size: 12px;
  }
}
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--footer-h);
  background: #10100f;
  color: #fff;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  min-height: 100vh;
}
.footer__marquee {
  width: 100%;
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ffffff47;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.marquee__content {
  display: flex;
  width: max-content;
  min-width: 200%;
  will-change: transform;
  animation: marquee 28s linear infinite;
}
.marquee__content span {
  display: inline-flex;
  flex: 0 0 auto;
  min-width: 50%;
  padding-right: 32px;
}
@keyframes marquee {
  0% {
    transform: translateZ(0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
.footer:after {
  content: "";
  height: 350px;
  width: 1px;
  position: absolute;
  left: 50%;
  top: 0;
  background: #ffffff1a;
}
.footer__col p {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.2vw, 6.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: lowercase;
}
.footer__col p + p {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 24px;
  text-transform: none;
  font-weight: 400;
}
.footer__col p strong {
  font-weight: 600;
}
.footer h3 {
  font-size: clamp(240px, 24vw, 500px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.04em;
  padding-right: 0.04em; /* Offset for negative letter-spacing to fix centering */
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff0;
  display: flex;
}
.footer__title:hover .footer__char {
  filter: blur(20px);
  opacity: 0.1;
  color: #ffffff05;
}
.footer__char {
  transition:
    filter 0.3s ease,
    opacity 0.3s ease,
    color 0.3s ease;
  will-change: filter, opacity, color;
  cursor: pointer;
}
.footer__title .footer__char:hover {
  filter: blur(0px);
  opacity: 0.3;
  color: #ffffff1a;
}
.footer__title .footer__char:hover + .footer__char,
.footer__title .footer__char:has(+ .footer__char:hover) {
  filter: blur(4px);
  opacity: 0.2;
  color: #ffffff0d;
}
.footer__title .footer__char:hover + .footer__char + .footer__char,
.footer__title .footer__char:has(+ .footer__char + .footer__char:hover) {
  filter: blur(10px);
  opacity: 0.1;
  color: #ffffff05;
}
.footer__container {
  width: 100%;
  max-width: 2000px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.footer__top {
  display: flex;
  justify-content: center;
  padding-top: 200px;
  gap: 80px;
  padding-left: 60px;
  padding-right: 60px;
  min-height: calc(90vh - 100px);
}
.footer__col {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: 60px;
  width: 50%;
}
.footer__col + .footer__col {
  align-items: flex-end;
}
.footer__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 40px;
  text-align: center;
  display: block;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.footer__links li {
  display: flex;
  flex-direction: column;
}
.footer__links a {
  color: #fff;
  transition: color 0.3s;
  font-weight: 600;
  position: relative;
}
a.footer__link_social {
  padding-right: 0;
  transition:
    color 0.3s ease-in-out,
    padding-right 0.3s ease-in-out;
}
a.footer__link_social:hover {
  padding-right: 20px;
}
.footer__link_social svg {
  position: absolute;
  opacity: 0;
  right: 5px;
  top: 5px;
  transition:
    opacity 0.3s ease-in-out,
    right 0.3s ease-in-out;
}
.footer__link_social:hover svg {
  opacity: 1;
  right: 0;
}
.footer__links b.old {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 600;
  text-transform: lowercase;
  position: absolute;
  bottom: -12px;
  right: 0;
}
.footer__links a {
  font-size: 1.4vw;
  font-weight: 600;
}
.footer__links a:hover {
  color: #fff;
}
.footer__email-wrapper {
  position: relative;
  display: inline-block;
}
.footer__email {
  font-size: 1.4vw;
  font-weight: 600;
  color: #fff;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition:
    color 0.3s,
    transform 0.3s;
}
.footer__arrow {
  color: #6342f4;
  font-weight: 600;
}
.email-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 12px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 140px;
  box-shadow: 0 10px 30px #00000080;
  z-index: 10;
  animation: dropdownFadeIn 0.2s ease-out forwards;
}
@keyframes dropdownFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer__links a.email-dropdown__item,
.email-dropdown__item {
  background: transparent;
  border: none;
  color: #ffffffb3;
  font-family: inherit;
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 8px 12px;
  text-align: left;
  border-radius: 6px;
  transition:
    background 0.2s,
    color 0.2s;
  text-decoration: none;
  display: block;
  width: 100%;
  cursor: pointer;
}
.footer__links a.email-dropdown__item,
a.email-dropdown__item {
  font-size: 0.9rem;
  font-weight: 400;
}
.email-dropdown__item:hover {
  background: #ffffff14;
  color: #fff;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #ffffff4d;
  position: relative;
  padding: 40px 60px;
}
.footer__microcopy {
  display: flex;
  justify-content: space-between;
  padding: 0 68px;
}
.footer__bottom:before {
  content: "";
  display: block;
  height: 32px;
  width: 1px;
  position: absolute;
  left: 60px;
  top: -16px;
  background-color: #ffffff1a;
}
.footer__bottom:after {
  content: "";
  display: block;
  height: 32px;
  width: 1px;
  position: absolute;
  right: 60px;
  top: -16px;
  background-color: #ffffff1a;
}
.footer__back-to-top {
  cursor: pointer;
  transition: color 0.3s;
}
.footer__back-to-top:hover {
  color: #fff;
}
.footer__logo-container {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__logo {
  height: 42px;
  width: auto;
  opacity: 1;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.footer__logo-container:hover .footer__logo {
  opacity: 0.6;
  transform: rotate(-8deg);
}
.footer__tooltip {
  position: absolute;
  bottom: 200%;
  left: 50%;
  transform: translate(-50%) translateY(10px);
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.3s,
    transform 0.3s;
  z-index: 300;
}
.footer__logo-container:hover .footer__tooltip {
  opacity: 1;
  transform: translate(-50%) translateY(0);
  animation: tooltipVanish 0.2s forwards 2.8s;
}
@keyframes tooltipVanish {
  to {
    opacity: 0;
    transform: translate(-50%) translateY(-10px);
  }
}
@media (max-width: 1024px) {
  .footer__top {
    padding: 100px 24px;
  }
  .footer__microcopy {
    padding: 0 32px;
  }
  .footer__bottom {
    padding-left: 24px;
    padding-right: 24px;
  }
  .footer__bottom:before {
    left: 24px;
  }
  .footer__bottom:after {
    right: 24px;
  }
}
@media (max-width: 900px) {
  :root {
    --footer-h: auto;
  }
  .footer {
    position: relative;
    height: auto;
    padding: 100px 24px;
  }
  .page-wrap {
    margin-bottom: 0;
    border-radius: 0;
    border: none;
  }
  .footer__top {
    flex-direction: column;
    gap: 60px;
    padding-top: 100px;
    min-height: auto;
  }
  .footer__col {
    width: 100%;
    padding-bottom: 0;
  }
  .footer__col + .footer__col {
    align-items: flex-start;
  }
  .footer__col p {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
  .footer__links {
    align-items: flex-end;
  }
  .footer__links a,
  .footer__email {
    font-size: 1.5rem;
  }
  .footer__microcopy {
    flex-direction: row;
    gap: 16px;
    margin-top: 80px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }
  .footer__logo-container {
    position: static;
    transform: none;
    order: 2;
  }
  .footer__copyright {
    order: 1;
  }
  .footer__back-to-top {
    order: 3;
  }
  .footer__title {
    font-size: clamp(3rem, 15vw, 6rem) !important;
  }
}
@media (max-width: 480px) {
  .footer:after {
    height: 150px;
  }
  .footer__col p {
    text-align: center;
  }
  .footer__links {
    margin-top: 20px;
    align-items: center;
  }
  .footer__col,
  .footer__col + .footer__col {
    align-items: center;
  }
  .footer__microcopy {
    margin-top: 80px;
    flex-direction: column;
    padding-bottom: 40px;
  }
  .footer__label {
    margin-bottom: 0;
  }
}
.not-found {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--bg-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 40px 40px;
}
.not-found__simulation {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: auto;
}
.not-found__digit {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--surface);
  opacity: 0.1;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  will-change: transform;
}
.not-found__content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 500px;
  padding: 40px;
  pointer-events: none;
}
.not-found__content * {
  pointer-events: auto;
}
.not-found__title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}
.not-found__text {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.5;
}
.not-found__text + .not-found__text {
  margin-bottom: 40px;
}
.not-found__cta {
  display: inline-block;
}
@media (max-width: 768px) {
  .not-found {
    height: 85vh;
  }
  .not-found__digit {
    opacity: 0;
  }
}
@media (max-width: 768px) {
  :root {
    --section-padding: 72px;
    --mobile-section-y: 64px;
    --mobile-section-y-lg: 80px;
  }
  .projects-slider-section {
    margin-top: 0;
    padding: 0 0 56px;
  }
  .projects-slider__header {
    gap: 32px;
    padding: var(--mobile-section-y-lg) var(--gutter) 36px;
  }
  .projects-swiper {
    padding: 28px 0 20px !important;
  }
  .projects-slider__hint {
    margin-top: 8px;
  }
  .about__photo-wrap {
    margin: 24px var(--gutter) 24px;
    width: calc(100% - (var(--gutter) * 2));
  }
  .about__content {
    padding: 56px var(--gutter) var(--mobile-section-y-lg);
  }
  .cap-section__header {
    gap: 24px;
    padding: var(--mobile-section-y-lg) var(--gutter) 36px;
  }
  .cap-accordion__header {
    padding: 26px var(--gutter);
  }
  .cap-accordion__description {
    padding: 0 var(--gutter) 28px;
  }
  .gravity-section-wrapper {
    padding: 0 var(--gutter) 24px;
    min-height: auto;
  }
  .gravity-tags {
    min-height: 740px;
  }
  .gtag-bg-text {
    padding: 80px 0 32px;
  }
  .gtag-bg-text p {
    max-width: 28ch;
  }
}
@media (max-width: 900px) {
  .footer {
    padding: 0 24px 56px;
  }
  .footer__top {
    gap: 48px;
    padding: 180px 0 48px;
  }
  .footer__microcopy {
    margin-top: 56px;
  }
}
@media (max-width: 480px) {
  .footer__links {
    margin-top: 12px;
  }
  .footer__microcopy {
    margin-top: 56px;
    padding-bottom: 32px;
  }
}
:root {
  --swiper-theme-color: #007aff;
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translateZ(0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-slides-offset-before);
  scroll-margin-inline-start: var(--swiper-slides-offset-before);
}
.swiper-css-mode.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:last-child {
  margin-inline-end: var(--swiper-slides-offset-after);
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-slides-offset-before);
  scroll-margin-block-start: var(--swiper-slides-offset-before);
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper > .swiper-slide:last-child {
  margin-block-end: var(--swiper-slides-offset-after);
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: #00000026;
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, #00000080, #0000);
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, #00000080, #0000);
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, #00000080, #0000);
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, #00000080, #0000);
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
:is(
    .swiper:not(.swiper-watch-progress),
    .swiper-watch-progress .swiper-slide-visible
  )
  .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.theme-toggle {
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0.7;
  position: relative;
  width: 24px;
  height: 24px;
}
.theme-toggle:hover {
  opacity: 1;
  transform: scale(1.1);
}
.theme-toggle svg {
  position: absolute;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}
html[data-theme="light"] .sun-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0.3);
}
html[data-theme="light"] .moon-icon {
  opacity: 1;
  transform: rotate(0) scale(1);
}
html[data-theme="dark"] .sun-icon {
  opacity: 1;
  transform: rotate(0) scale(1);
}
html[data-theme="dark"] .moon-icon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.3);
}

/* Production cleanup overrides */
html {
  scroll-padding-top: var(--nav-h);
}

body,
a,
button {
  cursor: auto;
}

button,
a {
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 10000;
  padding: 10px 14px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: relative;
  z-index: 300;
}

.has-custom-cursor,
.has-custom-cursor a,
.has-custom-cursor button {
  cursor: none;
}

.cursor-ring {
  opacity: 0;
}

.has-custom-cursor .cursor-ring {
  opacity: 1;
}

.mobile-theme-toggle {
  background: transparent;
  border: 0;
  color: inherit;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  padding: 0;
}

.magnetic-wrap {
  display: inline-block;
}

.project-card__visual {
  aspect-ratio: 16 / 10;
}

.cap-accordion__header {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.cap-accordion__title {
  display: block;
}

.cap-accordion__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer__back-to-top {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.footer__email {
  text-decoration: none;
}

@media (min-width: 901px) {
  .page-wrap {
    margin-bottom: var(--footer-h);
  }

  .service-page .page-wrap {
    margin-bottom: 0;
  }

  .footer {
    position: fixed;
    z-index: 1;
  }
}

@media (max-width: 900px) {
  .page-wrap {
    margin-bottom: 0;
  }

  .footer {
    position: relative;
    z-index: 2;
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s var(--ease-out-expo),
    transform 0.7s var(--ease-out-expo);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .cursor-ring,
  .cursor-label {
    display: none;
  }
}

@media (pointer: coarse) {
  .cursor-ring,
  .cursor-label {
    display: none;
  }
}

@media (max-width: 900px) {
  .cursor-ring,
  .cursor-label {
    display: none;
  }
}

@media (max-width: 768px) {
  .projects-slider-section {
    padding: 0 0 72px;
  }

  .projects-slider__container {
    padding: 0 24px;
  }

  .projects-swiper {
    overflow: visible !important;
    padding: 24px 0 !important;
  }

  .swiper-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    width: 100%;
    transform: none !important;
  }

  .projects-swiper__slide {
    width: 100% !important;
  }

  .project-card-slider {
    overflow: hidden;
    border: 1px solid var(--border);
  }

  .project-card__content {
    padding: 24px;
  }

  .projects-slider__hint {
    display: none;
  }
}

/* BitCrafts conversion content layer */
.hero__cta-stack {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  transition: color 0.25s ease;
}

.btn-secondary:hover {
  color: var(--text);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
  padding: var(--section-padding) var(--gutter);
}

.section-kicker {
  align-self: start;
  position: sticky;
  top: calc(var(--nav-h) + 40px);
}

.intro-grid__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.intent-card {
  min-height: 310px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
  transition:
    background 0.25s ease,
    transform 0.25s var(--ease-out-expo);
}

.intent-card:hover {
  background: var(--accent-dim);
  transform: translateY(-2px);
}

.intent-card__index,
.process-step__number {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  opacity: 0.55;
  font-variant-numeric: tabular-nums;
}

.intent-card h3,
.process-steps h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--text);
}

.intent-card p,
.process-steps p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.split-feature {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 76vh;
}

.split-feature__panel {
  padding: var(--section-padding) var(--gutter);
  border-right: 1px solid var(--border);
  background:
    linear-gradient(135deg, var(--accent-dim), transparent 58%),
    var(--bg-light);
}

.split-feature--dark .split-feature__panel {
  background:
    linear-gradient(135deg, rgba(99, 66, 244, 0.14), transparent 58%),
    var(--bg-light);
}

.split-feature__title {
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-weight: 600;
  text-transform: lowercase;
  color: var(--text);
}

.split-feature__content {
  padding: var(--section-padding) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
}

.split-feature__content > p {
  max-width: 720px;
  color: var(--text-muted);
  font-size: clamp(1.1rem, 1.55vw, 1.45rem);
  line-height: 1.65;
}

.split-feature__link {
  align-self: flex-start;
}

.feature-list {
  display: grid;
  gap: 0;
  list-style: none;
  border-top: 1px solid var(--border);
  max-width: 760px;
}

.feature-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
}

.feature-list li:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 14px;
  background: var(--accent);
  vertical-align: 1px;
}

.advantage-band {
  padding: var(--section-padding) var(--gutter);
  background: #10100f;
  color: #fff;
}

.advantage-band .cap-section__eyebrow {
  color: #ffffff8a;
}

.advantage-band .cap-section__eyebrow:before {
  background: #ffffff8a;
}

.advantage-band h2 {
  max-width: 1100px;
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7.2vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 600;
  text-transform: lowercase;
}

.advantage-band p {
  max-width: 760px;
  margin-top: 48px;
  color: #ffffffb3;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.75;
}

.process-section__header {
  padding-bottom: 64px;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  list-style: none;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 53px;
  left: 53px;
  right: 53px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--accent) 42%, var(--border)),
    transparent
  );
  opacity: 0.58;
  pointer-events: none;
}

.process-step {
  position: relative;
  z-index: 1;
  min-height: clamp(310px, 24vw, 360px);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  isolation: isolate;
  border-right: 1px solid var(--border);
}

.process-step:last-child {
  border-right: 0;
}

.process-steps h3 {
  margin-top: auto;
}

.offers-section,
.faq-section {
  padding: var(--section-padding) var(--gutter);
}

.offers-section__header,
.faq-section__header {
  padding-bottom: 64px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.offer-card {
  min-height: 420px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
}

.offer-card__label {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-card h3 {
  margin-top: auto;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 2.25rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.offer-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

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

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

.faq-list summary {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--text);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.1vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary:after {
  content: "+";
  flex: 0 0 auto;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 400;
}

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

.faq-list p {
  max-width: 820px;
  padding: 0 0 32px;
  color: var(--text-muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.service-page .page-wrap {
  background: var(--bg);
}

.service-hero {
  min-height: 86vh;
  padding: calc(var(--nav-h) + 76px) var(--gutter) 80px;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: 80px;
  align-items: end;
  border-bottom: 1px solid var(--border);
}

.service-hero__content {
  max-width: 1180px;
}

.service-hero__title {
  margin-top: 28px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 12rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
  font-weight: 600;
  text-transform: lowercase;
}

.service-hero__text {
  max-width: 740px;
  margin-top: 42px;
  color: var(--text-muted);
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  line-height: 1.7;
}

.service-hero__aside {
  padding: 28px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.018);
}

.service-hero__aside h2 {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.service-hero__aside p {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.service-hero__cta {
  margin-top: 28px;
}

.service-section {
  padding: var(--section-padding) var(--gutter);
}

.service-section__header {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  padding-bottom: 64px;
}

.service-section__title {
  margin-top: 26px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.2vw, 7rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 600;
  text-transform: lowercase;
}

.service-section__intro {
  align-self: end;
  max-width: 760px;
  color: var(--text-muted);
  font-size: clamp(1.04rem, 1.35vw, 1.25rem);
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.service-tile {
  min-height: 310px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.service-tile span {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-tile h3 {
  margin-top: auto;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 2.25rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.service-tile p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.service-band {
  padding: var(--section-padding) var(--gutter);
  background: #10100f;
  color: #fff;
}

.service-band h2 {
  max-width: 980px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 600;
  text-transform: lowercase;
}

.service-band p {
  max-width: 760px;
  margin-top: 42px;
  color: #ffffffb3;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.75;
}

.service-cta {
  padding: var(--section-padding) var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  border-top: 1px solid var(--border);
}

.service-cta h2 {
  max-width: 1000px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 600;
  text-transform: lowercase;
}

.service-cta p {
  max-width: 700px;
  margin-top: 32px;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  padding: var(--section-padding) var(--gutter);
}

.contact-section__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-section__content h2 {
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.8vw, 7.4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 600;
  text-transform: lowercase;
}

.contact-section__content p {
  max-width: 620px;
  margin-top: 36px;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.contact-section__offers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.contact-section__offers span {
  display: inline-flex;
  padding: 8px 14px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-self: start;
  padding: 32px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lead-form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form label span {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  padding: 16px;
  outline: 0;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.lead-form textarea {
  resize: vertical;
  min-height: 150px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.lead-form__wide,
.lead-form__submit,
.lead-form__status,
.lead-form__note {
  grid-column: 1 / -1;
}

.lead-form__submit {
  justify-content: center;
  border: 0;
}

.lead-form__note {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.lead-form__status {
  min-height: 1.4em;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.lead-form__status[data-tone="success"] {
  color: #4d9b68;
}

.lead-form__status[data-tone="error"] {
  color: #d15b4f;
}

.lead-form__submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

@media (max-width: 1100px) {
  .intro-grid,
  .split-feature,
  .service-hero,
  .service-section__header,
  .service-cta,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section-kicker {
    position: static;
  }

  .split-feature__panel {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 80px;
  }

  .split-feature__content {
    padding-top: 80px;
  }

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

  .process-steps::before {
    display: none;
  }

  .process-step:nth-child(odd):not(:last-child)::after {
    content: "";
    position: absolute;
    top: 53px;
    left: 53px;
    right: -1px;
    height: 1px;
    background: linear-gradient(
      90deg,
      color-mix(in srgb, var(--accent) 45%, var(--border)),
      transparent
    );
    opacity: 0.44;
    pointer-events: none;
  }

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

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

  .process-step:nth-child(2n) {
    border-right: 0;
  }

  .process-step:last-child {
    grid-column: 1 / -1;
    min-height: 260px;
    border-right: 0;
  }
}

@media (max-width: 768px) {
  .hero__cta-stack {
    align-items: flex-start;
  }

  .intro-grid,
  .split-feature__panel,
  .split-feature__content,
  .advantage-band,
  .offers-section,
  .faq-section,
  .service-hero,
  .service-section,
  .service-band,
  .service-cta,
  .contact-section {
    padding: var(--mobile-section-y-lg) var(--gutter);
  }

  .intro-grid__cards,
  .process-steps,
  .offer-grid,
  .service-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .process-steps::before {
    display: block;
    top: 47px;
    bottom: 47px;
    left: calc(var(--gutter) + 21px);
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(
      180deg,
      color-mix(in srgb, var(--accent) 44%, transparent),
      color-mix(in srgb, var(--accent) 22%, transparent)
    );
  }

  .process-step:nth-child(odd):not(:last-child)::after {
    display: none;
  }

  .intent-card,
  .process-step,
  .offer-card,
  .service-tile {
    min-height: 0;
    padding: 26px var(--gutter);
  }

  .process-step,
  .process-step:nth-child(2n),
  .offer-card,
  .service-tile {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .process-step:last-child,
  .offer-card:last-child,
  .service-tile:last-child {
    border-bottom: 0;
  }

  .faq-list summary {
    min-height: 80px;
  }

  .lead-form {
    padding: 24px;
  }
}

/* Conservative UI polish pass */
:root {
  --section-padding: clamp(128px, 10vw, 180px);
  --focus-ring: 0 0 0 3px rgba(110, 231, 183, 0.3);
}

html,
body {
  scrollbar-width: auto;
}

::-webkit-scrollbar {
  display: block;
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--text) 28%, transparent);
  border: 3px solid var(--bg-mid);
}

::-webkit-scrollbar-track {
  background: var(--bg-mid);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
.lead-form input:focus-visible,
.lead-form select:focus-visible,
.lead-form textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  box-shadow: var(--focus-ring);
}

.btn-primary,
.btn-secondary,
.theme-toggle,
.navbar__toggle,
.footer__back-to-top,
.cap-accordion__header,
.faq-list summary {
  -webkit-tap-highlight-color: transparent;
}

.btn-primary:active,
.btn-secondary:active,
.footer__back-to-top:active {
  transform: translateY(0);
}

.theme-toggle {
  min-width: 36px;
  min-height: 36px;
}

.navbar__mobile-overlay {
  overscroll-behavior: contain;
}

.menu-open {
  overflow: hidden;
}

.projects-slider__container {
  cursor: grab;
}

.projects-slider__container:active {
  cursor: grabbing;
}

.projects-slider__hint {
  display: inline-flex;
  width: auto;
  margin-left: 50%;
  padding: 9px 14px;
  transform: translateX(-50%);
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg-mid) 82%, transparent);
  opacity: 0.72;
}

.intent-card,
.offer-card,
.service-tile,
.process-step {
  justify-content: flex-start;
}

.intent-card h3,
.offer-card h3,
.service-tile h3,
.process-steps h3 {
  margin-top: auto;
}

.intent-card p,
.offer-card p,
.service-tile p,
.process-steps p,
.faq-list p,
.lead-form__note {
  text-wrap: pretty;
}

.process-section__header,
.offers-section__header,
.faq-section__header,
.service-section__header {
  padding-bottom: clamp(44px, 5vw, 64px);
}

.faq-list summary {
  padding: 8px 0;
}

.faq-list summary:after {
  line-height: 1;
}

.lead-form {
  gap: 20px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  min-height: 54px;
  background: color-mix(in srgb, var(--bg-light) 45%, transparent);
}

.lead-form textarea {
  line-height: 1.55;
}

.lead-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: color-mix(in srgb, var(--text-muted) 72%, transparent);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, var(--bg-light));
}

.lead-form__submit {
  min-height: 56px;
  margin-top: 4px;
}

.lead-form__note {
  max-width: 58ch;
  margin-top: -4px;
}

@media (max-width: 1100px) {
  .contact-section,
  .intro-grid {
    gap: 48px;
  }

  .service-hero {
    align-items: start;
    gap: 44px;
  }

  .service-hero__aside {
    max-width: 680px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 72px;
    --mobile-section-y: 60px;
    --mobile-section-y-lg: 68px;
    --gutter: 22px;
  }

  .navbar {
    min-height: var(--nav-h);
  }

  .navbar__mobile-overlay {
    padding: calc(var(--nav-h) + 42px) var(--gutter) 32px;
  }

  .navbar__mobile-links {
    gap: 24px;
  }

  .navbar__mobile-links a {
    font-size: clamp(2.35rem, 12vw, 3rem);
    line-height: 0.98;
  }

  .hero {
    min-height: 92svh;
  }

  .hero__title-wrap {
    padding: calc(var(--nav-h) + 54px) var(--gutter) 26px;
    justify-content: end;
  }

  .hero__eyebrow {
    margin-bottom: 18px;
    letter-spacing: 0.12em;
  }

  .hero__title {
    font-size: clamp(3.35rem, 15.4vw, 5.45rem);
    line-height: 0.95;
    letter-spacing: -0.045em;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .hero__bottom {
    gap: 18px;
    padding: 22px var(--gutter) 24px;
  }

  .hero__tagline {
    max-width: 34rem;
    line-height: 1.6;
  }

  .hero__cta-stack {
    gap: 14px 18px;
  }

  .btn-primary {
    min-height: 52px;
    padding: 15px 22px;
    justify-content: center;
  }

  .btn-secondary {
    min-height: 44px;
  }

  .intro-grid,
  .split-feature__panel,
  .split-feature__content,
  .advantage-band,
  .offers-section,
  .faq-section,
  .service-hero,
  .service-section,
  .service-band,
  .service-cta,
  .contact-section {
    padding: var(--mobile-section-y-lg) var(--gutter);
  }

  .intro-grid,
  .contact-section {
    gap: 36px;
  }

  .split-feature {
    min-height: 0;
  }

  .split-feature__panel {
    padding-bottom: 52px;
  }

  .split-feature__content {
    padding-top: 52px;
    gap: 28px;
  }

  .split-feature__title,
  .advantage-band h2,
  .service-band h2,
  .service-cta h2,
  .contact-section__content h2,
  .service-section__title {
    letter-spacing: -0.045em;
  }

  .advantage-band p,
  .service-band p {
    margin-top: 30px;
  }

  .projects-slider-section {
    margin-top: 0;
    padding-bottom: 56px;
  }

  .projects-slider__header,
  .cap-section__header {
    gap: 22px;
    padding: var(--mobile-section-y-lg) var(--gutter) 32px;
  }

  .projects-slider__container {
    padding: 0 var(--gutter);
  }

  .projects-swiper {
    padding: 18px 0 8px !important;
  }

  .projects-slider__hint {
    display: none;
  }

  .swiper-wrapper {
    gap: 20px;
  }

  .project-card__visual {
    aspect-ratio: 4 / 3.25;
    padding: 22px;
  }

  .project-card__content {
    padding: 20px;
  }

  .about__photo-wrap {
    margin: 22px var(--gutter);
    width: calc(100% - (var(--gutter) * 2));
  }

  .about__mark {
    min-height: 0;
    height: 100%;
    font-size: clamp(5rem, 34vw, 9rem);
  }

  .about__content {
    padding: 52px var(--gutter) var(--mobile-section-y-lg);
  }

  .cap-accordion__header {
    padding: 24px var(--gutter);
  }

  .cap-accordion__description {
    padding: 0 var(--gutter) 28px;
  }

  .process-section__header,
  .offers-section__header,
  .faq-section__header,
  .service-section__header {
    padding-bottom: 32px;
  }

  .intent-card,
  .process-step,
  .offer-card,
  .service-tile {
    padding: 24px var(--gutter);
    gap: 18px;
  }

  .process-step {
    min-height: 210px;
  }

  .offer-card {
    min-height: 0;
  }

  .faq-list summary {
    min-height: 72px;
    gap: 18px;
    padding: 18px 0;
  }

  .faq-list p {
    padding-bottom: 26px;
  }

  .service-hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + 50px);
  }

  .service-hero__title {
    font-size: clamp(3.05rem, 15vw, 5.7rem);
    line-height: 0.92;
    letter-spacing: -0.052em;
    text-wrap: balance;
  }

  .service-hero__text {
    margin-top: 28px;
    line-height: 1.6;
  }

  .service-hero__aside {
    padding: 24px;
  }

  .service-grid {
    border-left: 0;
  }

  .contact-section__content p {
    margin-top: 26px;
    line-height: 1.65;
  }

  .contact-section__offers {
    margin-top: 26px;
    gap: 8px;
  }

  .contact-section__offers span {
    padding: 8px 10px;
    letter-spacing: 0.06em;
  }

  .lead-form {
    gap: 16px;
    padding: 22px;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    font-size: 1rem;
    padding: 15px;
  }

  .footer {
    padding: 0 var(--gutter) 46px;
  }

  .footer__top {
    padding: 136px 0 44px;
    gap: 42px;
  }

  .footer__col p {
    margin-bottom: 18px;
  }

  .footer__col p + p {
    margin-bottom: 20px;
  }

  .footer__microcopy {
    margin-top: 42px;
    padding: 0 0 28px;
  }

  .footer__bottom {
    gap: 22px;
    padding: 28px 0 0;
  }
}

@media (max-width: 420px) {
  :root {
    --gutter: 20px;
    --mobile-section-y-lg: 64px;
  }

  .hero__title-wrap {
    padding-top: calc(var(--nav-h) + 42px);
  }

  .hero__title {
    font-size: clamp(3rem, 14.6vw, 4.9rem);
  }

  .hero__cta-stack {
    width: 100%;
  }

  .hero__cta-stack .magnetic-wrap,
  .hero__cta-stack .btn-primary {
    width: 100%;
  }

  .service-hero__cta .magnetic-wrap,
  .service-hero__cta .btn-primary,
  .service-cta .magnetic-wrap,
  .service-cta .btn-primary,
  .lead-form__submit {
    width: 100%;
  }

  .footer__links a,
  .footer__email {
    font-size: 1.28rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__content,
  .availability-dot,
  .hero__scroll-line:after {
    animation: none !important;
  }
}

/* Final UI/UX polish layer */
:root {
  --section-padding: clamp(112px, 8vw, 168px);
  --content-measure: 68ch;
}

body,
a,
button,
summary,
.projects-slider__container {
  cursor: auto;
}

.cursor-ring,
.cursor-label {
  display: none;
}

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor summary,
body.has-custom-cursor .projects-slider__container {
  cursor: none;
}

body.has-custom-cursor.cursor-ready .cursor-ring,
body.has-custom-cursor.cursor-ready .cursor-label {
  display: block;
}

@media (max-width: 900px), (pointer: coarse) {
  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button,
  body.has-custom-cursor summary,
  body.has-custom-cursor .projects-slider__container {
    cursor: auto;
  }

  body.has-custom-cursor.cursor-ready .cursor-ring,
  body.has-custom-cursor.cursor-ready .cursor-label {
    display: none;
  }
}

.navbar {
  background:
    linear-gradient(
      to bottom,
      color-mix(in srgb, var(--bg-mid) 82%, transparent),
      color-mix(in srgb, var(--bg-mid) 58%, transparent)
    );
}

.navbar__links a,
.navbar__availability-status,
.cap-section__eyebrow,
.projects-slider__label,
.offer-card__label,
.service-tile span,
.lead-form label span {
  letter-spacing: 0.08em;
}

.hero__bottom {
  min-height: 168px;
}

.hero__tagline,
.split-feature__content p,
.cap-section__intro,
.service-section__intro,
.contact-section__content p,
.service-hero__text,
.service-band p,
.advantage-band p,
.service-cta p {
  max-width: var(--content-measure);
}

.section-kicker,
.projects-slider__header-left,
.cap-section__header-left,
.service-section__header > div,
.offers-section__header > div,
.faq-section__header > div {
  min-width: 0;
}

.intro-grid__cards,
.offer-grid,
.service-grid,
.process-steps {
  background: color-mix(in srgb, var(--text) 2%, transparent);
}

.intent-card,
.offer-card,
.service-tile,
.process-step {
  background: color-mix(in srgb, var(--bg-mid) 72%, transparent);
  transition:
    background-color 0.28s ease,
    transform 0.28s var(--ease-out-expo),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.intent-card:hover,
.offer-card:hover,
.service-tile:hover,
.process-step:hover {
  background: color-mix(in srgb, var(--accent) 7%, var(--bg-mid));
}

.process-step__number {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--border));
  border-radius: 50%;
  background: color-mix(in srgb, var(--bg-mid) 86%, var(--accent));
  color: var(--text);
  line-height: 1;
  letter-spacing: 0;
  opacity: 1;
  transition:
    background-color 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease,
    transform 0.28s var(--ease-out-expo);
}

.process-step:first-child .process-step__number,
.process-step:hover .process-step__number {
  border-color: var(--accent);
  background: var(--accent);
  color: #111111;
}

.process-step:hover {
  border-color: color-mix(in srgb, var(--accent) 28%, var(--border));
  box-shadow: 0 26px 52px color-mix(in srgb, var(--text) 8%, transparent);
  transform: translateY(-3px);
}

.intent-card h3,
.offer-card h3,
.service-tile h3,
.process-steps h3,
.project-card__title {
  text-wrap: balance;
}

.intent-card p,
.offer-card p,
.service-tile p,
.process-steps p,
.project-card__subtitle {
  max-width: 44rem;
  line-height: 1.68;
}

.split-feature__content {
  align-self: center;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list li {
  padding-top: 2px;
  padding-bottom: 2px;
}

.projects-slider__header {
  align-items: end;
}

.projects-slider__p {
  max-width: 46rem;
  line-height: 1.65;
}

.project-card-slider {
  transition:
    transform 0.32s var(--ease-out-expo),
    box-shadow 0.32s ease;
}

.project-card-slider:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.projects-slider__hint {
  margin-top: 24px;
}

.about__content {
  justify-content: center;
}

.about__heading {
  text-wrap: balance;
}

.cap-accordion__header {
  min-height: clamp(112px, 8.5vw, 166px);
}

.cap-accordion__body {
  transition:
    grid-template-rows 0.38s var(--ease-out-expo),
    opacity 0.22s ease;
}

.cap-accordion__description {
  max-width: 72ch;
}

.faq-list summary {
  line-height: 1.16;
  text-wrap: balance;
}

.faq-list p {
  max-width: 78ch;
}

.service-hero {
  min-height: min(820px, 86vh);
}

.service-hero__aside {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.service-section__header {
  align-items: end;
}

.service-section__title,
.contact-section__content h2,
.service-cta h2,
.advantage-band h2,
.service-band h2 {
  text-wrap: balance;
}

.contact-section {
  align-items: start;
}

.contact-section__offers span {
  min-height: 34px;
  align-items: center;
}

.lead-form {
  position: relative;
}

.lead-form:before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 2px solid var(--accent);
  opacity: 0.45;
  pointer-events: none;
}

.lead-form input:hover,
.lead-form select:hover,
.lead-form textarea:hover {
  border-color: color-mix(in srgb, var(--text) 18%, var(--border));
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  caret-color: var(--accent);
}

.lead-form__note {
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.footer__top {
  align-items: end;
}

.footer__links a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.footer__back-to-top {
  min-height: 40px;
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover,
  .btn-secondary:hover,
  .footer__back-to-top:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 1100px) {
  .projects-slider__header,
  .cap-section__header,
  .service-section__header {
    grid-template-columns: 1fr;
  }

  .projects-slider__header {
    gap: 28px;
  }

  .service-section__intro,
  .cap-section__intro,
  .projects-slider__p {
    align-self: start;
  }

  .service-hero {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 68px;
    --mobile-section-y-lg: 62px;
    --gutter: 20px;
  }

  .navbar {
    background: color-mix(in srgb, var(--bg-mid) 88%, transparent);
  }

  .header__logo {
    height: 38px;
  }

  .navbar__toggle {
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
  }

  .navbar__mobile-overlay {
    gap: 32px;
  }

  .mobile-theme-toggle {
    width: 100%;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .hero {
    min-height: 90svh;
  }

  .hero__title-wrap {
    padding-top: calc(var(--nav-h) + 34px);
  }

  .hero__bottom {
    min-height: 0;
    border-top-color: color-mix(in srgb, var(--text) 10%, transparent);
  }

  .hero__tagline {
    font-size: 0.98rem;
  }

  .hero__cta-stack {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__cta-stack .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .intro-grid__cards,
  .offer-grid,
  .service-grid,
  .process-steps {
    border-left: 0;
  }

  .intent-card,
  .process-step,
  .offer-card,
  .service-tile {
    padding-top: 26px;
    padding-bottom: 28px;
  }

  .split-feature__content,
  .split-feature__panel {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .feature-list {
    gap: 12px;
  }

  .projects-slider__header,
  .cap-section__header {
    padding-top: 62px;
  }

  .project-card-slider:hover {
    transform: none;
    box-shadow: none;
  }

  .project-card__content {
    gap: 18px;
  }

  .about__content {
    padding-top: 46px;
  }

  .about__heading {
    margin-bottom: 18px;
  }

  .cap-accordion__header {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) 36px;
  }

  .cap-accordion__tags {
    grid-column: 1;
    grid-row: 3;
    min-width: 0;
    max-width: 100%;
    justify-content: flex-start;
  }

  .process-step {
    min-height: 190px;
  }

  .faq-list summary {
    font-size: clamp(1.18rem, 5.5vw, 1.65rem);
  }

  .service-hero__aside,
  .lead-form {
    background: color-mix(in srgb, var(--bg-light) 62%, transparent);
  }

  .service-section__intro {
    margin-top: 0;
  }

  .service-cta {
    gap: 30px;
  }

  .contact-section__offers {
    width: 100%;
  }

  .contact-section__offers span {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    text-align: center;
  }

  .lead-form:before {
    border-top-width: 1px;
  }

  .footer__top {
    align-items: start;
  }
}

@media (max-width: 420px) {
  :root {
    --gutter: 18px;
  }

  .hero__title {
    font-size: clamp(2.9rem, 14vw, 4.6rem);
  }

  .contact-section__offers span {
    flex-basis: 100%;
  }

  .lead-form {
    padding: 20px;
  }
}

/* Focused hero/nav balance pass */
@media (min-width: 901px) {
  .navbar__logo {
    padding-inline: clamp(56px, 4.6vw, 72px);
  }

  .header__logo {
    height: 38px;
  }

  .navbar__links li {
    padding-inline: clamp(24px, 2.2vw, 34px);
  }

  .navbar__availability {
    gap: 18px;
    padding-inline: clamp(34px, 4vw, 64px);
  }

  .theme-toggle,
  .navbar__mail-link {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
  }

  .navbar__mail-link {
    color: var(--text);
    transition:
      background-color 0.22s ease,
      color 0.22s ease,
      transform 0.22s var(--ease-out-expo);
  }

  .navbar__mail-link:hover {
    background: color-mix(in srgb, var(--text) 7%, transparent);
    transform: translateY(-1px);
  }

  .navbar__mail-link:hover #navbar__mail {
    transform: none;
  }

  .navbar__availability-status {
    gap: 10px;
    font-size: 0.76rem;
  }

  .availability-dot {
    width: 8px;
    height: 8px;
  }

  .hero__title-wrap {
    padding-top: clamp(48px, 4.6vw, 76px);
    padding-bottom: clamp(84px, 8vh, 112px);
  }

  .hero__eyebrow {
    margin-bottom: clamp(28px, 3vw, 40px);
  }

  .hero__title {
    font-size: clamp(4.8rem, 9.2vw, 10.4rem);
    line-height: 0.96;
  }

  .hero__bottom {
    align-items: center;
    min-height: clamp(158px, 18vh, 188px);
    padding-block: clamp(32px, 4vh, 44px);
  }

  .hero__cta-stack {
    justify-self: center;
    gap: 16px;
  }

  .hero__cta-stack .magnetic-wrap,
  .hero__cta-stack .btn-primary {
    min-height: 52px;
  }

  .hero__scroll-hint {
    height: auto;
    min-width: 58px;
    gap: 10px;
    color: color-mix(in srgb, var(--text) 54%, transparent);
  }

  .hero__scroll-line {
    width: 1px;
    height: 44px;
    background: color-mix(in srgb, var(--text) 28%, transparent);
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .hero__title {
    font-size: clamp(4.5rem, 9vw, 8.6rem);
  }

  .hero__bottom {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.8fr) auto;
  }
}

@media (max-width: 768px) {
  .hero__scroll-hint {
    display: none;
  }
}

/* GSAP-inspired kinetic layer */
:root {
  --motion-distance: 42px;
  --ink: #10100f;
  --cream: #fffce8;
}

.hero__title-wrap,
.hero__bottom {
  z-index: 1;
}

.hero__title-line {
  overflow: hidden;
  padding-bottom: 0.035em;
}

.intent-card {
  position: relative;
  overflow: hidden;
}

.intent-card__glyph {
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: color-mix(in srgb, var(--text) 7%, transparent);
  font-size: clamp(4.5rem, 8vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.75;
  pointer-events: none;
  transition:
    color 0.35s ease,
    transform 0.45s var(--ease-out-expo);
}

.intent-card:hover .intent-card__glyph {
  color: color-mix(in srgb, var(--accent) 40%, transparent);
  transform: translateY(-8px) rotate(-3deg);
}

.split-feature__panel {
  position: relative;
  overflow: hidden;
}

.split-feature__panel > :not(.split-feature__visual) {
  position: relative;
  z-index: 1;
}

.split-feature__visual {
  position: absolute;
  right: clamp(24px, 5vw, 84px);
  top: clamp(32px, 6vw, 92px);
  width: clamp(120px, 13vw, 220px);
  height: clamp(120px, 13vw, 220px);
  opacity: 0.72;
  pointer-events: none;
}

.split-feature__visual span {
  position: absolute;
  display: block;
  border: 1px solid color-mix(in srgb, var(--text) 18%, transparent);
  background: color-mix(in srgb, var(--bg-mid) 38%, transparent);
  will-change: transform;
}

.split-feature__visual--web span:nth-child(1) {
  inset: 0 16% 56% 0;
  background: linear-gradient(135deg, var(--accent), transparent);
}

.split-feature__visual--web span:nth-child(2) {
  inset: 36% 0 14% 32%;
}

.split-feature__visual--web span:nth-child(3) {
  left: -58%;
  top: 34%;
  width: 148%;
  height: 28%;
  border-color: color-mix(in srgb, var(--accent) 34%, transparent);
  background: linear-gradient(90deg, rgba(36, 216, 255, 0.22), transparent);
}

.split-feature__visual--automation span:nth-child(1) {
  left: 14%;
  top: 0;
  width: 34%;
  height: 100%;
  background: linear-gradient(180deg, rgba(155, 135, 255, 0.5), transparent);
}

.split-feature__visual--automation span:nth-child(2) {
  top: 34%;
  left: 0;
  width: 100%;
  height: 34%;
  background: linear-gradient(90deg, rgba(36, 216, 255, 0.44), transparent);
}

.split-feature__visual--automation span:nth-child(3) {
  right: 7%;
  bottom: 7%;
  width: 42%;
  height: 42%;
  background: color-mix(in srgb, var(--accent) 32%, transparent);
}

@media (min-width: 1101px) {
  .service-deck.deck-motion-ready {
    position: relative;
    height: 188vh;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    --deck-web-scale: 1;
    --deck-web-y: 0px;
    --deck-web-opacity: 1;
    --deck-web-brightness: 1;
    --deck-ai-y: 104vh;
    --deck-ai-scale: 0.965;
    --deck-ai-clip: 0%;
  }

  .service-deck.deck-motion-ready .service-deck__stage {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background: var(--bg);
    isolation: isolate;
  }

  .service-deck.deck-motion-ready .service-deck__card {
    position: absolute;
    inset: 0;
    min-height: 100vh;
    background: var(--bg);
    transform-origin: center center;
    will-change: transform, opacity, clip-path, filter;
  }

  .service-deck.deck-motion-ready .service-deck__card--web {
    z-index: 1;
    opacity: var(--deck-web-opacity);
    filter: brightness(var(--deck-web-brightness));
    transform: translate3d(0, var(--deck-web-y), 0) scale(var(--deck-web-scale));
  }

  .service-deck.deck-motion-ready .service-deck__card--automation {
    z-index: 2;
    clip-path: inset(var(--deck-ai-clip) 0 0 0);
    transform: translate3d(0, var(--deck-ai-y), 0) scale(var(--deck-ai-scale));
    pointer-events: none;
  }

  .service-deck.deck-motion-ready.is-automation-active .service-deck__card--automation {
    pointer-events: auto;
  }

  .service-deck.deck-motion-ready .service-deck__card--automation .split-feature__panel,
  .service-deck.deck-motion-ready .service-deck__card--automation .split-feature__content {
    transform: translate3d(0, var(--deck-ai-content-y, 34px), 0);
    opacity: var(--deck-ai-content-opacity, 0);
  }

  .service-deck.deck-motion-ready.deck-gsap-ready {
    height: auto;
  }

  .service-deck.deck-motion-ready.deck-gsap-ready .service-deck__stage {
    position: relative;
  }
}

.kinetic-statement {
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  border-top: 1px solid color-mix(in srgb, var(--cream) 14%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--cream) 14%, transparent);
  padding: clamp(52px, 7vw, 92px) 0;
}

.kinetic-statement__track {
  display: flex;
  width: max-content;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  white-space: nowrap;
  will-change: transform;
}

.kinetic-statement__track span {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 10vw, 12rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.84;
  text-transform: lowercase;
}

.kinetic-statement__track span:nth-child(2n) {
  color: var(--accent);
}

.process-step,
.project-card-slider,
.cap-accordion__row,
.offer-card,
.lead-form {
  transform-origin: center bottom;
}

.motion-ready .motion-reveal {
  opacity: 0;
  transform: translate3d(0, var(--motion-distance), 0);
}

.motion-ready .hero__eyebrow,
.motion-ready .hero__tagline,
.motion-ready .hero__cta,
.motion-ready .hero__scroll-hint {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
}

.motion-ready .hero__title-line span {
  transform: translate3d(0, 112%, 0);
}

.motion-ready .motion-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.8s ease,
    transform 0.95s var(--ease-out-expo);
}

@media (min-width: 1101px) {
  .service-deck.deck-motion-ready .motion-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .service-deck.deck-motion-ready .service-deck__card--automation .split-feature__panel,
  .service-deck.deck-motion-ready .service-deck__card--automation .split-feature__content {
    opacity: var(--deck-ai-content-opacity, 0);
    transform: translate3d(0, var(--deck-ai-content-y, 34px), 0);
  }
}

@media (min-width: 901px) {
  .hero__bottom {
    grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr) minmax(88px, 0.45fr);
    column-gap: clamp(32px, 5vw, 84px);
  }

  .split-feature__panel {
    min-height: 76vh;
  }
}

@media (max-width: 900px) {
  .split-feature__visual {
    width: 108px;
    height: 108px;
    top: 28px;
    right: 18px;
    opacity: 0.26;
  }
}

@media (max-width: 640px) {
  .intent-card__glyph {
    right: 16px;
    bottom: 12px;
    font-size: 5rem;
  }

  .kinetic-statement {
    padding: 44px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .motion-reveal,
  .motion-ready .hero__eyebrow,
  .motion-ready .hero__tagline,
  .motion-ready .hero__cta,
  .motion-ready .hero__scroll-hint,
  .motion-ready .hero__title-line span {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .kinetic-statement__track {
    transform: none !important;
  }

  .service-deck.deck-motion-ready {
    height: auto;
  }

  .service-deck.deck-motion-ready .service-deck__stage,
  .service-deck.deck-motion-ready .service-deck__card {
    position: static;
    height: auto;
    overflow: visible;
    opacity: 1;
    clip-path: none;
    filter: none;
    transform: none;
  }
}
/* Theme alignment pass */
.advantage-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(48px, 8vw, 132px);
  align-items: end;
  padding: clamp(112px, 9vw, 176px) var(--gutter);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 10%, transparent), transparent 46%),
    var(--bg-light);
  color: var(--text);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.advantage-band:after {
  content: "";
  position: absolute;
  right: var(--gutter);
  top: clamp(70px, 8vw, 130px);
  width: clamp(96px, 9vw, 150px);
  height: 1px;
  background: var(--accent);
  opacity: 0.8;
}

.advantage-band .cap-section__eyebrow {
  grid-column: 1 / -1;
  color: var(--text-muted);
}

.advantage-band .cap-section__eyebrow:before {
  background: var(--text-muted);
}

.advantage-band h2 {
  max-width: 850px;
  margin-top: 0;
  font-size: clamp(3rem, 5.8vw, 7.2rem);
  line-height: 0.94;
  letter-spacing: -0.048em;
  color: var(--text);
}

.advantage-band p {
  position: relative;
  max-width: 620px;
  margin-top: 0;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: clamp(1rem, 1.18vw, 1.18rem);
  line-height: 1.72;
}

.advantage-band p:before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 72px;
  height: 1px;
  background: var(--accent);
}

@media (max-width: 900px) {
  .advantage-band {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: var(--mobile-section-y-lg) var(--gutter);
  }

  .advantage-band:after {
    display: none;
  }

  .advantage-band h2 {
    font-size: clamp(2.55rem, 11vw, 4.3rem);
    letter-spacing: -0.045em;
  }

  .advantage-band p {
    max-width: 100%;
  }
}

/* Hero message polish pass */
.navbar__logo {
  background: color-mix(in srgb, var(--bg-mid) 68%, transparent);
}

.navbar__logo:hover .header__logo {
  opacity: 0.78;
  transform: translateY(-1px);
}

.header__logo {
  filter: contrast(1.04);
}

.hero__title-wrap {
  position: relative;
  z-index: 3;
}

.hero__bottom {
  position: relative;
  z-index: 3;
}

.hero-card-swap {
  display: none;
}

@media (min-width: 901px) {
  .hero-card-swap {
    --hero-card-w: clamp(430px, 31.5vw, 560px);
    --hero-card-h: calc(var(--hero-card-w) * 0.5625);
    --hero-card-x: 18px;
    --hero-card-y: 15px;
    --hero-card-z: 26px;
    --hero-card-skew: -1.35deg;
    position: absolute;
    top: clamp(210px, 25vh, 270px);
    right: clamp(8px, 1.2vw, 24px);
    z-index: 1;
    display: block;
    width: calc(var(--hero-card-w) + (var(--hero-card-x) * 2) + 18px);
    height: calc(var(--hero-card-h) + (var(--hero-card-y) * 2) + 22px);
    perspective: 900px;
    pointer-events: none;
    contain: layout;
  }

  .hero-card-swap:before {
    content: "";
    position: absolute;
    inset: -18% -14% -20% -12%;
    z-index: 0;
    pointer-events: none;
    background:
      radial-gradient(
        ellipse at 64% 42%,
        color-mix(in srgb, var(--accent) 18%, transparent) 0%,
        color-mix(in srgb, var(--accent) 7%, transparent) 30%,
        transparent 64%
      );
    filter: blur(18px);
    opacity: 0.32;
    transform: translate3d(14px, -6px, 0);
  }

  .hero-card-swap__container {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--hero-card-w);
    height: var(--hero-card-h);
    z-index: 1;
    transform-style: preserve-3d;
  }

  .hero-card-swap__card {
    --hero-card-image-opacity: 1;
    position: absolute;
    inset: 0;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--text) 16%, transparent);
    border-radius: 8px;
    background: color-mix(in srgb, var(--bg-mid) 88%, var(--text) 12%);
    box-shadow:
      0 16px 38px rgba(0, 0, 0, 0.1),
      0 1px 0 color-mix(in srgb, #fff 34%, transparent) inset;
    transform-origin: center center;
    will-change: transform, opacity;
  }

  .hero-card-swap__card:after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid color-mix(in srgb, #fff 24%, transparent);
    border-radius: inherit;
    pointer-events: none;
  }

  .hero-card-swap__card:nth-child(1) {
    z-index: 3;
    opacity: 1;
    box-shadow:
      0 26px 62px rgba(0, 0, 0, 0.16),
      0 1px 0 color-mix(in srgb, #fff 38%, transparent) inset;
    transform: translate3d(0, 0, 0) skewY(0deg) scale(1);
  }

  .hero-card-swap__card:nth-child(2) {
    --hero-card-image-opacity: 0.38;
    z-index: 2;
    opacity: 1;
    transform: translate3d(var(--hero-card-x), var(--hero-card-y), calc(var(--hero-card-z) * -1)) skewY(var(--hero-card-skew)) scale(0.99);
  }

  .hero-card-swap__card:nth-child(3) {
    --hero-card-image-opacity: 0.14;
    z-index: 1;
    opacity: 1;
    transform: translate3d(calc(var(--hero-card-x) * 2), calc(var(--hero-card-y) * 2), calc(var(--hero-card-z) * -2)) skewY(var(--hero-card-skew)) scale(0.98);
  }

  .hero-card-swap__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: var(--hero-card-image-opacity);
    filter: saturate(0.94) contrast(1.02);
  }

  .hero-card-swap__card[data-swap-slot="0"] {
    --hero-card-image-opacity: 1;
  }

  .hero-card-swap__card[data-swap-slot="1"] {
    --hero-card-image-opacity: 0.38;
  }

  .hero-card-swap__card[data-swap-slot="2"] {
    --hero-card-image-opacity: 0.14;
  }

  [data-theme="dark"] .hero-card-swap__card {
    border-color: color-mix(in srgb, #fff 18%, transparent);
    background: color-mix(in srgb, var(--bg-mid) 82%, #fff 8%);
    box-shadow:
      0 20px 48px rgba(0, 0, 0, 0.32),
      0 1px 0 color-mix(in srgb, #fff 15%, transparent) inset;
  }

  [data-theme="dark"] .hero-card-swap:before {
    opacity: 0.2;
    filter: blur(22px);
  }

  [data-theme="dark"] .hero-card-swap__card:nth-child(1) {
    box-shadow:
      0 26px 64px rgba(0, 0, 0, 0.42),
      0 1px 0 color-mix(in srgb, #fff 18%, transparent) inset;
  }

  [data-theme="dark"] .hero-card-swap__card img {
    filter: brightness(0.86) saturate(0.9) contrast(1.02);
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .hero-card-swap {
    --hero-card-w: clamp(340px, 34vw, 390px);
    --hero-card-x: 18px;
    --hero-card-y: 15px;
    --hero-card-z: 24px;
    top: clamp(204px, 25vh, 244px);
    right: clamp(8px, 1vw, 14px);
  }
}

@media (min-width: 1700px) {
  .hero-card-swap {
    --hero-card-w: clamp(540px, 30vw, 610px);
    right: clamp(54px, 4vw, 96px);
  }
}

@media (max-width: 900px) {
  .hero-card-swap {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-card-swap__card {
    transition: none !important;
  }
}

.btn-secondary--boxed {
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid color-mix(in srgb, var(--text) 16%, transparent);
  border-bottom-color: color-mix(in srgb, var(--text) 16%, transparent);
  color: var(--text);
  background: color-mix(in srgb, var(--bg-mid) 72%, transparent);
}

.btn-secondary--boxed:hover {
  border-color: color-mix(in srgb, var(--text) 34%, transparent);
  background: color-mix(in srgb, var(--text) 4%, var(--bg-mid));
}

@media (min-width: 901px) {
  .hero__title {
    max-width: min(86vw, 1380px);
  }

  .hero__title-line {
    max-width: 100%;
  }

  .hero__title-line-2 {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .navbar__logo {
    background: transparent;
  }
}

/* Scroll cue override: animated arrow, no decorative line. */
.hero__scroll-hint {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  height: auto;
  min-width: 88px;
}

.hero__scroll-line {
  display: none !important;
}

.hero__scroll-hint span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.hero__scroll-hint span::after {
  content: "\2193" !important;
  display: inline-block !important;
  color: var(--accent);
  font-size: 0.95rem;
  line-height: 1;
  animation: scrollArrowNudge 1.7s var(--ease-in-out-quart, ease-in-out) infinite;
}

@media (max-width: 768px) {
  .hero__scroll-hint {
    display: none;
  }
}

/* Final scroll cue: text plus animated downward arrow, no line. */
.hero__scroll-hint {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  height: auto;
  min-width: 78px;
}

.hero__scroll-line {
  display: none !important;
}

.hero__scroll-hint span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.hero__scroll-hint span::after {
  content: "\2193";
  display: inline-block;
  color: var(--accent);
  font-size: 0.82rem;
  line-height: 1;
  animation: scrollArrowNudge 1.7s var(--ease-in-out-quart, ease-in-out) infinite;
}

@media (max-width: 768px) {
  .hero__scroll-hint {
    display: none;
  }
}

.hero__scroll-hint {
  flex-direction: row;
  justify-content: flex-end;
  gap: 8px;
  min-width: 78px;
}

.hero__scroll-line {
  display: none;
}

.hero__scroll-hint span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__scroll-hint span::after {
  content: "\2193";
  display: inline-block;
  color: var(--accent);
  font-size: 0.82rem;
  line-height: 1;
  animation: scrollArrowNudge 1.7s var(--ease-in-out-quart, ease-in-out) infinite;
}

@keyframes scrollArrowNudge {
  0% {
    opacity: 0.35;
    transform: translateY(-4px);
  }

  45% {
    opacity: 1;
    transform: translateY(3px);
  }

  100% {
    opacity: 0.35;
    transform: translateY(8px);
  }
}

.hero__scroll-hint {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  height: auto;
  min-width: 88px;
}

.hero__scroll-line {
  display: none !important;
  width: 1px;
  height: 42px;
  background: color-mix(in srgb, var(--text) 28%, transparent);
  position: relative;
  overflow: hidden;
}

.hero__scroll-hint span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.hero__scroll-hint span::after {
  content: none;
  display: none;
}

.hero__scroll-hint span::after {
  content: "↓";
  font-size: 0.82rem;
  line-height: 1;
  color: var(--accent);
  transform: translateY(-1px);
}

.hero__scroll-hint span::after {
  content: "\2193" !important;
  display: inline-block !important;
  color: var(--accent);
  font-size: 0.95rem;
  line-height: 1;
  animation: scrollArrowNudge 1.7s var(--ease-in-out-quart, ease-in-out) infinite;
}

@media (max-width: 768px) {
  .hero__scroll-hint {
    display: none;
  }
}

.hero__title-wrap,
.hero__bottom {
  transform: translateY(-28px);
}

.hero {
  margin-bottom: -24px;
}

/* Intent routing polish pass */
.section-kicker__intro {
  max-width: 34ch;
  margin-top: clamp(28px, 4vw, 54px);
  color: color-mix(in srgb, var(--text-muted) 92%, var(--text));
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.66;
}

.section-kicker__action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-top: 28px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 0.25s ease,
    gap 0.32s var(--ease-out-expo);
}

.section-kicker__action:hover {
  gap: 16px;
  color: var(--accent);
}

.intro-grid {
  align-items: start;
}

.intro-grid__cards {
  position: relative;
  isolation: isolate;
  box-shadow:
    0 1px 0 color-mix(in srgb, var(--text) 5%, transparent) inset,
    0 40px 90px color-mix(in srgb, #000 11%, transparent);
}

.intro-grid__cards::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 22%, transparent), transparent 34%),
    linear-gradient(315deg, color-mix(in srgb, var(--text) 8%, transparent), transparent 32%);
  opacity: 0.28;
  pointer-events: none;
}

.intent-card {
  --pointer-x: 78%;
  --pointer-y: 24%;
  position: relative;
  min-height: clamp(300px, 20vw, 354px);
  padding: clamp(28px, 2.2vw, 38px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(20px, 2vw, 30px);
  overflow: hidden;
  isolation: isolate;
  color: var(--text);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--bg-mid) 88%, var(--text) 4%), var(--bg-mid)),
    color-mix(in srgb, var(--bg-mid) 72%, transparent);
  border-color: var(--border);
  transform: translate3d(0, 0, 0);
  transition:
    background 0.34s ease,
    border-color 0.34s ease,
    box-shadow 0.34s ease,
    transform 0.38s var(--ease-out-expo);
}

.intent-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      circle at var(--pointer-x) var(--pointer-y),
      color-mix(in srgb, var(--accent) 24%, transparent) 0,
      color-mix(in srgb, var(--accent) 10%, transparent) 22%,
      transparent 48%
    );
  opacity: 0;
  transition: opacity 0.34s ease;
  pointer-events: none;
}

.intent-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transform: translateX(-100%);
  transition:
    opacity 0.2s ease,
    transform 0.65s var(--ease-out-expo);
  pointer-events: none;
}

.intent-card:hover,
.intent-card:focus-visible {
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent) 9%, var(--bg-mid)), var(--bg-mid)),
    color-mix(in srgb, var(--accent) 7%, var(--bg-mid));
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  box-shadow:
    0 18px 50px color-mix(in srgb, #000 18%, transparent),
    0 0 0 1px color-mix(in srgb, var(--accent) 12%, transparent) inset;
  transform: translate3d(0, -4px, 0);
}

.intent-card:hover::before,
.intent-card:focus-visible::before {
  opacity: 1;
}

.intent-card:hover::after,
.intent-card:focus-visible::after {
  opacity: 0.92;
  transform: translateX(0);
}

.intent-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 22px;
}

.intent-card__index {
  color: color-mix(in srgb, var(--text) 58%, transparent);
  opacity: 1;
  transition: color 0.25s ease;
}

.intent-card__signal {
  color: color-mix(in srgb, var(--text-muted) 80%, transparent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.72;
  transition:
    color 0.25s ease,
    opacity 0.25s ease,
    transform 0.32s var(--ease-out-expo);
}

.intent-card:hover .intent-card__index,
.intent-card:focus-visible .intent-card__index,
.intent-card:hover .intent-card__signal,
.intent-card:focus-visible .intent-card__signal {
  color: var(--accent);
  opacity: 1;
}

.intent-card:hover .intent-card__signal,
.intent-card:focus-visible .intent-card__signal {
  transform: translateX(-4px);
}

.intent-card__visual {
  position: absolute;
  z-index: 0;
  right: clamp(18px, 2.1vw, 34px);
  bottom: clamp(18px, 2.1vw, 34px);
  width: clamp(78px, 7.1vw, 112px);
  height: clamp(66px, 6vw, 96px);
  opacity: 0.12;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.48s var(--ease-out-expo);
}

.intent-card:hover .intent-card__visual,
.intent-card:focus-visible .intent-card__visual {
  opacity: 0.58;
  transform: translate3d(-4px, -8px, 0);
}

.intent-card__visual span {
  position: absolute;
  display: block;
  border: 1px solid color-mix(in srgb, var(--text) 20%, transparent);
  background: color-mix(in srgb, var(--bg-mid) 44%, transparent);
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    transform 0.48s var(--ease-out-expo);
}

.intent-card:hover .intent-card__visual span,
.intent-card:focus-visible .intent-card__visual span {
  border-color: color-mix(in srgb, var(--accent) 62%, transparent);
  background: color-mix(in srgb, var(--accent) 18%, transparent);
}

.intent-card--website .intent-card__visual span:nth-child(1) {
  inset: 0;
}

.intent-card--website .intent-card__visual span:nth-child(2) {
  left: 12%;
  top: 16%;
  width: 34%;
  height: 16%;
  background: var(--accent);
}

.intent-card--website .intent-card__visual span:nth-child(3) {
  left: 12%;
  top: 44%;
  width: 70%;
  height: 10%;
}

.intent-card--website .intent-card__visual span:nth-child(4) {
  left: 12%;
  top: 66%;
  width: 52%;
  height: 10%;
}

.intent-card--landing .intent-card__visual span:nth-child(1),
.intent-card--landing .intent-card__visual span:nth-child(2),
.intent-card--landing .intent-card__visual span:nth-child(3) {
  left: 50%;
  height: 14%;
  transform: translateX(-50%);
}

.intent-card--landing .intent-card__visual span:nth-child(1) {
  top: 0;
  width: 92%;
}

.intent-card--landing .intent-card__visual span:nth-child(2) {
  top: 31%;
  width: 62%;
}

.intent-card--landing .intent-card__visual span:nth-child(3) {
  top: 62%;
  width: 34%;
  background: var(--accent);
}

.intent-card--landing .intent-card__visual span:nth-child(4) {
  right: 5%;
  bottom: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.intent-card--automation .intent-card__visual::before,
.intent-card--automation .intent-card__visual::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 18%;
  height: 1px;
  background: color-mix(in srgb, var(--text) 18%, transparent);
  transform-origin: center;
  transition:
    background-color 0.35s ease,
    transform 0.48s var(--ease-out-expo);
}

.intent-card--automation .intent-card__visual::before {
  top: 34%;
  transform: rotate(15deg);
}

.intent-card--automation .intent-card__visual::after {
  top: 62%;
  transform: rotate(-15deg);
}

.intent-card--automation:hover .intent-card__visual::before,
.intent-card--automation:hover .intent-card__visual::after,
.intent-card--automation:focus-visible .intent-card__visual::before,
.intent-card--automation:focus-visible .intent-card__visual::after {
  background: color-mix(in srgb, var(--accent) 62%, transparent);
}

.intent-card--automation .intent-card__visual span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.intent-card--automation .intent-card__visual span:nth-child(1) {
  left: 0;
  top: 20%;
}

.intent-card--automation .intent-card__visual span:nth-child(2) {
  right: 5%;
  top: 6%;
}

.intent-card--automation .intent-card__visual span:nth-child(3) {
  left: 38%;
  bottom: 4%;
  background: var(--accent);
}

.intent-card--automation .intent-card__visual span:nth-child(4) {
  right: 0;
  bottom: 18%;
}

.intent-card--mvp .intent-card__visual span:nth-child(1) {
  inset: 0;
}

.intent-card--mvp .intent-card__visual span:nth-child(2) {
  left: 12%;
  top: 16%;
  width: 32%;
  height: 28%;
  background: var(--accent);
}

.intent-card--mvp .intent-card__visual span:nth-child(3) {
  right: 12%;
  top: 16%;
  width: 32%;
  height: 28%;
}

.intent-card--mvp .intent-card__visual span:nth-child(4) {
  left: 12%;
  right: 12%;
  bottom: 16%;
  height: 24%;
}

.intent-card__copy {
  position: relative;
  z-index: 1;
  display: block;
  max-width: min(31rem, calc(100% - clamp(116px, 8.8vw, 152px)));
  margin-top: auto;
}

.intent-card .intent-card__copy h3 {
  margin-top: 0;
  max-width: 15ch;
  font-size: clamp(1.45rem, 1.85vw, 2rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.intent-card .intent-card__copy p {
  max-width: 31rem;
  margin-top: 26px;
  color: color-mix(in srgb, var(--text-muted) 88%, var(--text));
  font-size: clamp(1rem, 1vw, 1.06rem);
  line-height: 1.66;
}

[data-theme="dark"] .intent-card__visual {
  opacity: 0.16;
}

[data-theme="dark"] .intent-card:hover .intent-card__visual,
[data-theme="dark"] .intent-card:focus-visible .intent-card__visual {
  opacity: 0.66;
}

.intent-card__cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: color-mix(in srgb, var(--text) 74%, transparent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    color 0.25s ease,
    gap 0.32s var(--ease-out-expo),
    transform 0.32s var(--ease-out-expo);
}

.intent-card:hover .intent-card__cta,
.intent-card:focus-visible .intent-card__cta {
  gap: 16px;
  color: var(--accent);
  transform: translateX(2px);
}

.lead-form--intent-selected {
  animation: leadFormIntentPulse 1.2s var(--ease-out-expo);
}

@keyframes leadFormIntentPulse {
  0% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 34%, transparent);
  }

  100% {
    box-shadow: 0 0 0 22px transparent;
  }
}

@media (max-width: 1100px) {
  .section-kicker__intro {
    max-width: 46rem;
    margin-top: 24px;
  }

  .section-kicker__action {
    margin-top: 22px;
  }
}

@media (max-width: 768px) {
  .intro-grid__cards {
    box-shadow: none;
  }

  .intro-grid__cards::before {
    opacity: 0.18;
  }

  .intent-card {
    min-height: 250px;
    padding: 26px var(--gutter);
    gap: 22px;
  }

  .intent-card:hover,
  .intent-card:focus-visible {
    transform: none;
  }

  .intent-card__copy {
    max-width: calc(100% - 92px);
  }

  .intent-card .intent-card__copy h3 {
    max-width: 14ch;
    font-size: clamp(1.42rem, 8vw, 2.15rem);
  }

  .intent-card .intent-card__copy p {
    max-width: 100%;
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .intent-card__visual {
    width: 92px;
    height: 76px;
    opacity: 0.24;
  }

  .intent-card__signal {
    font-size: 0.62rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intent-card,
  .intent-card::before,
  .intent-card::after,
  .intent-card__signal,
  .intent-card__visual,
  .intent-card__visual span,
  .intent-card__cta,
  .section-kicker__action {
    transition: none;
  }

  .lead-form--intent-selected {
    animation: none;
  }
}

/* Intent routing refinement: diagnostic left rail and crisp build blueprints. */
.section-kicker .cap-section__heading {
  max-width: 7.8ch;
}

.section-kicker__diagnostic {
  position: relative;
  max-width: 430px;
  margin-top: clamp(34px, 4.4vw, 62px);
  padding: 24px 0 0;
  border-top: 1px solid color-mix(in srgb, var(--text) 18%, transparent);
}

.section-kicker__diagnostic::before {
  content: "System path";
  position: absolute;
  left: 0;
  top: -10px;
  padding-right: 12px;
  background: var(--bg-mid);
  color: color-mix(in srgb, var(--text-muted) 76%, transparent);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.diagnostic-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.diagnostic-flow__node {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 18px;
  align-items: baseline;
  min-height: 42px;
  padding: 11px 14px 11px 18px;
  border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--text) 4%, transparent), transparent 52%),
    color-mix(in srgb, var(--bg-mid) 82%, transparent);
  overflow: hidden;
}

.diagnostic-flow__node::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: color-mix(in srgb, var(--text) 18%, transparent);
}

.diagnostic-flow__node::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 32px;
  height: 1px;
  background: color-mix(in srgb, var(--text) 16%, transparent);
  transform: translateY(-50%);
}

.diagnostic-flow__node.is-active {
  border-color: color-mix(in srgb, var(--accent) 42%, var(--border));
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--accent) 14%, transparent), transparent 64%),
    color-mix(in srgb, var(--bg-mid) 84%, transparent);
}

.diagnostic-flow__node.is-active::before {
  background: var(--accent);
}

.diagnostic-flow__node b,
.diagnostic-flow__node em {
  position: relative;
  z-index: 1;
  font-style: normal;
}

.diagnostic-flow__node b {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.diagnostic-flow__node em {
  color: color-mix(in srgb, var(--text-muted) 82%, transparent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-kicker__diagnostic p {
  max-width: 31ch;
  margin-top: 20px;
  color: color-mix(in srgb, var(--text-muted) 92%, var(--text));
  font-size: clamp(1rem, 1.12vw, 1.12rem);
  line-height: 1.64;
}

.intent-card {
  min-height: clamp(286px, 20vw, 326px);
  gap: clamp(18px, 1.5vw, 24px);
}

.intent-card::before {
  background:
    radial-gradient(
      circle at var(--pointer-x) var(--pointer-y),
      color-mix(in srgb, var(--accent) 18%, transparent) 0,
      color-mix(in srgb, var(--accent) 7%, transparent) 20%,
      transparent 42%
    );
}

.intent-card__top {
  margin-bottom: 2px;
}

.intent-card__visual {
  position: absolute;
  z-index: 0;
  top: clamp(78px, 6vw, 96px);
  right: clamp(24px, 2.1vw, 34px);
  bottom: auto;
  align-self: auto;
  width: clamp(104px, 8.2vw, 138px);
  height: clamp(74px, 5.8vw, 96px);
  margin: 0;
  opacity: 0.72;
  transform: none;
}

[data-theme="dark"] .intent-card__visual {
  opacity: 0.64;
}

.intent-card:hover .intent-card__visual,
.intent-card:focus-visible .intent-card__visual,
[data-theme="dark"] .intent-card:hover .intent-card__visual,
[data-theme="dark"] .intent-card:focus-visible .intent-card__visual {
  opacity: 1;
  transform: translate3d(-4px, -4px, 0);
}

.intent-card__visual::before,
.intent-card__visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    opacity 0.35s ease,
    transform 0.48s var(--ease-out-expo);
}

.intent-card__visual span {
  border-color: color-mix(in srgb, var(--text) 18%, transparent);
  background: transparent;
}

.intent-card:hover .intent-card__visual span,
.intent-card:focus-visible .intent-card__visual span {
  background: transparent;
}

.intent-card--website .intent-card__visual {
  border: 1px solid color-mix(in srgb, var(--text) 16%, transparent);
}

.intent-card--website .intent-card__visual::before {
  left: 13%;
  top: 46%;
  width: 64%;
  height: 1px;
  background: color-mix(in srgb, var(--text) 18%, transparent);
  transform: rotate(22deg);
  transform-origin: left center;
}

.intent-card--website .intent-card__visual::after {
  right: 13%;
  bottom: 13%;
  width: 20px;
  height: 20px;
  border: 1px solid color-mix(in srgb, var(--text) 18%, transparent);
  border-radius: 50%;
}

.intent-card--website .intent-card__visual span:nth-child(1) {
  left: 12%;
  top: 14%;
  width: 46%;
  height: 10px;
  background: color-mix(in srgb, var(--accent) 54%, transparent);
  border: 0;
}

.intent-card--website .intent-card__visual span:nth-child(2) {
  left: 12%;
  top: 34%;
  width: 72%;
  height: 1px;
}

.intent-card--website .intent-card__visual span:nth-child(3) {
  left: 12%;
  top: 52%;
  width: 48%;
  height: 1px;
}

.intent-card--website .intent-card__visual span:nth-child(4) {
  left: 12%;
  bottom: 16%;
  width: 58%;
  height: 11px;
  border-color: color-mix(in srgb, var(--accent) 46%, transparent);
}

.intent-card--landing .intent-card__visual::before {
  left: 9%;
  top: 51%;
  width: 74%;
  height: 1px;
  background: color-mix(in srgb, var(--text) 18%, transparent);
}

.intent-card--landing .intent-card__visual span:nth-child(1),
.intent-card--landing .intent-card__visual span:nth-child(2),
.intent-card--landing .intent-card__visual span:nth-child(3) {
  left: 0;
  height: 13px;
  transform: none;
}

.intent-card--landing .intent-card__visual span:nth-child(1) {
  top: 8%;
  width: 78%;
}

.intent-card--landing .intent-card__visual span:nth-child(2) {
  top: 37%;
  width: 58%;
}

.intent-card--landing .intent-card__visual span:nth-child(3) {
  top: 66%;
  width: 38%;
  background: color-mix(in srgb, var(--accent) 54%, transparent);
  border: 0;
}

.intent-card--landing .intent-card__visual span:nth-child(4) {
  right: 0;
  top: 50%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.intent-card--automation .intent-card__visual::before,
.intent-card--automation .intent-card__visual::after {
  left: 25%;
  right: 25%;
  height: 1px;
  background: color-mix(in srgb, var(--text) 18%, transparent);
}

.intent-card--automation .intent-card__visual::before {
  top: 34%;
  transform: rotate(18deg);
}

.intent-card--automation .intent-card__visual::after {
  top: 64%;
  transform: rotate(-18deg);
}

.intent-card--automation .intent-card__visual span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.intent-card--automation .intent-card__visual span:nth-child(1) {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: color-mix(in srgb, var(--accent) 42%, transparent);
}

.intent-card--automation .intent-card__visual span:nth-child(2) {
  left: 42%;
  top: 31%;
  width: 25px;
  height: 25px;
  border-radius: 0;
  transform: rotate(45deg);
}

.intent-card--automation .intent-card__visual span:nth-child(3),
.intent-card--automation .intent-card__visual span:nth-child(4) {
  right: 0;
}

.intent-card--automation .intent-card__visual span:nth-child(3) {
  top: 14%;
}

.intent-card--automation .intent-card__visual span:nth-child(4) {
  bottom: 14%;
}

.intent-card--mvp .intent-card__visual {
  border: 1px solid color-mix(in srgb, var(--text) 16%, transparent);
}

.intent-card--mvp .intent-card__visual::before {
  left: 26%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: color-mix(in srgb, var(--text) 14%, transparent);
}

.intent-card--mvp .intent-card__visual::after {
  left: 0;
  right: 0;
  top: 24%;
  height: 1px;
  background: color-mix(in srgb, var(--text) 14%, transparent);
}

.intent-card--mvp .intent-card__visual span:nth-child(1) {
  left: 9%;
  top: 12%;
  width: 8px;
  height: 8px;
  background: color-mix(in srgb, var(--accent) 54%, transparent);
  border: 0;
}

.intent-card--mvp .intent-card__visual span:nth-child(2) {
  left: 36%;
  top: 38%;
  width: 42%;
  height: 1px;
}

.intent-card--mvp .intent-card__visual span:nth-child(3) {
  left: 36%;
  top: 57%;
  width: 50%;
  height: 1px;
}

.intent-card--mvp .intent-card__visual span:nth-child(4) {
  right: 9%;
  top: 31%;
  width: 20%;
  height: 42%;
  border-color: color-mix(in srgb, var(--accent) 42%, transparent);
}

.intent-card:hover .intent-card__visual::before,
.intent-card:hover .intent-card__visual::after,
.intent-card:focus-visible .intent-card__visual::before,
.intent-card:focus-visible .intent-card__visual::after {
  background-color: color-mix(in srgb, var(--accent) 52%, transparent);
  border-color: color-mix(in srgb, var(--accent) 52%, transparent);
}

.intent-card:hover .intent-card__visual span,
.intent-card:focus-visible .intent-card__visual span {
  border-color: color-mix(in srgb, var(--accent) 52%, transparent);
}

.intent-card--website:hover .intent-card__visual,
.intent-card--website:focus-visible .intent-card__visual,
.intent-card--mvp:hover .intent-card__visual,
.intent-card--mvp:focus-visible .intent-card__visual {
  border-color: color-mix(in srgb, var(--accent) 52%, transparent);
}

@media (max-width: 1100px) {
  .section-kicker .cap-section__heading {
    max-width: 11ch;
  }

  .section-kicker__diagnostic {
    max-width: none;
  }

  .diagnostic-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .diagnostic-flow__node {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: 74px;
  }

  .diagnostic-flow__node::after {
    width: 20px;
  }
}

@media (max-width: 768px) {
  .section-kicker .cap-section__heading {
    max-width: 9ch;
  }

  .section-kicker__diagnostic {
    margin-top: 26px;
    padding-top: 20px;
  }

  .diagnostic-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .diagnostic-flow__node {
    min-height: 68px;
    padding: 10px 12px;
  }

  .diagnostic-flow__node em {
    font-size: 0.64rem;
  }

  .intent-card {
    min-height: 264px;
  }

  .intent-card__visual {
    top: 70px;
    right: 18px;
    width: 86px;
    height: 64px;
    margin: 0;
    opacity: 0.52;
  }
}

/* Service system sections: meaningful build artifacts instead of decoration. */
.service-deck__card--web {
  --section-accent: var(--accent);
  --section-accent-2: #24d8ff;
  --section-panel-wash: color-mix(in srgb, var(--accent) 12%, transparent);
}

.service-deck__card--automation {
  --section-accent: #9b87ff;
  --section-accent-2: var(--accent);
  --section-panel-wash: color-mix(in srgb, #9b87ff 13%, transparent);
}

.split-feature {
  --artifact-x: 50%;
  --artifact-y: 50%;
}

.split-feature__panel {
  background:
    linear-gradient(135deg, var(--section-panel-wash, var(--accent-dim)), transparent 56%),
    linear-gradient(90deg, color-mix(in srgb, var(--text) 4%, transparent) 1px, transparent 1px),
    linear-gradient(180deg, color-mix(in srgb, var(--text) 3%, transparent) 1px, transparent 1px),
    var(--bg-light);
  background-size: auto, 96px 96px, 96px 96px, auto;
}

.split-feature--dark .split-feature__panel {
  background:
    linear-gradient(135deg, var(--section-panel-wash), transparent 58%),
    linear-gradient(90deg, color-mix(in srgb, var(--section-accent) 12%, transparent) 1px, transparent 1px),
    linear-gradient(180deg, color-mix(in srgb, var(--text) 4%, transparent) 1px, transparent 1px),
    var(--bg-light);
  background-size: auto, 104px 104px, 104px 104px, auto;
}

.split-feature__panel::after {
  content: "";
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: clamp(34px, 6vw, 86px);
  height: 1px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--section-accent, var(--accent)) 52%, transparent), transparent 70%);
  opacity: 0.34;
  pointer-events: none;
}

.split-feature__title {
  max-width: 8.7ch;
  text-wrap: balance;
}

.split-feature__diagnostic {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: min(100%, 520px);
  margin-top: clamp(40px, 7vh, 96px);
  border-top: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  border-left: 1px solid color-mix(in srgb, var(--text) 8%, transparent);
}

.split-feature__diagnostic span {
  display: grid;
  gap: 7px;
  min-width: 0;
  min-height: 82px;
  padding: 17px 18px 16px;
  border-right: 1px solid color-mix(in srgb, var(--text) 8%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--text) 8%, transparent);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--section-accent, var(--accent)) 8%, transparent), transparent 66%),
    color-mix(in srgb, var(--bg-mid) 42%, transparent);
}

.split-feature__diagnostic span:first-child {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--section-accent, var(--accent)) 18%, transparent), transparent 68%),
    color-mix(in srgb, var(--bg-mid) 62%, transparent);
}

.split-feature__diagnostic b,
.split-feature__diagnostic em {
  display: block;
  overflow-wrap: anywhere;
}

.split-feature__diagnostic b {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.split-feature__diagnostic em {
  color: var(--text-muted);
  font-size: 0.84rem;
  font-style: normal;
  line-height: 1.35;
}

.split-feature__visual {
  right: clamp(20px, 3.2vw, 56px);
  top: clamp(38px, 6.2vw, 104px);
  width: clamp(190px, 16vw, 270px);
  height: clamp(150px, 14vw, 230px);
  opacity: 0.82;
  transform: translate3d(calc((var(--artifact-x) - 50%) * 0.025), calc((var(--artifact-y) - 50%) * 0.025), 0);
  transition:
    opacity 0.35s ease,
    transform 0.55s var(--ease-out-expo);
}

.conversion-artifact,
.workflow-artifact {
  filter: drop-shadow(0 24px 38px color-mix(in srgb, #000 18%, transparent));
}

.split-feature__visual--automation {
  right: clamp(12px, 2vw, 30px);
  width: clamp(160px, 13vw, 218px);
  height: clamp(138px, 12vw, 196px);
  opacity: 0.72;
}

.conversion-artifact *,
.workflow-artifact * {
  box-sizing: border-box;
}

.conversion-artifact :where(span, b, i),
.workflow-artifact :where(span, b, i) {
  position: static;
  display: inline;
  width: auto;
  height: auto;
  margin: 0;
  border: 0;
  background: transparent;
  vertical-align: baseline;
}

.conversion-artifact__browser {
  position: absolute;
  top: 4%;
  right: 0;
  width: 72%;
  height: 70%;
  border: 1px solid color-mix(in srgb, var(--text) 18%, transparent);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg-mid) 78%, transparent), color-mix(in srgb, var(--bg-mid) 52%, transparent)),
    color-mix(in srgb, var(--bg-light) 76%, transparent);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, #fff 8%, transparent),
    0 18px 34px color-mix(in srgb, #000 16%, transparent);
}

.conversion-artifact__browser::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 24%, color-mix(in srgb, var(--text) 7%, transparent) 24% 24.5%, transparent 24.5%),
    linear-gradient(180deg, transparent 0 31%, color-mix(in srgb, var(--text) 7%, transparent) 31% 31.5%, transparent 31.5%);
  opacity: 0.8;
}

.conversion-artifact__bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20%;
  border-bottom: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
  background: color-mix(in srgb, var(--bg-mid) 74%, transparent);
}

.conversion-artifact__bar i {
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--text) 18%, transparent);
  transform: translateY(-50%);
}

.conversion-artifact__bar i:nth-child(1) {
  left: 10px;
}

.conversion-artifact__bar i:nth-child(2) {
  left: 22px;
}

.conversion-artifact__bar i:nth-child(3) {
  left: 34px;
  background: color-mix(in srgb, var(--section-accent) 62%, transparent);
}

.conversion-artifact__hero,
.conversion-artifact__line,
.conversion-artifact__cta,
.conversion-artifact__form {
  position: absolute;
  z-index: 1;
}

.conversion-artifact__hero {
  left: 9%;
  top: 34%;
  width: 43%;
  height: 9%;
  background: color-mix(in srgb, var(--section-accent) 62%, transparent);
}

.conversion-artifact__line {
  left: 9%;
  height: 1px;
  background: color-mix(in srgb, var(--text) 18%, transparent);
}

.conversion-artifact__line--one {
  top: 49%;
  width: 56%;
}

.conversion-artifact__line--two {
  top: 59%;
  width: 44%;
}

.conversion-artifact__cta {
  left: 9%;
  bottom: 14%;
  width: 33%;
  height: 12%;
  border: 1px solid color-mix(in srgb, var(--section-accent) 56%, transparent);
  background: color-mix(in srgb, var(--section-accent) 16%, transparent);
}

.conversion-artifact__form {
  right: 9%;
  top: 38%;
  width: 26%;
  height: 44%;
  border: 1px solid color-mix(in srgb, var(--text) 13%, transparent);
}

.conversion-artifact__form::before,
.conversion-artifact__form::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  height: 1px;
  background: color-mix(in srgb, var(--text) 16%, transparent);
}

.conversion-artifact__form::before {
  top: 32%;
}

.conversion-artifact__form::after {
  top: 58%;
}

.conversion-artifact__path {
  position: absolute;
  left: 4%;
  right: 18%;
  bottom: 6%;
  height: 36%;
}

.conversion-artifact__path::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 10%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, var(--section-accent), color-mix(in srgb, var(--section-accent-2) 64%, transparent), transparent);
}

.conversion-artifact__path i {
  position: absolute;
  top: 50%;
  width: 13px;
  height: 13px;
  border: 1px solid color-mix(in srgb, var(--section-accent) 58%, transparent);
  background: color-mix(in srgb, var(--bg-mid) 88%, transparent);
  transform: translateY(-50%) rotate(45deg);
}

.conversion-artifact__path i:nth-child(1) {
  left: 5%;
}

.conversion-artifact__path i:nth-child(2) {
  left: 45%;
}

.conversion-artifact__path i:nth-child(3) {
  right: 6%;
  background: color-mix(in srgb, var(--section-accent) 42%, transparent);
}

.conversion-artifact__metric {
  position: absolute;
  left: 0;
  bottom: 13%;
  display: grid;
  min-width: 76px;
  padding: 11px 12px 10px;
  border: 1px solid color-mix(in srgb, var(--section-accent) 48%, transparent);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--section-accent) 14%, transparent), transparent),
    color-mix(in srgb, var(--bg-mid) 74%, transparent);
}

.conversion-artifact__metric b {
  display: block;
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
}

.conversion-artifact__metric span {
  display: block;
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.workflow-artifact__map {
  position: absolute;
  inset: 0 0 26%;
}

.workflow-artifact__node {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 68px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid color-mix(in srgb, var(--section-accent) 42%, transparent);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--section-accent) 16%, transparent), transparent 70%),
    color-mix(in srgb, var(--bg-mid) 78%, transparent);
  color: var(--text);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 14px 28px color-mix(in srgb, #000 16%, transparent);
}

.workflow-artifact__node--trigger {
  left: 0;
  top: 42%;
}

.workflow-artifact__node--score {
  left: 38%;
  top: 12%;
  border-radius: 50%;
  min-width: 58px;
  min-height: 58px;
}

.workflow-artifact__node--review {
  left: 42%;
  bottom: 3%;
  border-color: color-mix(in srgb, var(--section-accent-2) 48%, transparent);
}

.workflow-artifact__node--sync {
  right: 0;
  top: 42%;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--section-accent-2) 20%, transparent), transparent 70%),
    color-mix(in srgb, var(--bg-mid) 80%, transparent);
}

.workflow-artifact__link {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--section-accent) 70%, transparent), color-mix(in srgb, var(--section-accent-2) 46%, transparent));
  transform-origin: left center;
}

.workflow-artifact__link--one {
  left: 18%;
  top: 51%;
  width: 29%;
  transform: rotate(-31deg);
}

.workflow-artifact__link--two {
  left: 52%;
  top: 38%;
  width: 29%;
  transform: rotate(31deg);
}

.workflow-artifact__link--three {
  left: 24%;
  bottom: 17%;
  width: 52%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--section-accent-2) 54%, transparent));
}

.workflow-artifact__log {
  position: absolute;
  left: 10%;
  right: 2%;
  bottom: 0;
  display: grid;
  gap: 7px;
  padding: 13px 14px;
  border: 1px solid color-mix(in srgb, var(--text) 13%, transparent);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--section-accent) 10%, transparent), transparent 70%),
    color-mix(in srgb, var(--bg-mid) 76%, transparent);
}

.workflow-artifact__log span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.workflow-artifact__log span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: color-mix(in srgb, var(--section-accent-2) 62%, transparent);
}

.feature-list--system {
  gap: 10px;
  border-top: 0;
}

.feature-list--system li {
  position: relative;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-width: 0;
  padding: 18px 18px 17px;
  border: 1px solid color-mix(in srgb, var(--text) 9%, transparent);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--section-accent, var(--accent)) 7%, transparent), transparent 76%),
    color-mix(in srgb, var(--bg-mid) 48%, transparent);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.32s var(--ease-out-expo);
}

.feature-list--system li::before {
  content: none;
}

.feature-list--system li:first-child {
  border-color: color-mix(in srgb, var(--section-accent, var(--accent)) 38%, var(--border));
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--section-accent, var(--accent)) 13%, transparent), transparent 74%),
    color-mix(in srgb, var(--bg-mid) 58%, transparent);
}

.feature-list--system li:hover {
  border-color: color-mix(in srgb, var(--section-accent, var(--accent)) 46%, transparent);
  transform: translateX(8px);
}

.feature-list__marker {
  display: block;
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border: 1px solid color-mix(in srgb, var(--section-accent, var(--accent)) 70%, transparent);
  background: color-mix(in srgb, var(--section-accent, var(--accent)) 22%, transparent);
}

.feature-list--system li:first-child .feature-list__marker {
  background: var(--section-accent, var(--accent));
}

.feature-list--system b,
.feature-list--system em {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.feature-list--system b {
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.feature-list--system em {
  max-width: 64ch;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.55;
}

.split-feature__link {
  gap: 14px;
  border-bottom-color: color-mix(in srgb, var(--text) 42%, transparent);
  color: var(--text);
}

.split-feature__link::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--section-accent, var(--accent)), transparent);
  transform-origin: left center;
  transition:
    transform 0.3s var(--ease-out-expo),
    background-color 0.25s ease;
}

.split-feature__link:hover::after,
.split-feature__link:focus-visible::after {
  transform: scaleX(1.45);
}

.motion-ready .split-feature__panel.motion-reveal .conversion-artifact__browser,
.motion-ready .split-feature__panel.motion-reveal .conversion-artifact__path,
.motion-ready .split-feature__panel.motion-reveal .conversion-artifact__metric,
.motion-ready .split-feature__panel.motion-reveal .workflow-artifact__map,
.motion-ready .split-feature__panel.motion-reveal .workflow-artifact__log,
.motion-ready .split-feature__panel.motion-reveal .split-feature__diagnostic span {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}

.motion-ready .split-feature__panel.motion-in .conversion-artifact__browser,
.motion-ready .split-feature__panel.motion-in .conversion-artifact__path,
.motion-ready .split-feature__panel.motion-in .conversion-artifact__metric,
.motion-ready .split-feature__panel.motion-in .workflow-artifact__map,
.motion-ready .split-feature__panel.motion-in .workflow-artifact__log,
.motion-ready .split-feature__panel.motion-in .split-feature__diagnostic span {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.72s ease,
    transform 0.9s var(--ease-out-expo);
}

.motion-ready .split-feature__panel.motion-in .conversion-artifact__path,
.motion-ready .split-feature__panel.motion-in .workflow-artifact__log,
.motion-ready .split-feature__panel.motion-in .split-feature__diagnostic span:nth-child(2) {
  transition-delay: 120ms;
}

.motion-ready .split-feature__panel.motion-in .conversion-artifact__metric,
.motion-ready .split-feature__panel.motion-in .split-feature__diagnostic span:nth-child(3) {
  transition-delay: 210ms;
}

.motion-ready .split-feature__panel.motion-in .split-feature__diagnostic span:nth-child(4) {
  transition-delay: 300ms;
}

.motion-ready .split-feature__content.motion-reveal .feature-list--system li {
  opacity: 0;
  transform: translate3d(16px, 0, 0);
}

.motion-ready .split-feature__content.motion-in .feature-list--system li {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.66s ease,
    transform 0.74s var(--ease-out-expo),
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.motion-ready .split-feature__content.motion-in .feature-list--system li:nth-child(2) {
  transition-delay: 80ms;
}

.motion-ready .split-feature__content.motion-in .feature-list--system li:nth-child(3) {
  transition-delay: 150ms;
}

.motion-ready .split-feature__content.motion-in .feature-list--system li:nth-child(4) {
  transition-delay: 220ms;
}

.motion-ready .split-feature__content.motion-in .feature-list--system li:nth-child(5) {
  transition-delay: 290ms;
}

@media (min-width: 1101px) {
  .service-deck.deck-motion-ready .split-feature__panel::after {
    bottom: clamp(46px, 7vw, 104px);
  }
}

@media (max-width: 1100px) {
  .split-feature__panel {
    min-height: 0;
  }
}

@media (max-width: 1200px) {
  .split-feature__visual {
    width: clamp(190px, 22vw, 270px);
    height: clamp(158px, 19vw, 236px);
    opacity: 0.62;
  }

  .split-feature__diagnostic {
    margin-top: 40px;
  }
}

@media (max-width: 900px) {
  .split-feature__title {
    max-width: 10ch;
  }

  .split-feature__visual {
    top: 36px;
    right: 24px;
    width: 188px;
    height: 156px;
    opacity: 0.42;
  }

  .split-feature__diagnostic {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .split-feature__panel::after {
    left: var(--gutter);
    right: var(--gutter);
    bottom: 26px;
  }

  .split-feature__visual {
    top: 30px;
    right: 16px;
    width: 134px;
    height: 112px;
    opacity: 0.34;
  }

  .split-feature__diagnostic {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .split-feature__diagnostic span {
    min-height: 0;
    padding: 14px 15px;
  }

  .feature-list--system {
    gap: 8px;
  }

  .feature-list--system li {
    grid-template-columns: 14px minmax(0, 1fr);
    gap: 12px;
    padding: 16px 14px;
  }

  .feature-list--system li:hover {
    transform: none;
  }

  .feature-list--system em {
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .split-feature__visual,
  .split-feature__link::after,
  .feature-list--system li,
  .motion-ready .split-feature__panel.motion-reveal .conversion-artifact__browser,
  .motion-ready .split-feature__panel.motion-reveal .conversion-artifact__path,
  .motion-ready .split-feature__panel.motion-reveal .conversion-artifact__metric,
  .motion-ready .split-feature__panel.motion-reveal .workflow-artifact__map,
  .motion-ready .split-feature__panel.motion-reveal .workflow-artifact__log,
  .motion-ready .split-feature__panel.motion-reveal .split-feature__diagnostic span,
  .motion-ready .split-feature__content.motion-reveal .feature-list--system li {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Why Together bridge: keep the page rhythm light, but make the handoff visible. */
.advantage-band {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.72fr);
  gap: clamp(54px, 8vw, 132px);
  align-items: center;
  min-height: min(820px, 82vh);
  padding: clamp(118px, 9vw, 168px) var(--gutter);
  background:
    radial-gradient(circle at 12% 18%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 32%),
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 9%, transparent), transparent 44%),
    var(--bg-light);
  color: var(--text);
  overflow: hidden;
}

.advantage-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--text) 4%, transparent) 1px, transparent 1px),
    linear-gradient(180deg, color-mix(in srgb, var(--text) 3%, transparent) 1px, transparent 1px);
  background-size: 104px 104px;
  opacity: 0.62;
  pointer-events: none;
}

.advantage-band::after {
  right: var(--gutter);
  top: clamp(92px, 10vw, 160px);
  width: min(36vw, 360px);
  background: linear-gradient(90deg, transparent, var(--accent));
  opacity: 0.72;
}

.advantage-band__intro,
.advantage-band__system {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.advantage-band .cap-section__eyebrow {
  grid-column: auto;
  color: var(--text-muted);
}

.advantage-band .cap-section__eyebrow::before {
  background: var(--text-muted);
}

.advantage-band h2 {
  max-width: 820px;
  margin-top: clamp(64px, 9vw, 124px);
  font-size: clamp(3.1rem, 5.45vw, 6.85rem);
  line-height: 0.94;
  letter-spacing: -0.048em;
  color: var(--text);
}

.advantage-band__system {
  display: grid;
  gap: clamp(30px, 4vw, 48px);
}

.advantage-band__flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  border: 1px solid color-mix(in srgb, var(--text) 11%, transparent);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 9%, transparent), transparent 68%),
    color-mix(in srgb, var(--bg-mid) 46%, transparent);
}

.advantage-band__flow::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--text) 18%, transparent));
  opacity: 0.78;
}

.advantage-band__flow li {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 150px;
  padding: 58px 18px 20px;
  border-right: 1px solid color-mix(in srgb, var(--text) 9%, transparent);
}

.advantage-band__flow li:last-child {
  border-right: 0;
}

.advantage-band__flow li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 31px;
  width: 14px;
  height: 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 68%, transparent);
  background: color-mix(in srgb, var(--bg-mid) 82%, transparent);
  transform: rotate(45deg);
}

.advantage-band__flow li:first-child::before,
.advantage-band__flow li:last-child::before {
  background: var(--accent);
}

.advantage-band__flow span,
.advantage-band__flow small {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.advantage-band__flow span {
  color: var(--text);
  font-size: 0.83rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.advantage-band__flow small {
  margin-top: 7px;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.advantage-band__system p {
  max-width: 610px;
  margin-top: 0;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  color: color-mix(in srgb, var(--text) 68%, var(--text-muted));
  font-size: clamp(1.02rem, 1.17vw, 1.16rem);
  line-height: 1.72;
}

.advantage-band__system p::before {
  width: 82px;
  background: var(--accent);
}

.motion-ready .advantage-band__flow li.motion-reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}

.motion-ready .advantage-band__flow li.motion-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.62s ease,
    transform 0.76s var(--ease-out-expo),
    background-color 0.24s ease;
}

.motion-ready .advantage-band__flow li.motion-in:nth-child(2) {
  transition-delay: 90ms;
}

.motion-ready .advantage-band__flow li.motion-in:nth-child(3) {
  transition-delay: 170ms;
}

.motion-ready .advantage-band__flow li.motion-in:nth-child(4) {
  transition-delay: 250ms;
}

@media (hover: hover) and (pointer: fine) {
  .advantage-band__flow li {
    transition:
      background-color 0.24s ease,
      border-color 0.24s ease;
  }

  .advantage-band__flow li:hover {
    background: color-mix(in srgb, var(--accent) 8%, transparent);
  }
}

@media (max-width: 1100px) {
  .advantage-band {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: 0;
  }

  .advantage-band h2 {
    max-width: 780px;
    margin-top: 42px;
  }

  .advantage-band__system p {
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  .advantage-band {
    padding: var(--mobile-section-y-lg) var(--gutter);
  }

  .advantage-band::after {
    display: none;
  }

  .advantage-band h2 {
    font-size: clamp(2.6rem, 12vw, 4.1rem);
    letter-spacing: -0.045em;
  }

  .advantage-band__flow {
    grid-template-columns: 1fr;
  }

  .advantage-band__flow::before {
    left: 25px;
    right: auto;
    top: 28px;
    bottom: 28px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, var(--accent), color-mix(in srgb, var(--text) 15%, transparent));
  }

  .advantage-band__flow li {
    min-height: 0;
    padding: 18px 18px 18px 54px;
    border-right: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--text) 9%, transparent);
  }

  .advantage-band__flow li:last-child {
    border-bottom: 0;
  }

  .advantage-band__flow li::before {
    left: 18px;
    top: 22px;
    width: 12px;
    height: 12px;
  }
}

/* Kinetic marquee: a refined transition rail between thesis and proof. */
.kinetic-statement {
  position: relative;
  isolation: isolate;
  padding: clamp(40px, 5.2vw, 68px) 0 clamp(46px, 5.8vw, 78px);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 8%, transparent), transparent 38%),
    var(--ink);
  color: var(--cream);
  border-top: 1px solid color-mix(in srgb, var(--cream) 12%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--cream) 12%, transparent);
}

.kinetic-statement::before,
.kinetic-statement::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.kinetic-statement::before {
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--cream) 5%, transparent) 1px, transparent 1px),
    linear-gradient(180deg, color-mix(in srgb, var(--cream) 4%, transparent) 1px, transparent 1px);
  background-size: 104px 104px;
  opacity: 0.42;
}

.kinetic-statement::after {
  left: var(--gutter);
  right: var(--gutter);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.7;
}

.kinetic-statement__meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0 var(--gutter) clamp(22px, 3vw, 38px);
  color: color-mix(in srgb, var(--cream) 58%, transparent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.kinetic-statement__meta span:last-child {
  color: color-mix(in srgb, var(--accent) 72%, var(--cream));
}

.kinetic-statement__track {
  gap: clamp(18px, 2.4vw, 42px);
  padding-inline: var(--gutter);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.kinetic-statement__track span {
  display: inline-block;
  font-size: clamp(2.9rem, 7.2vw, 7.8rem);
  font-weight: 600;
  letter-spacing: -0.044em;
  line-height: 0.9;
  color: color-mix(in srgb, var(--cream) 88%, transparent);
  text-transform: lowercase;
}

.kinetic-statement__track span:nth-of-type(2n) {
  color: var(--accent);
}

.kinetic-statement__track i {
  display: block;
  width: clamp(14px, 1.4vw, 24px);
  height: clamp(14px, 1.4vw, 24px);
  flex: 0 0 auto;
  border: 1px solid color-mix(in srgb, var(--accent) 68%, transparent);
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  transform: rotate(45deg);
}

.kinetic-statement__track i:nth-of-type(2n) {
  background: transparent;
}

@media (max-width: 768px) {
  .kinetic-statement {
    padding: 34px 0 40px;
  }

  .kinetic-statement__meta {
    margin-bottom: 20px;
    font-size: 0.64rem;
  }

  .kinetic-statement__track {
    gap: 14px;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, #000 0%, #000 92%, transparent);
  }

  .kinetic-statement__track span {
    font-size: clamp(2.55rem, 12vw, 3.7rem);
    line-height: 0.94;
  }

  .kinetic-statement__track i {
    width: 13px;
    height: 13px;
  }

  .kinetic-statement__track span:nth-of-type(n+2),
  .kinetic-statement__track i:nth-of-type(n+2) {
    display: none;
  }
}

@media (max-width: 520px) {
  .kinetic-statement__meta {
    display: grid;
    justify-content: start;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kinetic-statement__track {
    transform: none !important;
  }
}

/* Proof of Work: real artifacts with concise case context. */
.projects-slider-section {
  padding-bottom: clamp(60px, 6.8vw, 96px);
  background:
    linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--text) 1.6%, transparent) 42%, transparent 100%),
    var(--bg);
}

.projects-slider__header {
  min-height: 0;
  padding-top: clamp(64px, 7.4vw, 98px);
  padding-bottom: clamp(38px, 4.4vw, 54px);
}

.projects-slider__heading {
  max-width: 8.5ch;
  color: var(--text);
  text-wrap: balance;
}

.projects-slider__p {
  max-width: 40rem;
  font-size: clamp(1rem, 1.12vw, 1.12rem);
  color: color-mix(in srgb, var(--text) 64%, transparent);
}

.projects-swiper {
  padding-top: clamp(28px, 3.6vw, 44px) !important;
  padding-bottom: 28px !important;
}

.projects-slider-section .swiper-wrapper {
  align-items: stretch;
}

.projects-swiper__slide {
  display: flex;
  width: clamp(500px, 38vw, 620px) !important;
}

.proof-card {
  gap: 0;
  width: 100%;
  height: 100%;
  cursor: grab;
  color: var(--text);
  background: transparent;
  contain: layout paint;
  -webkit-user-select: none;
  user-select: none;
}

.proof-card:active {
  cursor: grabbing;
}

.proof-card .project-card__visual {
  isolation: isolate;
  padding: 0;
  background: #050605;
  border-color: color-mix(in srgb, var(--text) 14%, transparent);
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--text) 10%, transparent);
}

.proof-card .project-card__visual::before {
  inset: 14px;
  z-index: 3;
  border-color: color-mix(in srgb, #ffffff 15%, transparent);
}

.proof-card .project-card__visual::after {
  z-index: 2;
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.22) 34%, transparent 64%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.44) 0%, transparent 48%);
}

.proof-card__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.04) brightness(0.9);
  transform: scale(1.012);
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  transition:
    transform 0.75s var(--ease-out-expo),
    filter 0.75s ease;
}

.proof-card:hover .proof-card__visual img {
  transform: scale(1.045);
  filter: saturate(0.98) contrast(1.08) brightness(0.96);
}

.proof-card__caption {
  position: absolute;
  left: clamp(22px, 2.7vw, 34px);
  right: clamp(22px, 2.7vw, 34px);
  top: clamp(22px, 2.7vw, 30px);
  z-index: 4;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: calc(100% - 44px);
  margin: 0;
  color: #fff;
}

.proof-card__caption span,
.proof-card__caption b {
  width: max-content;
  max-width: 100%;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.42);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.proof-card__caption b {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
  text-shadow: none;
}

.proof-card .project-card__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto minmax(104px, auto) auto;
  gap: 15px;
  flex: 1 1 auto;
  min-height: clamp(292px, 20vw, 304px);
  padding: clamp(18px, 2vw, 24px);
  border-color: color-mix(in srgb, var(--text) 12%, transparent);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg-mid) 88%, transparent), color-mix(in srgb, var(--bg) 92%, transparent)),
    var(--bg-mid);
}

.proof-card .project-card__tags {
  gap: 8px;
  flex-wrap: wrap;
}

.proof-card .project-card__tag {
  border-radius: 0;
  background: color-mix(in srgb, var(--text) 3.5%, transparent);
  color: color-mix(in srgb, var(--text) 64%, transparent);
  font-size: 0.62rem;
  padding: 4px 9px;
}

.proof-card .project-card__info {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 104px;
}

.proof-card .project-card__title {
  margin: 0;
  min-height: 1.95em;
  font-size: clamp(1.55rem, 2.25vw, 2rem);
  text-wrap: balance;
}

.proof-card .project-card__subtitle {
  max-width: 42rem;
  color: color-mix(in srgb, var(--text) 62%, transparent);
  font-size: clamp(0.88rem, 0.95vw, 0.96rem);
  letter-spacing: 0;
  line-height: 1.52;
  text-wrap: pretty;
}

.proof-card__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 4px 0 0;
  border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
  background: color-mix(in srgb, var(--text) 2%, transparent);
}

.proof-card__proof div {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 12px 13px;
}

.proof-card__proof div + div {
  border-left: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
}

.proof-card__proof dt {
  color: var(--accent);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.proof-card__proof dd {
  min-width: 0;
  margin: 0;
  color: color-mix(in srgb, var(--text) 72%, transparent);
  font-size: clamp(0.76rem, 0.82vw, 0.84rem);
  line-height: 1.35;
  text-wrap: balance;
}

.projects-slider__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  color: color-mix(in srgb, var(--text) 46%, transparent);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.projects-slider__footer::before,
.projects-slider__footer::after {
  content: "";
  width: clamp(42px, 7vw, 92px);
  height: 1px;
  background: color-mix(in srgb, var(--text) 14%, transparent);
}

.projects-slider__footer .projects-slider__hint {
  display: inline-flex;
  margin: 0;
  padding: 8px 12px;
  transform: none;
  border-color: color-mix(in srgb, var(--text) 12%, transparent);
  background: color-mix(in srgb, var(--bg-mid) 76%, transparent);
  opacity: 1;
}

.projects-swiper:focus-visible {
  outline: 1px solid color-mix(in srgb, var(--accent) 72%, transparent);
  outline-offset: 8px;
}

[data-theme="light"] .proof-card .project-card__visual::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.18) 38%, transparent 68%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.34) 0%, transparent 48%);
}

[data-theme="light"] .proof-card .project-card__content {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), color-mix(in srgb, var(--bg-mid) 92%, white)),
    var(--bg-mid);
}

@media (max-width: 1100px) {
  .projects-slider__heading {
    max-width: 11ch;
  }

  .projects-slider__p {
    max-width: var(--content-measure);
  }
}

@media (max-width: 900px) {
  .projects-swiper__slide {
    width: min(88vw, 340px) !important;
  }

  .proof-card {
    cursor: default;
  }
}

@media (max-width: 768px) {
  .projects-slider-section {
    padding-bottom: 70px;
  }

  .projects-slider__header {
    padding-top: 72px;
    padding-bottom: 34px;
  }

  .projects-slider__heading {
    max-width: 8.5ch;
    font-size: clamp(3rem, 15vw, 4.9rem);
  }

  .projects-slider__p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .projects-swiper {
    padding-top: 14px !important;
  }

  .projects-slider__container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .projects-slider__container::-webkit-scrollbar {
    display: none;
  }

  .projects-slider__container .projects-swiper {
    width: max-content;
    overflow: visible !important;
  }

  .projects-slider__container .swiper-wrapper {
    display: flex;
    grid-template-columns: none;
    width: max-content;
    gap: 16px;
    transform: none !important;
  }

  .projects-slider__container .projects-swiper__slide {
    flex: 0 0 auto;
    width: min(88vw, 340px) !important;
    scroll-snap-align: start;
  }

  .project-card-slider.proof-card {
    border-color: color-mix(in srgb, var(--text) 13%, transparent);
  }

  .proof-card .project-card__visual {
    aspect-ratio: 16 / 10;
  }

  .proof-card .project-card__visual::before {
    inset: 14px;
  }

  .proof-card__caption {
    left: 20px;
    right: 20px;
    top: 20px;
    gap: 8px;
  }

  .proof-card__caption span {
    padding: 7px 9px;
    font-size: 0.58rem;
  }

  .proof-card .project-card__content {
    grid-template-rows: auto minmax(132px, auto) auto;
    gap: 18px;
    min-height: 445px;
    padding: 20px;
  }

  .proof-card .project-card__info {
    min-height: 132px;
  }

  .proof-card .project-card__subtitle {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .proof-card__proof {
    grid-template-columns: 1fr;
  }

  .proof-card__proof div {
    padding: 14px 15px;
  }

  .proof-card__proof div + div {
    border-left: 0;
    border-top: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
  }

  .projects-slider__footer {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .proof-card__visual img {
    transition: none;
    transform: none;
  }

  .proof-card:hover .proof-card__visual img {
    transform: none;
  }
}

/* About: show the operating principle behind the proof, not a decorative mark. */
.about {
  grid-template-columns: minmax(420px, 0.88fr) minmax(0, 1.12fr);
  min-height: clamp(620px, 76vh, 780px);
  background: var(--bg);
}

.about__photo-wrap.about__system-panel {
  display: grid;
  place-items: center;
  min-height: clamp(620px, 76vh, 780px);
  padding: clamp(76px, 7vw, 110px) clamp(34px, 5.2vw, 78px);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 15%, transparent), transparent 42%),
    linear-gradient(180deg, color-mix(in srgb, var(--text) 3%, transparent), transparent 38%),
    var(--bg-light);
}

.about__photo-wrap.about__system-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(color-mix(in srgb, var(--text) 7%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--text) 7%, transparent) 1px, transparent 1px);
  background-size: 128px 128px;
  mask-image: linear-gradient(135deg, black, transparent 74%);
  opacity: 0.38;
}

.about__photo-label {
  position: absolute;
  top: clamp(44px, 5vw, 72px);
  left: clamp(28px, 5vw, 80px);
  z-index: 3;
}

.about-system {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(18px, 2.3vw, 28px);
  width: min(100%, 540px);
  border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg-mid) 80%, transparent), color-mix(in srgb, var(--bg) 92%, transparent)),
    var(--bg);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--text) 8%, transparent),
    0 28px 90px rgba(0, 0, 0, 0.16);
  padding: clamp(18px, 2.6vw, 28px);
}

.about-system__header,
.about-system__handoff {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.about-system__header {
  border-bottom: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
  padding-bottom: 16px;
}

.about-system__header span,
.about-system__header b,
.about-system__handoff b,
.about-system__handoff em,
.about-system__node span,
.about-system__node em {
  font-family: var(--font-sans);
}

.about-system__header span,
.about-system__node span,
.about-system__handoff b {
  color: color-mix(in srgb, var(--text) 72%, transparent);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.about-system__header b {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.about-system__canvas {
  position: relative;
  min-height: clamp(300px, 29vw, 360px);
}

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

.about-system__route path {
  stroke: color-mix(in srgb, var(--accent) 72%, var(--text));
  stroke-width: 2;
  stroke-linecap: square;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.25s var(--ease-out-expo);
}

.about-system__node {
  position: absolute;
  display: grid;
  gap: 8px;
  width: clamp(118px, 10vw, 150px);
  min-height: 92px;
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--text) 13%, transparent);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg-mid) 86%, transparent), color-mix(in srgb, var(--bg) 94%, transparent)),
    var(--bg);
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--text) 8%, transparent);
  transition:
    border-color 0.3s ease,
    transform 0.6s var(--ease-out-expo),
    opacity 0.5s ease;
}

.about-system__node::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 30px;
  height: 2px;
  background: var(--accent);
  transform-origin: left center;
}

.about-system__node b {
  color: var(--text);
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1;
}

.about-system__node em {
  color: color-mix(in srgb, var(--text) 52%, transparent);
  font-size: 0.76rem;
  font-style: normal;
  line-height: 1.35;
}

.about-system__node--offer {
  left: 0;
  top: 4%;
}

.about-system__node--page {
  left: 36%;
  top: 4%;
}

.about-system__node--form {
  right: 0;
  top: 32%;
}

.about-system__node--follow {
  left: 36%;
  bottom: 0;
}

.about-system__node--crm {
  left: 0;
  bottom: 0;
}

.about-system__handoff {
  align-items: flex-start;
  justify-content: flex-start;
  border-top: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
  padding-top: 18px;
}

.about-system__handoff > span {
  display: block;
  width: 9px;
  height: 9px;
  margin-top: 4px;
  flex: 0 0 auto;
  background: var(--accent);
  box-shadow: 0 0 0 7px color-mix(in srgb, var(--accent) 12%, transparent);
}

.about-system__handoff div {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.about-system__handoff em {
  color: color-mix(in srgb, var(--text) 58%, transparent);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.45;
}

.about__content {
  justify-content: center;
  gap: clamp(18px, 2vw, 24px);
  padding-top: clamp(84px, 7vw, 112px);
  padding-bottom: clamp(84px, 7vw, 112px);
}

.about__eyebrow {
  margin-bottom: clamp(4px, 1vw, 12px);
}

.about__heading {
  max-width: 16.5ch;
  font-size: clamp(3.1rem, 4.3vw, 4.7rem);
  margin-bottom: clamp(10px, 1.4vw, 18px);
  letter-spacing: 0;
  text-transform: none;
}

.about__heading-lead {
  line-height: 0.98;
}

.about__heading em {
  font-weight: 400;
}

.about__text {
  max-width: 66ch;
  color: color-mix(in srgb, var(--text) 62%, transparent);
}

.about__principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(10px, 1.8vw, 22px);
  border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
  list-style: none;
}

.about__principles li {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: clamp(16px, 1.8vw, 22px);
}

.about__principles li + li {
  border-left: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
}

.about__principles b {
  color: var(--text);
  font-size: clamp(0.96rem, 1vw, 1.05rem);
  line-height: 1.1;
  text-wrap: balance;
}

.about__principles span {
  color: color-mix(in srgb, var(--text) 56%, transparent);
  font-size: 0.92rem;
  line-height: 1.48;
  text-wrap: pretty;
}

.about__credibility {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.about__credibility span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
  color: color-mix(in srgb, var(--text) 58%, transparent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

[data-theme="light"] .about-system__header b {
  border-color: color-mix(in srgb, #16825f 38%, transparent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: #16825f;
}

[data-theme="light"] .about-system__route path {
  stroke: #25966e;
}

[data-theme="light"] .about-system__node::after,
[data-theme="light"] .about-system__handoff > span {
  background: #35c993;
}

.motion-ready .about__photo-wrap.motion-reveal .about-system__route path {
  stroke-dashoffset: 1;
}

.motion-ready .about__photo-wrap.motion-in .about-system__route path {
  stroke-dashoffset: 0;
}

.motion-ready .about__photo-wrap.motion-reveal .about-system__node,
.motion-ready .about__photo-wrap.motion-reveal .about-system__handoff,
.motion-ready .about__content.motion-reveal .about__principles li,
.motion-ready .about__content.motion-reveal .about__credibility span {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
}

.motion-ready .about__photo-wrap.motion-in .about-system__node,
.motion-ready .about__photo-wrap.motion-in .about-system__handoff,
.motion-ready .about__content.motion-in .about__principles li,
.motion-ready .about__content.motion-in .about__credibility span {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.55s ease,
    transform 0.72s var(--ease-out-expo);
}

.motion-ready .about__photo-wrap.motion-in .about-system__node--page,
.motion-ready .about__content.motion-in .about__principles li:nth-child(2),
.motion-ready .about__content.motion-in .about__credibility span:nth-child(2) {
  transition-delay: 90ms;
}

.motion-ready .about__photo-wrap.motion-in .about-system__node--form,
.motion-ready .about__content.motion-in .about__principles li:nth-child(3),
.motion-ready .about__content.motion-in .about__credibility span:nth-child(3) {
  transition-delay: 180ms;
}

.motion-ready .about__photo-wrap.motion-in .about-system__node--follow {
  transition-delay: 270ms;
}

.motion-ready .about__photo-wrap.motion-in .about-system__node--crm,
.motion-ready .about__photo-wrap.motion-in .about-system__handoff {
  transition-delay: 360ms;
}

@media (hover: hover) and (pointer: fine) {
  .about-system:hover .about-system__node {
    border-color: color-mix(in srgb, var(--text) 20%, transparent);
  }

  .about-system:hover .about-system__node--form,
  .about-system:hover .about-system__node--follow {
    transform: translate3d(0, -4px, 0);
  }
}

@media (max-width: 1180px) {
  .about {
    grid-template-columns: minmax(360px, 0.84fr) minmax(0, 1.16fr);
  }

  .about-system__node {
    width: 126px;
  }

  .about__principles {
    grid-template-columns: 1fr;
  }

  .about__principles li + li {
    border-top: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
    border-left: 0;
  }
}

@media (max-width: 1024px) {
  .about {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about__photo-wrap.about__system-panel {
    min-height: 0;
    aspect-ratio: auto;
    padding: 92px var(--gutter) 56px;
  }

  .about-system {
    width: min(100%, 680px);
  }

  .about__content {
    padding-top: 64px;
  }

  .about__heading {
    max-width: 12ch;
  }
}

@media (max-width: 768px) {
  .about__photo-wrap.about__system-panel {
    width: calc(100% - (var(--gutter) * 2));
    margin: 18px var(--gutter) 0;
    padding: 56px 10px 10px;
    border: 1px solid var(--border);
  }

  .about__photo-label {
    top: 20px;
    left: 16px;
  }

  .about-system {
    gap: 12px;
    padding: 12px;
  }

  .about-system__header {
    padding-bottom: 12px;
  }

  .about-system__canvas {
    min-height: 216px;
  }

  .about-system__route {
    display: none;
  }

  .about-system__node {
    width: calc(50% - 6px);
    min-height: 68px;
    padding: 9px;
  }

  .about-system__node--offer,
  .about-system__node--crm {
    left: 0;
  }

  .about-system__node--page,
  .about-system__node--follow {
    left: auto;
    right: 0;
  }

  .about-system__node--offer,
  .about-system__node--page {
    top: 0;
  }

  .about-system__node--form {
    right: auto;
    left: 25%;
    top: 34%;
  }

  .about-system__node--crm,
  .about-system__node--follow {
    bottom: 0;
  }

  .about-system__node b {
    font-size: 0.9rem;
  }

  .about-system__node em {
    font-size: 0.64rem;
  }

  .about-system__handoff {
    padding-top: 14px;
  }

  .about-system__handoff em {
    font-size: 0.82rem;
  }

  .about__content {
    gap: 18px;
    padding: 46px var(--gutter) 72px;
  }

  .about__heading {
    max-width: 11.5ch;
    font-size: clamp(2.7rem, 11.2vw, 4.2rem);
    line-height: 0.98;
  }

  .about__text {
    font-size: 1rem;
    line-height: 1.62;
  }

  .about__principles li {
    padding: 16px;
  }

  .about__credibility {
    gap: 8px;
  }

  .about__credibility span {
    min-height: 32px;
    font-size: 0.63rem;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 420px) {
  .about-system__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .about-system__canvas {
    min-height: 232px;
  }

  .about__heading {
    max-width: 9.8ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-system__route path,
  .about-system__node,
  .about-system__handoff,
  .about__principles li,
  .about__credibility span {
    transform: none !important;
    transition: none !important;
  }

  .motion-ready .about__photo-wrap.motion-reveal .about-system__route path {
    stroke-dashoffset: 0;
  }
}

/* Scroll-linked process flow */
.process-section {
  --process-stick-top: calc(var(--nav-h) + 12px);
  --process-scroll-length: clamp(900px, 240svh, 2600px);
}

.process-section__stage {
  position: relative;
  z-index: 1;
  background: var(--bg-mid);
}

.process-section.process-flow-ready {
  min-height: calc(var(--process-stage-height, calc(100svh - var(--process-stick-top))) + var(--process-scroll-length));
}

.process-section.process-flow-ready .process-section__stage {
  position: sticky;
  top: var(--process-stick-top);
  min-height: calc(100svh - var(--process-stick-top));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-section.process-flow-ready .process-section__header {
  padding-top: clamp(56px, 7svh, 92px);
  padding-bottom: clamp(34px, 4vw, 52px);
}

.offers-section,
.faq-section {
  padding: 0 0 var(--section-padding);
}

.offers-section__header,
.faq-section__header {
  padding: clamp(56px, 7svh, 92px) var(--gutter) clamp(34px, 4vw, 52px);
}

.faq-list {
  margin-inline: var(--gutter);
}

.process-section.process-flow-ready .process-section__header .cap-section__heading {
  text-wrap: balance;
}

.process-steps {
  --process-progress: 0;
}

.process-steps::after {
  content: "";
  position: absolute;
  top: 53px;
  left: 53px;
  right: 53px;
  z-index: 1;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    var(--accent),
    color-mix(in srgb, var(--accent-small) 72%, transparent)
  );
  box-shadow: 0 0 24px color-mix(in srgb, var(--accent) 46%, transparent);
  opacity: 0.88;
  transform: scaleX(var(--process-progress));
  transform-origin: left center;
}

.process-step {
  --step-activity: 0;
  overflow: hidden;
  transform: none;
  will-change: transform, box-shadow;
}

.process-step.is-active {
  --step-activity: 1;
}

.process-step::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 53px 53px,
      color-mix(in srgb, var(--accent) 30%, transparent),
      transparent 42%
    ),
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--accent) 14%, transparent),
      transparent 58%
    );
  opacity: calc(var(--step-activity) * 0.72);
  transition: opacity 0.16s linear;
}

.process-step > * {
  position: relative;
  z-index: 1;
}

.process-step:hover {
  background: color-mix(in srgb, var(--accent) 4%, var(--bg-mid));
  border-color: color-mix(in srgb, var(--accent) 18%, var(--border));
  box-shadow: none;
  transform: none;
}

.process-step__number,
.process-step:first-child .process-step__number,
.process-step:hover .process-step__number {
  overflow: hidden;
  isolation: isolate;
  border-color: color-mix(in srgb, var(--accent) 28%, var(--border));
  background: color-mix(in srgb, var(--bg-mid) 86%, var(--accent));
  color: var(--text);
  box-shadow: 0 0 calc(34px * var(--step-activity)) color-mix(in srgb, var(--accent) 42%, transparent);
  transform: scale(calc(1 + (var(--step-activity) * 0.08)));
}

.process-step__number::before {
  content: "";
  display: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--accent);
  opacity: var(--step-activity);
  transition: opacity 0.16s linear;
}

.process-step.is-active .process-step__number {
  border-color: var(--accent);
  background: var(--accent);
  color: #111111;
}

.process-steps h3 {
  opacity: calc(0.9 + (var(--step-activity) * 0.1));
}

.process-steps p {
  opacity: calc(0.86 + (var(--step-activity) * 0.14));
}

@media (max-width: 1100px) {
  .process-section {
    --process-scroll-length: clamp(780px, 205svh, 2200px);
  }

  .process-steps::after {
    display: none;
  }

  .process-section.process-flow-ready .process-step {
    min-height: clamp(190px, 24svh, 260px);
  }

  .process-section.process-flow-ready .process-step:last-child {
    min-height: clamp(160px, 18svh, 220px);
  }
}

@media (max-width: 768px) {
  .process-section {
    --process-stick-top: calc(var(--nav-h) + 8px);
    --process-scroll-length: clamp(700px, 175svh, 1800px);
  }

  .process-section.process-flow-ready .process-section__stage {
    min-height: calc(100svh - var(--process-stick-top));
    justify-content: flex-start;
  }

  .process-section.process-flow-ready .process-section__header {
    padding: clamp(24px, 5svh, 42px) var(--gutter) 16px;
    gap: 16px;
  }

  .offers-section,
  .faq-section {
    padding-bottom: var(--mobile-section-y-lg);
  }

  .offers-section__header,
  .faq-section__header {
    padding: clamp(24px, 5svh, 42px) var(--gutter) 16px;
    gap: 16px;
  }

  .process-section.process-flow-ready .process-section__header .cap-section__heading {
    font-size: clamp(2rem, 8.5vw, 3rem);
    letter-spacing: -0.035em;
  }

  .process-section.process-flow-ready .cap-section__intro {
    font-size: 0.92rem;
    line-height: 1.48;
  }

  .process-section.process-flow-ready .process-steps {
    display: grid;
    grid-template-columns: 1fr;
  }

  .process-section.process-flow-ready .process-steps::before,
  .process-section.process-flow-ready .process-steps::after {
    display: block;
    top: 34px;
    bottom: 34px;
    left: 38px;
    right: auto;
    width: 1px;
    height: auto;
    transform-origin: top center;
  }

  .process-section.process-flow-ready .process-steps::after {
    z-index: 2;
    background: var(--accent);
    box-shadow: 0 0 22px color-mix(in srgb, var(--accent) 48%, transparent);
    opacity: 0.86;
    transform: scaleY(var(--process-progress));
  }

  .process-section.process-flow-ready .process-step,
  .process-section.process-flow-ready .process-step:nth-child(2n) {
    min-height: 0;
    padding: 13px 18px 13px 66px;
    gap: 5px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .process-section.process-flow-ready .process-step:last-child {
    min-height: 0;
    border-bottom: 0;
  }

  .process-section.process-flow-ready .process-step__number {
    position: absolute;
    top: 14px;
    left: 18px;
    width: 40px;
    height: 40px;
    font-size: 0.62rem;
  }

  .process-section.process-flow-ready .process-steps h3 {
    margin-top: 0;
    font-size: clamp(1rem, 4.4vw, 1.24rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
  }

  .process-section.process-flow-ready .process-steps p {
    max-width: none;
    font-size: 0.84rem;
    line-height: 1.36;
  }
}

@media (max-width: 420px) {
  .process-section.process-flow-ready .process-section__header {
    padding-top: 22px;
    padding-bottom: 12px;
  }

  .offers-section__header,
  .faq-section__header {
    padding-top: 22px;
    padding-bottom: 12px;
  }

  .process-section.process-flow-ready .process-section__header .cap-section__heading {
    font-size: clamp(1.86rem, 8vw, 2.18rem);
  }

  .process-section.process-flow-ready .cap-section__intro {
    font-size: 0.86rem;
  }

  .process-section.process-flow-ready .process-step,
  .process-section.process-flow-ready .process-step:nth-child(2n) {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .process-section.process-flow-ready .process-step__number {
    top: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-section.process-flow-ready {
    min-height: 0;
  }

  .process-section.process-flow-ready .process-section__stage {
    position: relative;
    top: auto;
    min-height: 0;
  }

  .process-step,
  .process-step::before,
  .process-step__number,
  .process-step__number::before {
    transition: none !important;
    transform: none !important;
  }
}

.offers-section.closing-cta {
  padding: clamp(76px, 8vw, 104px) var(--gutter);
  border-block: 1px solid var(--border);
  background:
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--bg-mid) 44%, var(--bg)) 0%,
      var(--bg) 34%,
      color-mix(in srgb, var(--bg-mid) 30%, var(--bg)) 100%
    );
}

.closing-cta__inner {
  width: min(100%, 1040px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.closing-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: color-mix(in srgb, var(--text-muted) 88%, var(--accent));
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.closing-cta__eyebrow::before,
.closing-cta__eyebrow::after {
  content: "";
  width: clamp(34px, 5vw, 64px);
  height: 1px;
  background: color-mix(in srgb, var(--text) 20%, transparent);
}

.closing-cta__heading {
  max-width: 900px;
  margin-top: clamp(28px, 3.2vw, 38px);
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 4.75vw, 4.75rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.01;
  text-wrap: balance;
}

.closing-cta__body {
  max-width: 690px;
  margin-top: clamp(22px, 2.4vw, 30px);
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.7;
  text-wrap: pretty;
}

.closing-cta__action-wrap {
  margin-top: clamp(26px, 3vw, 34px);
}

.closing-cta__button {
  min-width: 176px;
  justify-content: center;
}

.closing-cta__microcopy {
  max-width: 520px;
  margin-top: 16px;
  color: color-mix(in srgb, var(--text-muted) 74%, transparent);
  font-size: 0.9rem;
  line-height: 1.6;
  text-wrap: pretty;
}

@media (max-width: 768px) {
  .offers-section.closing-cta {
    padding: clamp(72px, 18vw, 108px) var(--gutter);
  }

  .closing-cta__inner {
    align-items: center;
  }

  .closing-cta__heading {
    max-width: 16ch;
    font-size: clamp(2.75rem, 10.4vw, 3.7rem);
    line-height: 1;
  }

  .closing-cta__body {
    max-width: 35rem;
  }

  .closing-cta__button {
    width: min(100%, 310px);
  }
}

@media (max-width: 420px) {
  .closing-cta__eyebrow {
    gap: 10px;
    font-size: 0.68rem;
    letter-spacing: 0;
  }

  .closing-cta__eyebrow::before,
  .closing-cta__eyebrow::after {
    width: 28px;
  }

  .closing-cta__heading {
    font-size: 2.52rem;
  }
}
