:root {
  --color-bg: #0A0A0A;
  --color-bg-2: #141413;
  --color-ink: #F2EFE7;
  --color-muted: #8E8B82;
  --color-line: #252523;
  --color-accent: #EC6B1E;

  --font-display: "Geist", "Inter", system-ui, -apple-system, sans-serif;
  --font-body: "Geist", "Inter", -apple-system, "Segoe UI", sans-serif;

  --container: 1280px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-ink);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

em {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--color-accent);
  font-weight: 600;
}

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

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease),
    border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo-img {
  height: 36px;
  width: auto;
  filter: invert(1) hue-rotate(180deg) brightness(1.1);
  transition: filter 0.35s var(--ease);
}

.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--color-line);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease),
    color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn--sm { padding: 10px 18px; font-size: 14px; }

.btn--primary {
  background: var(--color-ink);
  color: var(--color-bg);
}
.btn--primary:hover {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #F2EFE7;
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.9);
  color: #fff;
  transform: translateY(-1px);
}

/* ---------- Typography helpers ---------- */
.kicker {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 24px;
}
.kicker--accent { color: var(--color-accent); }

/* ---------- Hero (full-bleed video) ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  color: var(--color-ink);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 90%;
  animation: kenBurns 22s ease-in-out infinite;
}

@keyframes kenBurns {
  0%   { transform: scale(1.05) translate(0, 0); }
  50%  { transform: scale(1.14) translate(-1.5%, -1%); }
  100% { transform: scale(1.05) translate(0, 0); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.4) 22%, rgba(10,10,10,0) 50%, rgba(10,10,10,0.35) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0) 65%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(120px, 14vw, 180px);
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 9vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 16ch;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
  animation: heroFadeUp 1.1s var(--ease) both;
}

.hero__sub {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.45;
  color: rgba(242, 239, 231, 0.85);
  max-width: 44ch;
  margin-bottom: 40px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
  animation: heroFadeUp 1.1s 0.15s var(--ease) both;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: heroFadeUp 1.1s 0.3s var(--ease) both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 1px;
  height: 48px;
  overflow: hidden;
  opacity: 0.6;
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, var(--color-ink) 50%, transparent 100%);
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* ---------- Range ---------- */
.range {
  padding: clamp(100px, 14vw, 180px) 0 0;
}

.range__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  max-width: 14ch;
}

.range__body {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--color-muted);
  max-width: 50ch;
  margin-bottom: clamp(64px, 8vw, 120px);
}

.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  align-items: center;
  border-top: 1px solid var(--color-line);
}

.product--reverse .product__image { order: 2; }
.product--reverse .product__body  { order: 1; }

.product__image {
  height: 100%;
  min-height: 480px;
  background: radial-gradient(circle at center, #1A1A18 0%, #0A0A0A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product__image img {
  max-width: 60%;
  max-height: 70%;
  object-fit: contain;
  transition: transform 0.7s var(--ease);
}

.product:hover .product__image img { transform: scale(1.05); }

.product__body {
  padding: clamp(48px, 6vw, 96px) 0;
}

.product__container {
  max-width: 520px;
  padding: 0 clamp(24px, 4vw, 48px);
}

.product__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.product__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 16ch;
}

.product__desc {
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.5;
  color: var(--color-muted);
  margin-bottom: 20px;
  max-width: 44ch;
}

.product__specs {
  font-size: 14px;
  color: var(--color-muted);
  padding-top: 16px;
  border-top: 1px solid var(--color-line);
  max-width: 44ch;
}

/* ---------- Proof ---------- */
.proof {
  padding: clamp(100px, 14vw, 200px) 0;
  border-top: 1px solid var(--color-line);
}

.proof__headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6.4vw, 96px);
  line-height: 1;
  letter-spacing: -0.025em;
  max-width: 16ch;
  margin-bottom: 40px;
}

.proof__body {
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--color-muted);
  max-width: 56ch;
  margin-bottom: 64px;
}

.proof__stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--color-line);
}

.proof__stats li {
  padding: 40px 0;
  border-right: 1px solid var(--color-line);
  padding-right: 24px;
}
.proof__stats li:first-child { padding-left: 0; }
.proof__stats li:last-child  { border-right: none; }

.proof__stat {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin-bottom: 8px;
  line-height: 1;
}

.proof__stat-label {
  display: block;
  font-size: 12px;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ---------- Contact ---------- */
.contact {
  padding: clamp(120px, 16vw, 200px) 0;
  border-top: 1px solid var(--color-line);
}

.contact__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.contact__sub {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--color-muted);
  margin-bottom: 48px;
  max-width: 50ch;
}

.contact__form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 560px;
}

.contact__form input {
  flex: 1;
  min-width: 240px;
  padding: 16px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-line);
  background: var(--color-bg-2);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.contact__form input::placeholder { color: #5A5A58; }
.contact__form input:focus {
  outline: none;
  border-color: var(--color-ink);
  box-shadow: 0 0 0 4px rgba(242, 239, 231, 0.08);
}

/* ---------- Footer ---------- */
.footer {
  padding: 36px 0;
  border-top: 1px solid var(--color-line);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__logo img { height: 28px; filter: invert(1) hue-rotate(180deg) brightness(1.1); }

.footer__copy {
  color: var(--color-muted);
  font-size: 13px;
}
.footer__link {
  color: var(--color-muted);
  font-size: 13px;
  text-decoration: none;
}
.footer__link:hover { text-decoration: underline; }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__video { animation: none; }
  .hero__scroll-line { animation: none; }
  .hero__headline, .hero__sub, .hero__ctas { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .product {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .product--reverse .product__image { order: 0; }
  .product--reverse .product__body { order: 0; }
  .product__image { min-height: 360px; }
  .product__container { padding: 0 24px; max-width: none; }

  .proof__stats { grid-template-columns: 1fr; }
  .proof__stats li {
    border-right: none;
    border-bottom: 1px solid var(--color-line);
    padding: 24px 0;
  }
  .proof__stats li:last-child { border-bottom: none; }
}

@media (max-width: 640px) {
  .hero { min-height: 580px; }
  .hero__ctas .btn { flex: 1; }
  .contact__form { flex-direction: column; }
  .contact__form .btn { width: 100%; }
}

/* ---------- Nav links ---------- */
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  color: var(--color-ink);
  opacity: 0.85;
  transition: opacity 0.2s var(--ease), color 0.2s var(--ease);
}
.nav__link:hover { opacity: 1; color: var(--color-accent); }

/* ---------- Industries hub ---------- */
.industries-intro {
  padding: clamp(140px, 16vw, 220px) 0 clamp(60px, 8vw, 100px);
}
.industries-intro__headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  max-width: 16ch;
}
.industries-intro__sub {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--color-muted);
  max-width: 50ch;
}

.industries-grid {
  padding: 0 0 clamp(100px, 12vw, 160px);
}
.industries-grid__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.industry-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card);
  overflow: hidden;
  text-decoration: none;
  background: var(--color-bg-2);
  border: 1px solid var(--color-line);
  transition: transform 0.4s var(--ease);
}
.industry-card:hover { transform: translateY(-4px); }

.industry-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.95);
  transition: transform 0.7s var(--ease), filter 0.4s var(--ease);
}
.industry-card:hover .industry-card__image {
  transform: scale(1.06);
  filter: brightness(0.65) saturate(1);
}
.industry-card__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1A18 0%, #0A0A0A 100%);
}
.industry-card__body {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 3vw, 40px);
}
.industry-card__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  color: var(--color-accent);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.industry-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin-bottom: 8px;
}
.industry-card__sub {
  color: rgba(242, 239, 231, 0.78);
  font-size: 15px;
  line-height: 1.4;
  max-width: 32ch;
}
.industry-card--soon { pointer-events: none; opacity: 0.6; }
.industry-card--soon::after {
  content: "Coming soon";
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  background: rgba(20,20,19,0.85);
  border: 1px solid var(--color-line);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  color: var(--color-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Industry detail: split sections ---------- */
.section-split {
  padding: clamp(100px, 12vw, 160px) 0;
  border-top: 1px solid var(--color-line);
}
.section-split__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.section-split__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5.4vw, 76px);
  line-height: 1;
  letter-spacing: -0.025em;
  max-width: 14ch;
}
.section-split__body {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--color-muted);
  max-width: 50ch;
  margin-bottom: 32px;
}
.bullets {
  list-style: none;
  display: grid;
  gap: 20px;
  counter-reset: bullet-counter;
}
.bullets li {
  position: relative;
  padding-left: 44px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-ink);
  counter-increment: bullet-counter;
}
.bullets li::before {
  content: counter(bullet-counter);
  position: absolute;
  left: 0;
  top: 1px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  line-height: 28px;
}

/* ---------- What we pick ---------- */
.apps {
  padding: clamp(100px, 12vw, 160px) 0;
  border-top: 1px solid var(--color-line);
}
.apps__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 24px;
}
.apps__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5.4vw, 76px);
  line-height: 1;
  letter-spacing: -0.025em;
  max-width: 14ch;
  margin-bottom: 0;
}
.apps__controls {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.apps__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  background: transparent;
  color: var(--color-ink);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.apps__arrow:hover:not(:disabled) {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.apps__arrow:disabled { opacity: 0.3; cursor: default; }
.apps__grid {
  list-style: none;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  mask-image: linear-gradient(to right, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 88%, transparent 100%);
}
.apps__grid::-webkit-scrollbar { display: none; }
.apps__grid.is-dragging { cursor: grabbing; user-select: none; }
.apps__item {
  flex: 0 0 200px;
  scroll-snap-align: start;
  background: var(--color-bg-2);
  border: 1px solid var(--color-line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s var(--ease);
  pointer-events: none;
}
.apps__grid.is-dragging .apps__item { pointer-events: none; }
.apps__item:hover { border-color: var(--color-accent); }
.apps__item-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: var(--color-bg-3);
}
.apps__item-label {
  padding: 14px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.apps__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
}
.apps__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-line);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.apps__dots span.is-active {
  background: var(--color-accent);
  transform: scale(1.3);
}

/* ---------- Industry hero ---------- */
.hero--industry {
  min-height: 80vh;
  height: 80vh;
}
.hero--industry .hero__headline {
  font-size: clamp(44px, 7vw, 110px);
  max-width: 18ch;
}

/* ---------- Responsive industry ---------- */
@media (max-width: 900px) {
  .industries-grid__inner { grid-template-columns: 1fr; }
  .section-split__inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav__links { gap: 16px; }
  .nav__link { display: none; }
}

/* ---------- What's next (humanoids teaser) ---------- */
.next {
  position: relative;
  padding: clamp(120px, 16vw, 200px) 0;
  border-top: 1px solid var(--color-line);
  overflow: hidden;
}
.next::before {
  content: "";
  position: absolute;
  top: 50%; left: 60%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(236, 107, 30, 0.16) 0%, transparent 65%);
  pointer-events: none;
}
.next .container { position: relative; z-index: 1; }
.next__headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6.4vw, 96px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  max-width: 18ch;
}
.next__body {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--color-muted);
  max-width: 56ch;
  margin-bottom: 40px;
}

/* ---------- Humanoid page hero (no video) ---------- */
.hero--manifesto {
  height: auto;
  min-height: 0;
  padding: clamp(140px, 16vw, 220px) 0 clamp(80px, 10vw, 140px);
  display: block;
  position: relative;
  overflow: hidden;
}
.hero--manifesto::before {
  content: "";
  position: absolute;
  top: 30%; left: 70%;
  transform: translate(-50%, -50%);
  width: 1100px; height: 1100px;
  background: radial-gradient(circle, rgba(236, 107, 30, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero--manifesto .hero__content {
  padding-top: 0;
  position: relative;
  z-index: 1;
}
.hero--manifesto .hero__headline {
  text-shadow: none;
  animation: none;
  opacity: 1;
}
.hero--manifesto .hero__sub {
  text-shadow: none;
  animation: none;
  opacity: 1;
  color: var(--color-muted);
}

/* ---------- Three-up reasons grid ---------- */
.reasons {
  padding: clamp(100px, 12vw, 160px) 0;
  border-top: 1px solid var(--color-line);
}
.reasons__intro {
  margin-bottom: clamp(64px, 8vw, 96px);
  max-width: 780px;
}
.reasons__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  max-width: 18ch;
}
.reasons__sub {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--color-muted);
}
.reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.reason {
  background: var(--color-bg-2);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.reason__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.reason__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 1.8vw, 28px);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.reason__body {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.5;
}

/* ---------- Specs table ---------- */
.specs {
  padding: clamp(100px, 12vw, 160px) 0;
  border-top: 1px solid var(--color-line);
}
.specs__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 64px;
  max-width: 16ch;
}
.specs__list {
  list-style: none;
  display: grid;
  border-top: 1px solid var(--color-line);
}
.specs__list li {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-line);
  align-items: baseline;
}
.specs__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.01em;
  color: var(--color-ink);
}
.specs__value {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.5;
  color: var(--color-muted);
}

@media (max-width: 900px) {
  .reasons__grid { grid-template-columns: 1fr; }
  .specs__list li { grid-template-columns: 1fr; gap: 4px; }
}

/* ===========================================================================
   v6 — LIGHT THEME OVERRIDES (appended; cascade wins)
   Strategy: light body throughout, but keep video heroes and the proof
   section dark for visual rhythm and cinematic contrast.
   =========================================================================== */

:root {
  --color-bg: #FAFAF7;
  --color-bg-2: #F2EFE7;
  --color-bg-3: #ECE9E0;
  --color-ink: #0A0A0A;
  --color-muted: #5A5A58;
  --color-line: #E7E4DD;
  --radius-card: 24px;
  /* --color-accent unchanged: #EC6B1E */
}

/* Logo behavior:
   - Pre-scroll (transparent nav over dark hero): cream/white logo
   - Post-scroll (light scrolled nav): natural dark logo */
.nav__logo-img {
  filter: invert(1) hue-rotate(180deg) brightness(1.1);
}
.nav.is-scrolled .nav__logo-img {
  filter: none;
}
.footer__logo img { filter: none; }

/* Nav links + CTA over dark hero video (pre-scroll only) */
.nav:not(.is-scrolled) .nav__link {
  color: #F2EFE7;
}
.nav:not(.is-scrolled) .btn--primary {
  background: #F2EFE7;
  color: #0A0A0A;
}
.nav:not(.is-scrolled) .btn--primary:hover {
  background: var(--color-accent);
  color: #fff;
}

/* Light scrolled nav */
.nav.is-scrolled {
  background: rgba(250, 250, 247, 0.78);
  border-bottom-color: var(--color-line);
}

/* Hero (over dark video): keep cream text */
.hero {
  color: #F2EFE7;
}
.hero__sub {
  color: rgba(242, 239, 231, 0.85);
}

/* Manifesto hero (no video, on light bg): use theme ink */
.hero--manifesto {
  color: var(--color-ink);
}
.hero--manifesto .hero__sub {
  color: var(--color-muted);
}

/* Scroll indicator line: keep cream so it reads on dark video */
.hero__scroll-line {
  background: linear-gradient(180deg, transparent 0%, #F2EFE7 50%, transparent 100%);
}

/* Product showcase image plinth: light gradient */
.product__image {
  background: radial-gradient(circle at center, #F2EFE7 0%, #FAFAF7 100%);
}

/* Proof section: stays dark for contrast (Apple-style alternation) */
.proof {
  background: #0A0A0A;
  color: #F2EFE7;
  border-top-color: #252523;
}
.proof .kicker { color: #8E8B82; }
.proof .kicker--accent { color: var(--color-accent); }
.proof__body { color: #BEBCB5; }
.proof__stat { color: #F2EFE7; }
.proof__stat-label { color: #8E8B82; }
.proof__stats { border-top-color: #252523; }
.proof__stats li { border-right-color: #252523; }

/* Industry cards: keep dark interior so white text stays readable
   over the imagery, regardless of body theme */
.industry-card {
  background: #141413;
  border-color: #252523;
}
.industry-card__name { color: #F2EFE7; }
.industry-card__sub { color: rgba(242, 239, 231, 0.78); }
.industry-card__placeholder {
  background: linear-gradient(135deg, #1A1A18 0%, #0A0A0A 100%);
}
.industry-card--soon::after {
  background: rgba(20,20,19,0.85);
  border-color: #252523;
  color: #8E8B82;
}

/* Form input on light page */
.contact__form input {
  background: #fff;
}
.contact__form input::placeholder { color: #A3A19A; }
.contact__form input:focus {
  box-shadow: 0 0 0 4px rgba(10, 10, 10, 0.08);
}

/* Reason cards (humanoids page): light cards on light bg */
.reason {
  background: var(--color-bg-2);
  border-color: var(--color-line);
}

/* Apps grid items */
.apps__item {
  background: var(--color-bg-2);
  border-color: var(--color-line);
}
.apps__item:hover {
  background: #ECE9E0;
}

/* Bullets accent dash stays orange (already is) */

/* ===========================================================================
   v7 — Commercial hero override
   Action moves down to the bottom of the frame in this clip — bias the
   cover-crop to bottom so the gripper stays visible.
   =========================================================================== */
.hero__video {
  object-position: center 90%;
}

/* ---------- Featured applications module ---------- */
.featured-apps {
  padding: clamp(100px, 12vw, 160px) 0;
  border-top: 1px solid var(--color-line);
}
.featured-apps__intro {
  margin-bottom: clamp(48px, 6vw, 72px);
}
.featured-apps__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5.4vw, 76px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  max-width: 18ch;
}
.featured-apps__sub {
  color: var(--color-muted);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  max-width: 56ch;
}
.featured-apps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}
.featured-app {
  position: relative;
  background: var(--color-bg-2);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.featured-app:hover {
  transform: translateY(-4px);
  border-color: var(--color-line);
}
.featured-app__media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0A0A0A;
  position: relative;
}
.featured-app__media video,
.featured-app__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-app__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1A1A18 0%, #0A0A0A 100%);
  color: var(--color-muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
}
.featured-app__body {
  padding: 24px;
}
.featured-app__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.featured-app__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.featured-app__desc {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.45;
}

/* ---------- Flagship application (large card, used on Pharma) ---------- */
.flagship {
  padding: clamp(100px, 12vw, 160px) 0;
  border-top: 1px solid var(--color-line);
}
.flagship__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.flagship__media {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1A1A18 0%, #0A0A0A 100%);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flagship__media video,
.flagship__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flagship__placeholder {
  color: var(--color-muted);
  text-align: center;
  padding: 24px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.flagship__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.flagship__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  max-width: 14ch;
}
.flagship__body {
  color: var(--color-muted);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 50ch;
}

@media (max-width: 900px) {
  .flagship__inner { grid-template-columns: 1fr; }
}

/* ---------- Apps grid: card-with-figure variant (overrides earlier text-only) ---------- */
.apps__item {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: var(--color-bg-2);
  border: 1px solid var(--color-line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.apps__item:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent);
}
.apps__item-figure {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, #1A1A18 0%, #0A0A0A 100%);
  position: relative;
}
.apps__item-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.apps__item:hover .apps__item-figure img {
  transform: scale(1.05);
}
.apps__item-label {
  padding: 16px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 1.5vw, 21px);
  letter-spacing: -0.01em;
}

/* ---------- Apps grid: horizontal carousel with arrow nav ---------- */
.apps__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.apps__head-text { flex: 1 1 240px; min-width: 240px; }
.apps__head-text .apps__title { margin-bottom: 0; }

.apps__nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.apps__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--color-bg-2);
  border: 1px solid var(--color-line);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), opacity 0.2s var(--ease);
}
.apps__nav-btn:hover { border-color: var(--color-accent); }
.apps__nav-btn:disabled { opacity: 0.35; cursor: default; }
.apps__nav-btn:disabled:hover { border-color: var(--color-line); }

/* Override .apps__grid from grid → horizontal scroll */
.apps__grid {
  display: flex !important;
  grid-template-columns: none !important;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 12px;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.apps__grid::-webkit-scrollbar { display: none; }

/* Card width fixed instead of grid auto-fit */
.apps__item {
  flex: 0 0 240px;
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .apps__item { flex: 0 0 280px; }
}

/* Switch figure to 4:3 — slightly taller, less film-strip-y in a row */
.apps__item-figure { aspect-ratio: 4/3; }

/* Push label to bottom of card so heights align cleanly */
.apps__item-label { margin-top: auto; }
