:root {
  --orange-50: #fff6ed;
  --orange-100: #ffead6;
  --orange-200: #ffd0a8;
  --orange-300: #ffb06b;
  --orange-400: #ff8533;
  --orange-500: #ff6800;
  --orange-600: #e55d00;
  --orange-700: #c44d00;
  --white: #ffffff;
  --cream: #fffaf5;
  --ink: #1c1917;
  --ink-soft: #44403c;
  --muted: #78716c;
  --line: rgba(255, 104, 0, 0.16);
  --shadow: 0 24px 60px rgba(255, 104, 0, 0.14);
  --radius: 18px;
  --header: 72px;
  --font: "Inter", system-ui, sans-serif;
  --display: "Plus Jakarta Sans", "Inter", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: clip;
}

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

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

button,
input {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0;
}

p {
  margin: 0;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 80;
  background: var(--ink);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

/* Fast top progress — tracks scroll through the page */
.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1100;
  pointer-events: none;
  background: rgba(255, 104, 0, 0.12);
  overflow: hidden;
}

.page-progress__bar {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--orange-400), var(--orange-500) 55%, var(--orange-600));
  box-shadow: 0 0 12px rgba(255, 104, 0, 0.45);
  will-change: transform;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-primary {
  background: linear-gradient(180deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(234, 88, 12, 0.28);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(234, 88, 12, 0.36);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--orange-400);
  color: var(--orange-700);
}

.btn-sm {
  padding: 8px 14px;
  font-size: 0.92rem;
}

.text-link {
  color: var(--ink-soft);
  font-weight: 500;
}

.text-link:hover,
.text-arrow:hover {
  color: var(--orange-600);
}

.text-arrow::after {
  content: " →";
}

.eyebrow {
  display: inline-block;
  color: var(--orange-600);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header);
  height: auto;
  background: rgba(255, 250, 245, 0.94);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
  overflow: visible;
}

.site-header.is-mega-open {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.site-header.is-mega-open.is-scrolled {
  border-bottom-color: transparent;
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  height: var(--header);
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 2;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand img {
  height: 42px;
  width: auto;
  display: block;
  animation: logo-speed 3.6s ease-in-out infinite;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: var(--display);
  font-size: 0.95rem;
}

.brand-text em {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--orange-600);
  font-weight: 600;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
}

.nav-link,
.nav-trigger {
  background: none;
  border: 0;
  color: var(--ink-soft);
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-trigger svg {
  width: 10px;
  height: 10px;
  transition: transform 0.18s ease;
}

.nav-link:hover,
.nav-trigger:hover,
.nav-trigger[aria-expanded="true"] {
  color: var(--orange-700);
  background: transparent;
}

.nav-item {
  position: static;
}

.nav-item.is-open .nav-trigger {
  color: var(--orange-700);
}

.nav-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.mega {
  position: fixed;
  top: var(--header);
  left: 0;
  right: 0;
  width: 100%;
  background: #f7f6f4;
  border-bottom: 1px solid rgba(28, 25, 23, 0.1);
  box-shadow: 0 24px 48px rgba(28, 25, 23, 0.14);
  z-index: 1001;
  animation: megaIn 0.2s ease;
  padding: 40px 28px 48px;
  pointer-events: auto;
}

@keyframes megaIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mega-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 20px;
}

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

.mega-inner-platforms {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.mega-blurb {
  margin: -4px 0 4px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.mega-inner-platforms .mega-col-featured {
  padding: 24px;
}

.mega-col-aside {
  padding: 24px 8px 24px 32px;
  border-left: 1px solid rgba(28, 25, 23, 0.12);
  gap: 14px;
}

.mega-aside-kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-600);
  font-weight: 700;
}

.mega-col-aside h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.mega-col-aside p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.45;
}

.mega-col-aside .btn {
  margin-top: 8px;
}

.mega-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
  padding: 24px;
  border-radius: 14px;
  transition: background 0.18s ease;
}

.mega-col:hover,
.mega-col.is-active {
  background: rgba(255, 255, 255, 0.75);
}

.mega-col.is-active .mega-icon,
.mega-col:hover .mega-icon {
  color: var(--orange-700);
  background: rgba(255, 104, 0, 0.08);
  border-color: rgba(255, 104, 0, 0.18);
}

.mega-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: #4a4540;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(28, 25, 23, 0.08);
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.mega-icon svg {
  width: 36px;
  height: 36px;
}

.mega-title {
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink);
}

.mega-title svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  margin-top: 5px;
  color: var(--ink-soft);
  transition: transform 0.18s ease, color 0.18s ease;
}

.mega-title:hover {
  color: var(--orange-700);
}

.mega-title:hover svg {
  color: var(--orange-700);
  transform: translateX(2px);
}

.mega-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
  width: 100%;
}

.mega-links a {
  display: block;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.35;
  padding: 8px 12px;
  margin: 0 -12px;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}

.mega-links a:hover,
.mega-links a.is-active {
  color: var(--orange-700);
  background: rgba(255, 104, 0, 0.08);
}

.mega-links a.is-active {
  font-weight: 600;
}

.mega-links-plat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-top: 14px;
}

.mega-links-plat li {
  position: relative;
  padding-left: 16px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35;
}

.mega-links-plat li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange-400);
}

.mobile-mega {
  display: grid;
  gap: 0;
  padding-bottom: 8px;
}

.mobile-mega-title {
  margin: 14px 0 4px;
  padding: 8px 8px 4px 20px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
}

.mobile-mega-title a {
  color: inherit;
  font-weight: inherit;
  padding: 0;
}

.mobile-mega-title a:hover {
  color: var(--orange-700);
}

.mobile-mega a.is-active {
  color: var(--orange-700);
  font-weight: 600;
}

.mobile-mega-title:first-child {
  margin-top: 4px;
}

.mobile-services .mobile-mega a {
  padding-left: 20px;
  font-weight: 500;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}

/* Platforms lists parts of one product, so the items are text, not links.
   No separators and a lighter weight keep them from reading as tap targets. */
.mobile-mega-item {
  position: relative;
  padding: 7px 8px 7px 34px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--muted);
}

.mobile-mega-item::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 1.05em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange-400);
}

.mobile-mega-item:first-of-type {
  padding-top: 10px;
}

.mobile-mega-item:last-of-type {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.mobile-services .mobile-mega a.mobile-mega-cta {
  color: var(--orange-600);
  font-weight: 600;
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  position: relative;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.lang-trigger svg {
  width: 10px;
  height: 10px;
  transition: transform 0.18s ease;
}

.lang-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.lang-trigger [data-lang-flag] {
  font-size: 0.95rem;
  line-height: 1;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 168px;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 2px;
  z-index: 50;
}

.lang-menu[hidden] {
  display: none;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 9px 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.lang-option:hover {
  background: var(--orange-50);
}

.lang-option.is-active {
  background: color-mix(in srgb, var(--orange-50) 80%, #dbeafe);
  color: #1d4f91;
  font-weight: 600;
}

.lang-option.is-active::after {
  content: "✓";
  margin-left: auto;
  color: #1d4f91;
  font-size: 0.85rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--ink);
  transition: 0.25s ease;
}

.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 20px; }
.menu-toggle span:nth-child(3) { top: 26px; }

.menu-toggle.is-open span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header) 0 0;
  background: var(--white);
  z-index: 900;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 24px;
}

.mobile-nav a,
.mobile-services summary {
  padding: 12px 8px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.mobile-services summary::-webkit-details-marker {
  display: none;
}

.mobile-services summary::after {
  content: "";
  float: right;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.mobile-services[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 10px;
}

.mobile-services a {
  padding-left: 20px;
  font-weight: 500;
  color: var(--ink-soft);
}

.hero {
  position: relative;
  padding: 0 24px;
  overflow: hidden;
}

.hero-banner {
  position: relative;
  isolation: isolate;
  margin: 0 -24px;
  padding: 88px 24px 72px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #1c1612 url("../assets/hero-velocity.jpg") center / cover no-repeat;
}

.hero-reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.04) brightness(0.72);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(28, 22, 18, 0.62) 0%,
      rgba(28, 22, 18, 0.72) 42%,
      rgba(28, 22, 18, 0.55) 62%,
      rgba(255, 250, 245, 0.96) 100%
    ),
    radial-gradient(ellipse 70% 55% at 50% 38%, rgba(28, 22, 18, 0.45), transparent 72%),
    linear-gradient(90deg, rgba(255, 104, 0, 0.14), transparent 55%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero .eyebrow {
  color: var(--orange-300);
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 800;
  color: #fff7ed;
  background: none;
  -webkit-text-fill-color: #fff7ed;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(28, 22, 18, 0.55), 0 10px 40px rgba(28, 22, 18, 0.45);
}

.hero h1 em {
  font-style: normal;
  color: var(--orange-300);
  -webkit-text-fill-color: var(--orange-300);
}

.lede {
  margin: 18px auto 28px;
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.hero .lede {
  color: rgba(255, 247, 237, 0.95);
  text-shadow: 0 2px 18px rgba(28, 22, 18, 0.5);
}

.hero .contact-kicker {
  color: rgba(255, 247, 237, 0.72);
}

.hero .way-quiet {
  background: rgba(255, 255, 255, 0.1);
  color: #fff7ed;
  border-color: rgba(255, 247, 237, 0.28);
}

.hero .way-quiet:hover {
  color: #fff7ed;
  border-color: var(--orange-300);
  background: rgba(255, 104, 0, 0.22);
}

.hero .btn-ghost {
  color: #fff7ed;
  border-color: rgba(255, 247, 237, 0.35);
}

.hero .btn-ghost:hover {
  color: #fff7ed;
  border-color: var(--orange-300);
  background: rgba(255, 104, 0, 0.18);
}

.hero-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.contact-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-ways {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.way {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.way svg {
  width: 18px;
  height: 18px;
}

.way:hover {
  transform: translateY(-1px);
  border-color: var(--orange-400);
  color: var(--orange-700);
}

.way-chat {
  background: linear-gradient(180deg, var(--orange-500), var(--orange-600));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 10px 24px rgba(234, 88, 12, 0.28);
}

.way-chat:hover {
  color: var(--white);
  border-color: transparent;
}

.way-whatsapp {
  background: #128c7e;
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 10px 24px rgba(18, 140, 126, 0.28);
}

.way-whatsapp:hover {
  background: #075e54;
  color: var(--white);
  border-color: transparent;
}

.way-quiet {
  background: transparent;
  font-weight: 500;
  color: var(--ink-soft);
}

.btn-whatsapp {
  background: #128c7e;
  color: var(--white);
  box-shadow: 0 10px 24px rgba(18, 140, 126, 0.28);
}

.btn-whatsapp:hover {
  transform: translateY(-1px);
  background: #075e54;
}

.scrub {
  --scrub-chapters: 4;
  position: relative;
  height: calc(var(--scrub-chapters) * 100vh);
}

.scrub-sticky {
  position: sticky;
  top: var(--header);
  height: calc(100vh - var(--header));
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  gap: 20px 28px;
  align-content: stretch;
  padding: 20px 0 28px;
  box-sizing: border-box;
}

.scrub-rail {
  grid-row: 1;
  display: grid;
  align-content: center;
  gap: 6px;
}

.scrub-rail-item {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  text-align: left;
  font: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 10px 4px;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  gap: 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.scrub-rail-item span {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  opacity: 0.55;
}

.scrub-rail-item:hover {
  color: var(--ink);
}

.scrub-rail-item.is-active {
  color: var(--orange-700);
  transform: translateX(4px);
}

.scrub-rail-item.is-active span {
  color: var(--orange-600);
  opacity: 1;
}

.scrub-rail-item em {
  font-style: normal;
  font-weight: inherit;
}

.scrub-stage {
  position: relative;
  min-height: 0;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(700px 280px at 90% -20%, rgba(255, 104, 0, 0.28), transparent 55%),
    #1c1612;
  border: 1px solid rgba(253, 186, 116, 0.28);
  box-shadow:
    0 22px 50px rgba(28, 22, 18, 0.16),
    0 0 0 1px rgba(255, 104, 0, 0.1);
}

.scrub-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px 40px;
  align-items: center;
  padding: 28px;
  color: #fff7ed;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.985);
  pointer-events: none;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    visibility 0.45s ease;
}

.scrub-panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.scrub-panel[hidden] {
  display: grid !important;
}

.scrub-meter {
  grid-column: 1 / -1;
  height: 3px;
  border-radius: 99px;
  background: rgba(28, 22, 18, 0.08);
  overflow: hidden;
}

.scrub-meter i {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange-400), var(--orange-600));
  transition: width 0.08s linear;
}

.panel-kicker {
  color: var(--orange-400);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cascade-copy h3 {
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  margin-bottom: 10px;
  color: #fff7ed;
}

.cascade-copy p:not(.panel-kicker) {
  color: #ffedd5;
  max-width: 36rem;
}

.viz {
  position: relative;
  min-height: 280px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(253, 186, 116, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 104, 0, 0.08);
}

.scrub-panel.is-active .progress i {
  animation: load 1.1s ease forwards;
}

.scrub-panel.is-active .viz-photo {
  animation: ken 18s ease-in-out infinite alternate;
}

.viz-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 16, 15, 0.2), rgba(18, 16, 15, 0.72)),
    url("../assets/delivery-viz.jpg") center / cover no-repeat;
}

.hud {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 280px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(18, 16, 15, 0.28), rgba(18, 16, 15, 0.78));
}

.hud header {
  display: flex;
  justify-content: space-between;
  color: #fdba74;
  font-size: 0.85rem;
}

.progress {
  height: 10px;
  background: rgba(255, 237, 213, 0.16);
  border-radius: 99px;
  margin: 12px 0 16px;
  overflow: hidden;
}

.progress i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange-400), var(--orange-600));
  animation: load 1.2s ease forwards;
}

.swap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 600;
}

.swap-card {
  flex: 1;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(253, 186, 116, 0.25);
}

.swap-card.from {
  color: #a8a29e;
  text-decoration: line-through;
}

.swap-card.to {
  background: rgba(255, 104, 0, 0.18);
  animation: pulse-card 2.4s ease-in-out infinite;
}

.hud ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hud li {
  margin: 8px 0;
  color: #ffedd5;
  font-size: 0.92rem;
}

.hud .done::before,
.hud .run::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  background: #22c55e;
}

.hud .run::before {
  background: var(--orange-400);
  animation: blink 1s infinite;
}

.hud-build {
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  gap: 10px;
}

.hud-build .node {
  position: relative;
  z-index: 1;
  background: var(--orange-600);
  color: white;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 600;
  animation: float-logo 3.8s ease-in-out infinite;
}

.hud-build .hub {
  grid-column: 1 / -1;
  background: #fff7ed;
  color: var(--orange-700);
  box-shadow: 0 0 0 6px rgba(255, 104, 0, 0.18);
  animation: pulse-card 2.2s ease-in-out infinite;
}

.hud-build .n2 { animation-delay: -0.6s; }
.hud-build .n3 { animation-delay: -1.2s; }
.hud-build .n4 { animation-delay: -1.8s; }

.wires {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 62%;
}

.wires path {
  fill: none;
  stroke: #fb923c;
  stroke-width: 2;
  stroke-dasharray: 6 8;
  animation: dash 12s linear infinite;
}

.code-stream {
  grid-column: 1 / -1;
  width: 100%;
  margin: 8px 0 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.65;
}

.cmt { color: #a8a29e; }
.ok { color: #4ade80; }
.run { color: var(--orange-400); }
.dim { color: #78716c; }

.metric > span {
  color: #fdba74;
  font-size: 0.82rem;
}

.metric strong {
  display: block;
  font-size: 2.4rem;
  font-family: var(--display);
  letter-spacing: -0.04em;
}

.metric strong span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  letter-spacing: inherit;
}

.regions {
  display: flex;
  gap: 10px;
  margin: 14px 0 8px;
}

.regions i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 237, 213, 0.2);
}

.regions i.on {
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: blink 1.8s infinite;
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 90px;
  margin: 16px 0;
}

.bars i {
  flex: 1;
  background: linear-gradient(180deg, var(--orange-300), var(--orange-600));
  border-radius: 6px 6px 0 0;
  animation: bar 1.6s ease-in-out infinite alternate;
}

.bars i:nth-child(1) { height: 35%; animation-delay: 0s; }
.bars i:nth-child(2) { height: 55%; animation-delay: 0.1s; }
.bars i:nth-child(3) { height: 70%; animation-delay: 0.2s; }
.bars i:nth-child(4) { height: 48%; animation-delay: 0.3s; }
.bars i:nth-child(5) { height: 88%; animation-delay: 0.4s; }
.bars i:nth-child(6) { height: 62%; animation-delay: 0.5s; }
.bars i:nth-child(7) { height: 40%; animation-delay: 0.6s; }
.bars i:nth-child(8) { height: 75%; animation-delay: 0.7s; }

.live {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fdba74;
}

.live span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: blink 1.2s infinite;
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 88px 24px;
}

#features,
#services,
#platforms,
#accelerate,
#collaborate {
  scroll-margin-top: 96px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 12px;
}

.section-head p,
.closing p,
.quote p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.accordion {
  display: grid;
  gap: 10px;
}

.acc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.acc button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 18px 20px;
  cursor: pointer;
}

.acc h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.acc p {
  color: var(--muted);
  display: none;
}

.acc.is-open {
  border-color: var(--orange-300);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.08);
}

.acc.is-open p {
  display: block;
}

.path-block {
  margin-top: 48px;
  padding-top: 8px;
}

.outcome-picker {
  margin-bottom: 36px;
}

.outcome-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.outcome-tab {
  appearance: none;
  border: 1px solid rgba(28, 25, 23, 0.12);
  background: #fff;
  color: var(--ink-soft);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.outcome-tab:hover {
  border-color: var(--orange-300);
  color: var(--orange-700);
}

.outcome-tab:focus-visible {
  outline: 2px solid var(--orange-400);
  outline-offset: 2px;
}

.outcome-tab.is-active {
  background: linear-gradient(180deg, var(--orange-500), var(--orange-600));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 104, 0, 0.22);
}

.outcome-detail {
  max-width: 640px;
  padding: 22px 0 4px;
}

.outcome-detail.is-swapping {
  animation: outcome-swap 0.35s ease;
}

@keyframes outcome-swap {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .outcome-detail.is-swapping {
    animation: none;
  }
}

.outcome-kicker {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-600);
}

.outcome-detail h3 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.25;
}

.outcome-detail p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 52ch;
}

.path-bridge {
  margin: 8px 0 22px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.path-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) 1.35fr;
  gap: 28px;
  align-items: start;
}

.path-boost {
  position: sticky;
  top: calc(var(--header) + 24px);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange-500);
  border-radius: 20px;
  padding: 24px;
  display: grid;
  gap: 10px;
  box-shadow: 0 18px 40px rgba(28, 22, 18, 0.06);
}

.path-boost-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-600);
  font-weight: 700;
}

.path-boost-step {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.path-boost-step strong {
  font-family: var(--mono);
  font-size: 1.35rem;
  color: var(--ink);
}

.path-boost-title {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  min-height: 1.4em;
}

.path-viz {
  position: relative;
  height: 150px;
  margin: 4px 0 2px;
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(120px 80px at 20% 30%, rgba(255, 104, 0, 0.12), transparent 70%),
    linear-gradient(160deg, #fff8f2, #fff);
  border: 1px solid rgba(255, 104, 0, 0.14);
}

.path-viz-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  pointer-events: none;
}

.path-viz-scene.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.path-viz-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pv-frame {
  fill: #fff;
  stroke: rgba(28, 22, 18, 0.08);
  stroke-width: 1.5;
}

.pv-check-row {
  fill: rgba(255, 104, 0, 0.18);
}

.pv-radar {
  transform-origin: 78px 72px;
  animation: pv-spin 2.4s linear infinite;
}

.pv-ping {
  animation: pv-pulse 1.6s ease-in-out infinite;
}

.pv-tick {
  opacity: 0;
  animation: pv-tick-in 2.4s ease-in-out infinite;
}

.pv-d1 { animation-delay: 0s; }
.pv-d2 { animation-delay: 0.35s; }
.pv-d3 { animation-delay: 0.7s; }
.pv-d4 { animation-delay: 1.05s; }

.pv-layer {
  fill: #fff;
  stroke: rgba(255, 104, 0, 0.35);
  stroke-width: 1.5;
  animation: pv-float 2.8s ease-in-out infinite;
}

.pv-draw {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: pv-draw 2.6s ease-in-out infinite;
}

.pv-pen {
  animation: pv-pen 2.6s ease-in-out infinite;
}

.pv-doc {
  fill: #fff7ed;
  stroke: #ffb06b;
  stroke-width: 1.5;
  animation: pv-float 2.4s ease-in-out infinite;
}

.pv-code-line {
  fill: rgba(255, 104, 0, 0.2);
  transform-origin: left center;
  animation: pv-type 2.2s ease-in-out infinite;
}

.pv-caret {
  fill: #ff6800;
  animation: pv-blink 0.9s steps(1) infinite;
}

.pv-bot-arm {
  transform-origin: 18px 10px;
  animation: pv-bot 1.4s ease-in-out infinite;
}

.pv-shield-ok {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: pv-draw 2.2s ease-in-out infinite;
}

.pv-bar {
  fill: rgba(255, 104, 0, 0.14);
}

.pv-scanline {
  fill: rgba(255, 104, 0, 0.45);
  animation: pv-scan 2s ease-in-out infinite;
}

.pv-node {
  fill: #fff;
  stroke: #ff6800;
  stroke-width: 2.5;
}

.pv-packet {
  animation: pv-packet 2.8s ease-in-out infinite;
}

.pv-env {
  font-family: var(--mono);
  font-size: 10px;
  fill: var(--muted);
  letter-spacing: 0.04em;
}

.pv-spark {
  stroke-dasharray: 280;
  stroke-dashoffset: 280;
  animation: pv-draw 2.8s ease-in-out infinite;
}

.pv-live-dot {
  animation: pv-pulse 1.2s ease-in-out infinite;
}

.pv-alert {
  fill: rgba(255, 104, 0, 0.35);
  animation: pv-alert 1.8s ease-in-out infinite;
}

.pv-live-badge {
  animation: pv-pulse 1.5s ease-in-out infinite;
}

@keyframes pv-spin {
  to { transform: rotate(360deg); }
}

@keyframes pv-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.25); }
}

@keyframes pv-tick-in {
  0%, 15% { opacity: 0; }
  30%, 70% { opacity: 1; }
  85%, 100% { opacity: 0.25; }
}

@keyframes pv-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes pv-draw {
  0% { stroke-dashoffset: 200; }
  45%, 70% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 200; }
}

@keyframes pv-pen {
  0% { transform: translate(0, 0); }
  45% { transform: translate(-54px, 14px); }
  70% { transform: translate(-54px, 14px); }
  100% { transform: translate(0, 0); }
}

@keyframes pv-type {
  0% { transform: scaleX(0.2); opacity: 0.4; }
  40%, 70% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(0.2); opacity: 0.4; }
}

@keyframes pv-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes pv-bot {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes pv-scan {
  0% { transform: translateY(0); opacity: 0.2; }
  50% { transform: translateY(48px); opacity: 0.9; }
  100% { transform: translateY(0); opacity: 0.2; }
}

@keyframes pv-packet {
  0% { transform: translateX(0); }
  25% { transform: translateX(60px); }
  50% { transform: translateX(120px); }
  75% { transform: translateX(180px); }
  100% { transform: translateX(0); }
}

@keyframes pv-alert {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .path-viz-scene {
    transition: none;
  }

  .pv-radar,
  .pv-ping,
  .pv-tick,
  .pv-layer,
  .pv-draw,
  .pv-pen,
  .pv-doc,
  .pv-code-line,
  .pv-caret,
  .pv-bot-arm,
  .pv-shield-ok,
  .pv-scanline,
  .pv-packet,
  .pv-spark,
  .pv-live-dot,
  .pv-alert,
  .pv-live-badge {
    animation: none !important;
  }

  .pv-draw,
  .pv-shield-ok,
  .pv-spark {
    stroke-dashoffset: 0;
  }

  .pv-tick,
  .pv-code-line,
  .pv-alert {
    opacity: 1;
  }
}

.path-boost-note {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.45;
}

.path-meter {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 104, 0, 0.12);
  overflow: hidden;
  margin-top: 4px;
}

.path-meter i {
  display: block;
  height: 100%;
  width: 14%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange-500), #ff9a4a);
  transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.path-boost-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.path-boost-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange-700);
  background: var(--orange-50);
  border-radius: 999px;
  padding: 6px 10px;
}

.delivery-path {
  position: relative;
  padding-left: 8px;
}

.path-track {
  position: absolute;
  left: 33px;
  top: 22px;
  bottom: 22px;
  width: 3px;
  border-radius: 999px;
  background: rgba(28, 22, 18, 0.08);
  overflow: visible;
  pointer-events: none;
}

.path-track-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--orange-500), #ff9a4a);
  transition: height 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.path-traveler {
  position: absolute;
  left: 50%;
  top: 0%;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  margin-top: -7px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 6px rgba(255, 104, 0, 0.18), 0 8px 18px rgba(255, 104, 0, 0.35);
  transition: top 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  animation: path-pulse 1.4s ease-in-out infinite;
}

@keyframes path-pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(255, 104, 0, 0.18), 0 8px 18px rgba(255, 104, 0, 0.35); }
  50% { box-shadow: 0 0 0 10px rgba(255, 104, 0, 0.1), 0 10px 22px rgba(255, 104, 0, 0.45); }
}

.path-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.path-step button {
  width: 100%;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: start;
  text-align: left;
  background: none;
  border: 0;
  padding: 10px 8px 10px 20px;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.path-num {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.path-copy {
  min-width: 0;
}

.path-step h3 {
  font-size: 1.05rem;
  margin: 4px 0 0;
  color: var(--ink-soft);
  transition: color 0.25s ease;
}

.path-box {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-4px);
  transition: grid-template-rows 0.4s ease, opacity 0.35s ease, transform 0.35s ease;
  margin-top: 0;
}

.path-box > p {
  overflow: hidden;
  min-height: 0;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.path-step.is-open .path-box {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
  margin-top: 10px;
}

.path-step.is-open .path-box > p {
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange-500);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(28, 22, 18, 0.06);
}

.path-step.is-done .path-num {
  color: #fff;
  background: var(--orange-500);
  border-color: var(--orange-500);
}

.path-step.is-active .path-num {
  color: #fff;
  background: var(--orange-600);
  border-color: var(--orange-600);
  transform: scale(1.08);
}

.path-step.is-active h3,
.path-step.is-open h3 {
  color: var(--orange-700);
}

.path-step.is-done:not(.is-active) h3 {
  color: var(--ink);
}

.path-step:hover h3 {
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  .path-traveler,
  .path-track-fill,
  .path-meter i,
  .path-box {
    transition: none !important;
    animation: none !important;
  }
}

.story-card {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange-500);
  border-radius: 24px;
  padding: 32px;
  display: grid;
  align-content: center;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(28, 22, 18, 0.06);
  align-self: start;
  position: sticky;
  top: calc(var(--header) + 24px);
}

.story-card .eyebrow {
  color: var(--orange-600);
}

.story-card p {
  color: var(--ink-soft);
}

.story-card a {
  color: var(--orange-600);
  font-weight: 600;
}

.story-card a:hover {
  color: var(--orange-700);
}

.story-card h3 {
  font-size: 1.6rem;
  color: var(--ink);
}

.bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}

.bento-main,
.stat-card,
.mini-card,
.plain-card,
.industry-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}

.bento-main {
  grid-row: span 2;
  background: var(--ink);
  color: var(--orange-50);
}

.bento-main p {
  color: #fdba74;
  margin: 10px 0 20px;
}

.fix-card {
  background: rgba(255, 247, 237, 0.06);
  border-radius: 14px;
  padding: 16px;
}

.fix-card header {
  color: var(--orange-400);
  font-family: var(--mono);
  font-size: 0.82rem;
}

.fix-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.fix-actions span {
  background: var(--orange-600);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.82rem;
}

.stat-card strong {
  display: block;
  font-size: 3rem;
  font-family: var(--display);
  color: var(--orange-600);
}

.stat-card span,
.mini-card p,
.plain-card p {
  color: var(--muted);
}

.quote {
  margin: 0 0 28px;
  padding: 32px;
  background: var(--white);
  border-left: 4px solid var(--orange-500);
  border-radius: 0 20px 20px 0;
}

.quote footer {
  margin-top: 16px;
  display: grid;
}

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

.card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.industry-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.chip {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 600;
}

.chip.is-active {
  background: var(--orange-600);
  color: var(--white);
  border-color: var(--orange-600);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.industry-card {
  display: grid;
  gap: 10px;
  min-height: 180px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.industry-card span {
  color: var(--orange-600);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.industry-card em {
  font-style: normal;
  color: var(--muted);
}

.closing {
  margin: 0 24px 64px;
  background: linear-gradient(180deg, #fff6ed, #ffead6);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 72px 24px;
  text-align: center;
}

.closing-inner {
  max-width: 760px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}

.closing .hero-form {
  margin-top: 28px;
}

.legal-page {
  padding: 48px 24px 72px;
  background:
    radial-gradient(900px 420px at 10% -10%, rgba(255, 104, 0, 0.1), transparent 55%),
    var(--cream, #fffaf5);
}

.legal-doc {
  max-width: 720px;
  margin: 0 auto;
}

.legal-doc h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 8px 0 12px;
  color: var(--ink);
}

.legal-doc .legal-updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.legal-doc h2 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
  color: var(--ink);
}

.legal-doc p {
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 12px;
}

.legal-back {
  margin-top: 36px;
}

.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 48px 24px 24px;
}

.footer-top {
  max-width: 1100px;
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 1fr);
  gap: 24px;
}

.footer-top h3 {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: 12px;
}

.footer-top nav {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-top a {
  color: var(--ink-soft);
}

.footer-top a:hover {
  color: var(--orange-600);
}

.newsletter p {
  color: var(--muted);
  margin: 8px 0 16px;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.brand-footer {
  font-weight: 700;
  color: var(--ink);
}

.brand-footer img {
  height: 32px;
  width: auto;
}

.legal {
  display: flex;
  gap: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.chat-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 55;
  display: grid;
  justify-items: end;
  gap: 12px;
}

/* Ensure third-party FastDesk widget stays above site chrome */
.cp-root {
  z-index: 2147483000 !important;
}

.chat-launcher {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(255, 104, 0, 0.35);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.chat-launcher svg {
  width: 26px;
  height: 26px;
}

.chat-launcher:hover {
  transform: translateY(-2px);
}

.chat-widget.is-open .chat-launcher {
  display: none;
}

.chat-panel {
  width: min(380px, calc(100vw - 32px));
  height: min(520px, calc(100vh - 120px));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  overflow: hidden;
  animation: rise 0.22s ease;
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--orange-50);
  border-bottom: 1px solid var(--line);
}

.chat-head strong {
  display: block;
  font-size: 0.92rem;
}

.chat-head span {
  color: var(--muted);
  font-size: 0.75rem;
}

.chat-close {
  margin-left: auto;
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
}

.chat-log {
  padding: 14px;
  overflow-y: auto;
  display: grid;
  align-content: start;
  gap: 12px;
  background: var(--cream);
}

.chat-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  max-width: 92%;
}

.chat-row.bot {
  justify-self: start;
}

.chat-row.user {
  justify-self: end;
  flex-direction: row-reverse;
}

.chat-avatar {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.chat-avatar svg {
  width: 20px;
  height: 20px;
}

.chat-row.bot .chat-avatar,
.chat-row.user .chat-avatar {
  background: #d6d3d1;
  color: #44403c;
}

.chat-row.bot .chat-avatar .eye {
  fill: #d6d3d1;
}

.chat-avatar-spacer {
  background: transparent;
}

.chat-col {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.chat-from {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0 4px;
}

.chat-row.user .chat-from {
  text-align: right;
}

.chat-msg {
  margin: 0;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.chat-row.bot .chat-msg {
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
}

.chat-row.user .chat-msg {
  background: var(--orange-600);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.chat-handoff {
  display: inline-flex;
  align-items: center;
  background: #128c7e;
  color: var(--white);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
}

.chat-handoff:hover {
  background: #075e54;
}

.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 12px 0;
}

.chat-chips button {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.8rem;
  cursor: pointer;
  font-weight: 600;
}

.chat-chips button:hover {
  border-color: var(--orange-400);
  color: var(--orange-700);
}

.chat-compose {
  display: flex;
  gap: 8px;
  padding: 12px;
}

.chat-compose input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
}

.chat-compose input:focus {
  outline: 2px solid var(--orange-300);
}

@keyframes ken {
  to {
    transform: scale(1.12) translate(-1.5%, -1%);
  }
}

@keyframes pulse-card {
  50% {
    box-shadow: 0 0 0 8px rgba(255, 104, 0, 0.12);
  }
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pulse-orb {
  50% {
    transform: scale(1.08);
    opacity: 0.75;
  }
}

@keyframes logo-speed {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}

@keyframes float-logo {
  50% {
    transform: translateY(-3px);
  }
}

@keyframes load {
  to { width: var(--w); }
}

@keyframes blink {
  50% { opacity: 0.35; }
}

@keyframes dash {
  to { stroke-dashoffset: -200; }
}

@keyframes bar {
  to { filter: brightness(1.15); transform: scaleY(1.08); transform-origin: bottom; }
}

@media (max-width: 1100px) {
  .mega-inner,
  .mega-inner-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 40px;
  }

  .mega-inner-platforms {
    grid-template-columns: 1fr;
  }

  .mega-col-aside {
    padding: 24px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(28, 25, 23, 0.12);
  }

  .do-grid,
  .do-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .plat-feature {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

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

  .mega-links-plat {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .mega {
    display: none !important;
  }

  .menu-toggle {
    display: block;
  }

  .scrub {
    height: auto;
  }

  .scrub-sticky {
    position: static;
    height: auto;
    grid-template-columns: 1fr;
    padding: 0;
    gap: 16px;
  }

  .scrub-rail {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
  }

  .scrub-rail-item.is-active {
    transform: none;
  }

  .scrub-stage {
    min-height: 0;
  }

  .scrub-panel,
  .scrub-panel[hidden] {
    position: relative;
    inset: auto;
    display: grid !important;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    margin-bottom: 16px;
    border-radius: 24px;
    background:
      radial-gradient(700px 280px at 90% -20%, rgba(255, 104, 0, 0.28), transparent 55%),
      #1c1612;
    border: 1px solid rgba(253, 186, 116, 0.22);
  }

  .scrub-panel + .scrub-panel {
    margin-top: 0;
  }

  .scrub-panel,
  .split,
  .path-layout,
  .bento,
  .card-row,
  .industry-grid,
  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .path-boost,
  .story-card {
    position: static;
  }

  .scrub-meter {
    display: none;
  }

  .bento-main {
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .hero-form .btn {
    width: 100%;
  }

  .contact-ways {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-form .way {
    width: 100%;
    justify-content: center;
  }

  .brand-text {
    display: none;
  }

  .scrub-panel {
    padding: 20px;
    gap: 20px;
  }
}

@media (max-width: 460px) {
  .header-actions .text-link {
    display: none;
  }
}

@media (max-width: 400px) {
  .lang-trigger [data-lang-code],
  .lang-trigger > svg {
    display: none;
  }

  .lang-trigger {
    padding: 6px 8px;
  }
}

@media (max-width: 480px) {
  .hero .contact-kicker {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scrub {
    height: auto;
  }

  .scrub-sticky {
    position: static;
    height: auto;
  }

  .scrub-panel,
  .scrub-panel[hidden] {
    position: relative;
    inset: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    margin-bottom: 16px;
  }

  .scrub-meter {
    display: none;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-progress {
    display: none;
  }

  .hero-reel-video {
    display: none;
  }
}

/* —— BairesDev-inspired pattern: trust / services / tech / proof / process —— */

.trust-strip {
  padding: 36px 24px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  text-align: center;
}

.trust-label {
  margin: 0 auto 18px;
  max-width: 52ch;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  color: var(--ink-soft);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  opacity: 0.72;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.do-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

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

.plat-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
  padding: 36px 32px;
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.1);
  border-radius: 20px;
  scroll-margin-top: calc(var(--header) + 24px);
  margin-bottom: 48px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.plat-feature:hover {
  border-color: rgba(255, 104, 0, 0.28);
  box-shadow: 0 16px 36px rgba(28, 25, 23, 0.08);
}

.plat-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 28px;
}

.plat-metric {
  padding: 20px 18px;
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.1);
  border-radius: 16px;
  text-align: left;
}

.plat-metric strong {
  display: block;
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  color: var(--orange-700);
  margin-bottom: 6px;
}

.plat-metric span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.35;
}

.plat-feature-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 0 16px;
  border-radius: 14px;
  color: #4a4540;
  background: rgba(255, 104, 0, 0.07);
  border: 1px solid rgba(255, 104, 0, 0.14);
}

.plat-feature:hover .plat-feature-icon {
  color: var(--orange-700);
}

.plat-feature-icon svg {
  width: 28px;
  height: 28px;
}

.plat-kicker {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--orange-600);
  font-weight: 700;
}

.plat-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.plat-feature-copy h3 {
  margin: 0 0 12px;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.plat-feature-copy > p:not(.plat-kicker) {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.5;
  margin: 0 0 18px;
}

.plat-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.plat-feature-aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  background: var(--cream, #faf8f5);
  border: 1px solid rgba(28, 25, 23, 0.08);
  border-radius: 16px;
}

.plat-aside-kicker {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-600);
  font-weight: 700;
}

.plat-feature-aside > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}

.plat-aside-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.plat-aside-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

.plat-aside-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange-500);
}

.plat-cap-head {
  margin-top: 8px;
}

.plat-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.plat-cap {
  padding: 24px 22px;
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.1);
  border-radius: 16px;
  scroll-margin-top: calc(var(--header) + 24px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.plat-cap:hover {
  border-color: rgba(255, 104, 0, 0.28);
  box-shadow: 0 12px 28px rgba(28, 25, 23, 0.07);
  transform: translateY(-2px);
}

.plat-cap-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 0 14px;
  border-radius: 12px;
  color: var(--orange-700);
  background: rgba(255, 104, 0, 0.08);
  border: 1px solid rgba(255, 104, 0, 0.12);
}

.plat-cap-icon svg {
  width: 22px;
  height: 22px;
}

.plat-cap h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.plat-cap p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.plat-item-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-content: center;
}

.plat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 16px;
  background: var(--cream, #faf8f5);
  border: 1px solid rgba(28, 25, 23, 0.08);
  border-radius: 14px;
  color: var(--ink);
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.plat-item:hover {
  border-color: rgba(255, 104, 0, 0.28);
  background: #fff;
  box-shadow: 0 10px 24px rgba(28, 25, 23, 0.06);
  transform: translateY(-1px);
}

.plat-item-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  color: var(--orange-700);
  background: rgba(255, 104, 0, 0.08);
  border: 1px solid rgba(255, 104, 0, 0.12);
}

.plat-item-icon svg {
  width: 20px;
  height: 20px;
}

.plat-item-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.plat-item-copy strong {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.plat-item-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.4;
}

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

.plat-feature-list li {
  padding-left: 14px;
  font-weight: 500;
}

.plat-feature-list li:first-child {
  font-weight: 500;
}

.plat-feature-list li::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange-400);
}

.do-card {
  scroll-margin-top: calc(var(--header) + 24px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 24px 22px 22px;
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.1);
  border-radius: 18px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.do-card:hover {
  border-color: rgba(255, 104, 0, 0.28);
  box-shadow: 0 16px 36px rgba(28, 25, 23, 0.08);
  transform: translateY(-2px);
}

.do-card-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 0 16px;
  border-radius: 14px;
  color: #4a4540;
  background: rgba(255, 104, 0, 0.07);
  border: 1px solid rgba(255, 104, 0, 0.14);
}

.do-card:hover .do-card-icon {
  color: var(--orange-700);
}

.do-card-icon svg {
  width: 32px;
  height: 32px;
}

.do-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.do-card > p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.5;
  margin: 0 0 14px;
}

.do-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--orange-700);
  margin-bottom: 18px;
  text-decoration: none;
}

.do-more::after {
  content: "→";
  transition: transform 0.18s ease;
}

.do-card:hover .do-more::after {
  transform: translateX(3px);
}

.do-more:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.do-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
  border-top: 1px solid rgba(28, 25, 23, 0.1);
  padding-top: 14px;
  margin-top: auto;
}

.do-list li {
  font-size: 0.9rem;
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
  padding: 0;
  position: relative;
}

.do-list li::before {
  display: none;
}

.do-list li:first-child {
  font-weight: 700;
}

.do-list a {
  display: block;
  padding: 7px 8px;
  margin: 0 -8px;
  border-radius: 8px;
  color: inherit;
  transition: background 0.15s ease, color 0.15s ease;
}

.do-list a:hover {
  color: var(--orange-700);
  background: rgba(255, 104, 0, 0.07);
}

.do-list li:first-child a {
  color: var(--ink);
}

.do-list li:first-child a:hover {
  color: var(--orange-700);
}

.services-see {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.1);
  border-radius: 16px;
  padding: 24px 22px;
  min-height: 100%;
  scroll-margin-top: calc(var(--header) + 24px);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin: 0 0 16px;
}

.service-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.service-tags li {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--orange-700);
  background: var(--orange-50);
  border: 1px solid rgba(255, 104, 0, 0.18);
  border-radius: 999px;
  padding: 5px 10px;
}

.tech-strip {
  padding: 56px 0 40px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.tech-strip .section-head {
  padding: 0 24px;
  margin-bottom: 28px;
}

.tech-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.tech-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: tech-scroll 32s linear infinite;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink-soft);
  opacity: 0.7;
}

.tech-track span {
  white-space: nowrap;
}

@keyframes tech-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.proof-card {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.1);
  border-left: 4px solid var(--orange-500);
  border-radius: 16px;
  padding: 22px;
}

.proof-card p {
  font-size: 1.02rem;
  color: var(--ink);
  margin: 0 0 16px;
}

.proof-card footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--muted);
  font-size: 0.88rem;
}

.proof-card strong {
  color: var(--ink);
}

.case-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.case-link {
  display: grid;
  gap: 8px;
  background: linear-gradient(180deg, #fff, var(--orange-50));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.case-link:hover {
  transform: translateY(-2px);
  border-color: var(--orange-300);
}

.case-link span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-600);
}

.case-link strong {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.case-link em {
  font-style: normal;
  font-weight: 600;
  color: var(--orange-700);
  font-size: 0.9rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.why-card {
  padding: 8px 4px;
}

.why-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.why-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  counter-reset: none;
}

.process-steps li {
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.1);
  border-radius: 16px;
  padding: 24px;
}

.process-num {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange-600);
  margin-bottom: 12px;
}

.process-steps h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.process-steps p {
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 980px) {
  .service-grid,
  .proof-grid,
  .case-row {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid,
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .service-grid,
  .do-grid,
  .do-grid-3,
  .proof-grid,
  .case-row,
  .why-grid,
  .process-steps,
  .plat-metrics,
  .plat-cap-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tech-track {
    animation: none;
  }
}

.compare-table {
  display: grid;
  gap: 0;
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.1);
  border-radius: 18px;
  overflow: hidden;
}

.compare-head,
.compare-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.9fr) 1.1fr 1.2fr;
}

.compare-head {
  background: var(--cream);
  border-bottom: 1px solid rgba(28, 25, 23, 0.1);
}

.compare-row + .compare-row {
  border-top: 1px solid rgba(28, 25, 23, 0.08);
}

.compare-cell {
  padding: 16px 18px;
  font-size: 0.95rem;
  line-height: 1.45;
}

.compare-label {
  font-weight: 700;
  color: var(--ink);
  font-family: var(--display);
  letter-spacing: -0.02em;
}

.compare-them {
  color: var(--muted);
  background: rgba(28, 25, 23, 0.02);
}

.compare-us {
  color: var(--ink);
  font-weight: 600;
  background: linear-gradient(180deg, rgba(255, 104, 0, 0.08), rgba(255, 104, 0, 0.03));
  border-left: 1px solid rgba(255, 104, 0, 0.2);
}

.compare-head .compare-them,
.compare-head .compare-us {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.compare-head .compare-us {
  color: var(--orange-700);
}

@media (max-width: 720px) {
  .compare-head,
  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-head .compare-label {
    display: none;
  }

  .compare-cell.compare-label {
    padding-bottom: 4px;
    background: var(--cream);
    border-bottom: 1px solid rgba(28, 25, 23, 0.06);
  }

  .compare-us {
    border-left: 0;
    border-top: 2px solid var(--orange-400);
  }
}

/* —— About page —— */
.nav-link.is-active {
  color: var(--orange-700);
}

.about-hero {
  position: relative;
  padding: 96px 24px 72px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(255, 104, 0, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 20%, rgba(255, 176, 107, 0.18), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.about-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}

.about-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 20px;
}

.about-hero .lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0;
  line-height: 1.55;
}

.about-from {
  padding: 28px 24px 40px;
  border-bottom: 1px solid rgba(28, 25, 23, 0.08);
  text-align: center;
}

.about-from-label {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-from-logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  max-width: 900px;
  margin-inline: auto;
}

.about-from-logos li {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  letter-spacing: -0.03em;
  color: var(--ink);
  opacity: 0.72;
}

.about-story {
  padding-top: 72px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.about-story-rail h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.about-story-body p {
  margin: 0 0 20px;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.about-story-body p:last-child {
  margin-bottom: 0;
}

.about-promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-promise-card {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.1);
  border-radius: 18px;
  min-height: 100%;
}

.about-promise-num {
  display: block;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--orange-600);
  margin-bottom: 16px;
}

.about-promise-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.about-promise-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}

.about-beliefs {
  background: linear-gradient(180deg, transparent, rgba(255, 104, 0, 0.04));
}

.about-beliefs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.about-belief {
  padding: 28px 26px;
  border-radius: 16px;
  border: 1px solid rgba(28, 25, 23, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.about-belief h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.about-belief p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}

.about-closing .contact-ways {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.about-engage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.about-engage-card {
  padding: 28px 26px;
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.1);
  border-radius: 16px;
}

.about-engage-kicker {
  margin: 0 0 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-700);
}

.about-engage-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.about-engage-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
}

.about-team-modes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-team-modes article {
  padding: 20px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(28, 25, 23, 0.08);
}

.about-team-modes h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
}

.about-team-modes p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

@media (max-width: 900px) {
  .about-story-grid,
  .about-promise-grid,
  .about-beliefs-grid,
  .about-engage-grid,
  .about-team-modes {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding: 72px 24px 56px;
  }
}

/* —— Service category pages —— */
.svc-hero {
  padding: 88px 24px 56px;
  background:
    radial-gradient(ellipse 70% 50% at 15% 0%, rgba(255, 104, 0, 0.12), transparent 55%),
    linear-gradient(180deg, #fff, var(--cream));
}

.svc-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.svc-hero-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: #4a4540;
  margin: 8px 0 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(28, 25, 23, 0.08);
}

.svc-hero-icon svg {
  width: 40px;
  height: 40px;
}

.svc-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0 0 16px;
}

.svc-hero .lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin: 0 0 24px;
  max-width: 620px;
}

.svc-hero .contact-ways {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.svc-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.svc-cap {
  padding: 22px 20px;
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.1);
  border-radius: 14px;
}

.svc-cap h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.svc-cap p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.45;
}

.svc-outcomes {
  padding-top: 0;
}

.svc-outcomes-inner {
  max-width: 720px;
  padding: 36px 32px;
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.1);
  border-radius: 18px;
}

.svc-outcomes-inner h2 {
  margin: 0 0 16px;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.svc-outcomes-inner ul {
  margin: 0 0 22px;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  display: grid;
  gap: 8px;
}

.svc-hero .eyebrow a {
  color: var(--orange-700);
  font-weight: 700;
}

.svc-hero .eyebrow a:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .svc-cap-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .svc-cap-grid {
    grid-template-columns: 1fr;
  }
}


.svc-item-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  counter-reset: svc-item;
}

.svc-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 28px 26px 24px;
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.1);
  border-radius: 16px;
  scroll-margin-top: calc(var(--header) + 24px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  counter-increment: svc-item;
}

.svc-item::before {
  content: counter(svc-item, decimal-leading-zero);
  display: block;
  margin: 0 0 12px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--orange-700);
  opacity: 0.85;
}

.svc-item:hover {
  border-color: rgba(255, 104, 0, 0.32);
  box-shadow: 0 14px 32px rgba(28, 25, 23, 0.08);
  transform: translateY(-2px);
}

.svc-item h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.svc-item h3 a {
  color: inherit;
}

.svc-item h3 a:hover {
  color: var(--orange-700);
}

.svc-item p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.5;
  flex: 1;
}

.svc-item .do-more {
  margin-bottom: 0;
  margin-top: auto;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.svc-item .do-more::after {
  content: "→";
  transition: transform 0.18s ease;
}

.svc-item:hover .do-more::after {
  transform: translateX(3px);
}

.svc-item .do-more:hover {
  color: var(--orange-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.svc-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.svc-related-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 22px;
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.1);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.svc-related-card:hover {
  border-color: rgba(255, 104, 0, 0.32);
  box-shadow: 0 14px 32px rgba(28, 25, 23, 0.08);
  transform: translateY(-2px);
}

.svc-related-card strong {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.svc-related-card span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange-700);
}

.svc-related-card span::after {
  content: "→";
  transition: transform 0.18s ease;
}

.svc-related-card:hover span::after {
  transform: translateX(3px);
}

/* —— Work archive —— */
.work-hero {
  padding: 88px 24px 48px;
  background:
    radial-gradient(ellipse 70% 50% at 85% 0%, rgba(255, 104, 0, 0.12), transparent 55%),
    linear-gradient(180deg, #fff, var(--cream));
}

.work-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.work-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0 0 16px;
}

.work-hero .lede {
  margin: 0;
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 580px;
}

.work-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.work-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.1);
  border-radius: 16px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.work-card:hover {
  border-color: rgba(255, 104, 0, 0.35);
  box-shadow: var(--shadow);
}

.work-card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-600);
}

.work-card h2 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.work-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.45;
  margin-top: auto;
}

@media (max-width: 980px) {
  .svc-item-grid,
  .svc-related-grid,
  .work-archive-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .svc-item-grid,
  .svc-related-grid,
  .work-archive-grid {
    grid-template-columns: 1fr;
  }
}



