:root {
  color-scheme: light;
  --ink: #171512;
  --soft-ink: #3f3a32;
  --muted: #706a60;
  --paper: #f4f6f2;
  --paper-strong: #fffef9;
  --mist: #e5ece8;
  --line: #d2dacf;
  --moss: #2e745f;
  --steel: #456576;
  --copper: #b5643e;
  --signal: #d8a743;
  --night: #10151e;
  --deep: #182331;
  --blueprint: #24384a;
  --glass: rgba(255, 255, 255, 0.1);
  --glass-strong: rgba(255, 255, 255, 0.18);
  --ink-line: rgba(23, 21, 18, 0.14);
  --shadow: 0 22px 70px rgba(28, 22, 14, 0.16);
  --shadow-strong: 0 28px 90px rgba(16, 21, 30, 0.22);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 98px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 254, 249, 0.84), rgba(244, 246, 242, 0.94)),
    repeating-linear-gradient(90deg, rgba(36, 56, 74, 0.035) 0 1px, transparent 1px 96px);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(16, 21, 30, 0.86), rgba(16, 21, 30, 0.68)),
    rgba(16, 21, 30, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 42px rgba(8, 12, 18, 0.18);
  backdrop-filter: blur(20px) saturate(130%);
  animation: headerDrop 720ms var(--ease-out) both;
}

.brand,
nav {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 0;
  gap: 11px;
  font-weight: 850;
  text-decoration: none;
  transition: color 180ms ease;
}

.brand-mark {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  background:
    linear-gradient(135deg, var(--signal), var(--copper) 52%, var(--moss));
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
  box-shadow: 0 0 24px rgba(216, 167, 67, 0.38);
}

nav {
  gap: 8px;
  font-size: 0.86rem;
}

nav a,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.category-tabs a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

nav a:hover,
nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--signal);
}

.category-tabs a:hover,
.category-tabs a:focus-visible {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(216, 167, 67, 0.48);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: min(920px, 92svh);
  overflow: hidden;
  isolation: isolate;
  background: var(--night);
}

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

.hero::before {
  inset: -12% -18%;
  z-index: 1;
  background:
    linear-gradient(112deg, transparent 0 34%, rgba(216, 167, 67, 0.18) 45%, transparent 56%),
    linear-gradient(64deg, transparent 0 62%, rgba(69, 101, 118, 0.18) 74%, transparent 88%);
  mix-blend-mode: screen;
  opacity: 0.74;
}

.hero::after {
  inset: auto 0 0;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 167, 67, 0.76), transparent);
}

.career-hero {
  min-height: min(680px, 72svh);
}

.hero-image,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.08);
  transform: scale(1.02);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 12, 18, 0.95) 0%, rgba(8, 12, 18, 0.82) 34%, rgba(8, 12, 18, 0.22) 100%),
    linear-gradient(0deg, rgba(8, 12, 18, 0.82) 0%, rgba(8, 12, 18, 0) 54%);
}

.hero-grid {
  z-index: 1;
  opacity: 0.42;
  background:
    linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1) 72%, transparent);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(138px, 18vh, 206px) 0 64px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--copper);
}

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

h1 {
  max-width: 920px;
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 8.2vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
  word-break: keep-all;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
  word-break: keep-all;
}

h3 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.2vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
  word-break: keep-all;
}

h4 {
  margin: 0 0 16px;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
  word-break: keep-all;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.76;
  text-wrap: pretty;
  word-break: keep-all;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(36px, 7vw, 72px);
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 19px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(16, 21, 30, 0.14);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.button.primary {
  color: #15140f;
  background: linear-gradient(135deg, #e4b64e, var(--signal) 46%, #bd7b43);
  border-color: var(--signal);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 16px 38px rgba(16, 21, 30, 0.22);
  transform: translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(2px) rotate(45deg);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 218px));
  gap: 10px;
  margin: 0;
  perspective: 1200px;
}

.hero-metrics div {
  position: relative;
  overflow: hidden;
  min-height: 92px;
  padding: 14px 15px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.07)),
    rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 3px solid var(--signal);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-metrics div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  opacity: 0;
  transform: translateX(-120%);
  transition:
    opacity 180ms ease,
    transform 620ms var(--ease-out);
}

.hero-metrics div:hover::before {
  opacity: 1;
  transform: translateX(120%);
}

.hero-metrics dt {
  font-size: 1.1rem;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  line-height: 1.35;
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.studio-strip {
  padding: clamp(42px, 6vw, 78px) 0;
  background:
    linear-gradient(135deg, rgba(255, 254, 249, 0.98), rgba(246, 248, 244, 0.92)),
    repeating-linear-gradient(90deg, rgba(46, 116, 95, 0.06) 0 1px, transparent 1px 118px);
  border-bottom: 1px solid var(--line);
}

.work-catalog {
  padding: clamp(42px, 6vw, 78px) 0;
  background:
    linear-gradient(180deg, rgba(229, 236, 232, 0.96), rgba(238, 243, 239, 0.92)),
    repeating-linear-gradient(0deg, rgba(69, 101, 118, 0.05) 0 1px, transparent 1px 88px);
  border-bottom: 1px solid var(--line);
}

.profile-section {
  padding: clamp(56px, 8vw, 104px) 0;
  background: var(--paper-strong);
  border-top: 1px solid var(--line);
}

.career-page-section {
  border-top: 0;
}

.studio-strip-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(24px, 6vw, 82px);
  align-items: start;
}

.studio-strip h2 {
  grid-column: 1;
}

.studio-strip p:last-child {
  grid-column: 2;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
  word-break: keep-all;
}

.products {
  padding: clamp(58px, 8vw, 112px) 0;
  background:
    linear-gradient(180deg, #f8f7f1 0%, #eef3ef 48%, #f7f7f2 100%),
    repeating-linear-gradient(90deg, rgba(36, 56, 74, 0.04) 0 1px, transparent 1px 112px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

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

.portfolio-tab {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  min-height: 190px;
  padding: 22px;
  color: inherit;
  background:
    linear-gradient(180deg, rgba(255, 254, 249, 0.9), rgba(255, 254, 249, 0.64)),
    rgba(255, 254, 249, 0.72);
  border: 1px solid rgba(36, 56, 74, 0.14);
  border-top: 4px solid var(--moss);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 12px 42px rgba(24, 35, 49, 0.08);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease-out);
}

.portfolio-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 34%, rgba(255, 255, 255, 0.55) 48%, transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent);
  opacity: 0;
  transform: translateX(-110%);
  transition:
    opacity 220ms ease,
    transform 700ms var(--ease-out);
}

.portfolio-tab:nth-child(2) {
  border-top-color: var(--steel);
}

.portfolio-tab:nth-child(3) {
  border-top-color: var(--copper);
}

.portfolio-tab:nth-child(4) {
  border-top-color: var(--signal);
}

.portfolio-tab:hover,
.portfolio-tab:focus-visible {
  box-shadow: 0 22px 54px rgba(24, 35, 49, 0.15);
  transform: translateY(-4px);
  border-color: rgba(36, 56, 74, 0.28);
}

.portfolio-tab:hover::before,
.portfolio-tab:focus-visible::before {
  opacity: 1;
  transform: translateX(110%);
}

.portfolio-tab span,
.value-grid span {
  color: var(--steel);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-tab strong {
  position: relative;
  display: block;
  margin-top: 30px;
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1.15;
}

.portfolio-tab p {
  position: relative;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
  word-break: keep-all;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 16px;
}

.profile-card {
  min-width: 0;
  padding: clamp(20px, 3vw, 30px);
  background: rgba(229, 236, 232, 0.48);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.profile-summary {
  color: #fff;
  background: var(--blueprint);
  border-color: rgba(255, 255, 255, 0.12);
}

.profile-summary h3 {
  margin-bottom: 20px;
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
  line-height: 1.08;
}

.profile-label {
  margin-bottom: 14px;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-summary .profile-label {
  color: var(--signal);
}

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

.profile-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.62;
  word-break: keep-all;
}

.profile-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--signal);
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.compact-table,
.career-timeline,
.skill-matrix {
  display: grid;
  gap: 10px;
}

.compact-table div,
.career-timeline div,
.skill-matrix div {
  min-width: 0;
  padding: 14px 15px;
  background: rgba(255, 254, 249, 0.72);
  border: 1px solid rgba(36, 56, 74, 0.12);
  border-left: 3px solid var(--moss);
  border-radius: 8px;
}

.career-timeline div {
  border-left-color: var(--steel);
}

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

.skill-matrix div {
  border-left-color: var(--copper);
}

.compact-table span,
.career-timeline span,
.skill-matrix span {
  display: block;
  margin-bottom: 8px;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compact-table strong,
.career-timeline strong,
.skill-matrix strong {
  display: block;
  color: var(--ink);
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.compact-table p,
.career-timeline p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.product-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1.14fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  scroll-margin-top: 112px;
  padding: clamp(42px, 7vw, 78px) 0;
  border-top: 1px solid var(--line);
  isolation: isolate;
}

.product-panel::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: min(220px, 38%);
  height: 1px;
  background: linear-gradient(90deg, var(--signal), transparent);
  opacity: 0.88;
}

.product-panel:last-child {
  border-bottom: 1px solid var(--line);
}

.product-panel:nth-of-type(2n + 1) {
  grid-template-columns: minmax(340px, 1.14fr) minmax(0, 0.86fr);
}

.product-panel:nth-of-type(2n + 1) .product-copy {
  order: 2;
}

.product-panel-animation {
  grid-template-columns: 1fr;
  align-items: start;
}

.product-panel-animation .product-copy {
  max-width: 960px;
}

.product-index {
  margin-bottom: 16px;
  color: var(--steel);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-lead {
  margin-bottom: 0;
  color: var(--soft-ink);
  font-size: 1.02rem;
  line-height: 1.82;
  text-wrap: pretty;
  word-break: keep-all;
}

.product-points {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.product-points li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
  text-wrap: pretty;
}

.product-points li::before {
  content: "";
  position: absolute;
  top: 0.73em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--moss);
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.value-grid div {
  position: relative;
  overflow: hidden;
  min-height: 118px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.68)),
    rgba(255, 253, 248, 0.76);
  border: 1px solid var(--line);
  border-left: 3px solid var(--blueprint);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(24, 35, 49, 0.06);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms var(--ease-out);
}

.value-grid div:hover {
  border-color: rgba(36, 56, 74, 0.2);
  box-shadow: 0 18px 42px rgba(24, 35, 49, 0.1);
  transform: translateY(-2px);
}

.value-grid strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.45;
  word-break: keep-all;
}

.cvmi-visual-stack {
  display: grid;
  gap: 16px;
}

.cvmi-architecture {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 3vw, 26px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(24, 35, 49, 0.98), rgba(36, 56, 74, 0.94)),
    var(--blueprint);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cvmi-architecture::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.34;
  pointer-events: none;
}

.cvmi-architecture > * {
  position: relative;
}

.cvmi-arch-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.cvmi-arch-header span,
.cvmi-node span,
.cvmi-lanes span {
  color: var(--signal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cvmi-arch-header strong {
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.35;
  text-align: right;
}

.cvmi-flow-diagram {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.cvmi-node {
  position: relative;
  min-height: 126px;
  padding: 15px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms var(--ease-out);
}

.cvmi-node:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(216, 167, 67, 0.34);
  transform: translateY(-2px);
}

.cvmi-node:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  z-index: 2;
  width: 10px;
  height: 2px;
  background: var(--signal);
}

.cvmi-node strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.25;
}

.cvmi-node p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.48;
  word-break: keep-all;
}

.cvmi-lanes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.cvmi-lanes div {
  min-height: 94px;
  padding: 13px;
  background: rgba(255, 254, 249, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 3px solid var(--moss);
  border-radius: 8px;
}

.cvmi-lanes div:nth-child(2) {
  border-left-color: var(--signal);
}

.cvmi-lanes div:nth-child(3) {
  border-left-color: var(--copper);
}

.cvmi-lanes strong {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  line-height: 1.45;
  word-break: keep-all;
}

.cvmi-device-visual {
  box-shadow: 0 16px 44px rgba(24, 35, 49, 0.14);
}

.lc-loop {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.lc-loop div {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.68)),
    rgba(255, 253, 248, 0.76);
  border: 1px solid var(--line);
  border-left: 3px solid var(--moss);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(24, 35, 49, 0.06);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms var(--ease-out);
}

.lc-loop div:hover {
  border-color: rgba(46, 116, 95, 0.24);
  box-shadow: 0 18px 42px rgba(24, 35, 49, 0.1);
  transform: translateY(-2px);
}

.lc-loop span {
  display: block;
  margin-bottom: 10px;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lc-loop strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}

.lc-loop p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  word-break: keep-all;
}

.product-status {
  display: inline-flex;
  margin-top: 24px;
  padding: 9px 11px;
  color: var(--moss);
  font-weight: 900;
  background: rgba(46, 116, 95, 0.1);
  border: 1px solid rgba(46, 116, 95, 0.2);
  border-radius: 8px;
}

.product-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 3;
  background: #0f1721;
  border: 1px solid rgba(23, 21, 18, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateZ(0);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease-out);
}

.product-visual::before,
.lc-review-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.18) 50%, transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 30%);
  opacity: 0;
  transform: translateX(-120%);
  transition:
    opacity 220ms ease,
    transform 820ms var(--ease-out);
  pointer-events: none;
}

.product-visual:hover,
.product-visual:focus-within,
.lc-review-visual:hover {
  border-color: rgba(216, 167, 67, 0.34);
  box-shadow: var(--shadow-strong);
  transform: translateY(-4px);
}

.product-visual:hover::before,
.product-visual:focus-within::before,
.lc-review-visual:hover::before {
  opacity: 1;
  transform: translateX(120%);
}

.product-visual.wide {
  aspect-ratio: 16 / 9;
}

.product-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition:
    filter 300ms ease,
    transform 620ms var(--ease-out);
}

.product-visual:hover img,
.product-visual:focus-within img {
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.025);
}

.showcase-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  background: var(--night);
  transition:
    filter 300ms ease,
    transform 620ms var(--ease-out);
}

.lc-visual:hover .showcase-video,
.lc-visual:focus-within .showcase-video {
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.018);
}

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

.lc-review-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(440px, 1.22fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.lc-evidence-stack {
  display: grid;
  gap: 14px;
}

.lc-review-copy p:not(.product-index) {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.76;
  word-break: keep-all;
}

.review-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.review-metrics div {
  position: relative;
  overflow: hidden;
  min-height: 98px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.68)),
    rgba(255, 253, 248, 0.76);
  border: 1px solid var(--line);
  border-left: 3px solid var(--copper);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(24, 35, 49, 0.06);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms var(--ease-out);
}

.review-metrics div:hover {
  border-color: rgba(181, 100, 62, 0.24);
  box-shadow: 0 18px 42px rgba(24, 35, 49, 0.1);
  transform: translateY(-2px);
}

.review-metrics div:nth-child(2) {
  border-left-color: var(--moss);
}

.review-metrics div:nth-child(3) {
  border-left-color: var(--steel);
}

.review-metrics span {
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-metrics strong {
  display: block;
  margin-top: 13px;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.45;
}

.lc-review-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 1680 / 1060;
  background: #10151e;
  border: 1px solid rgba(23, 21, 18, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease-out);
}

.lc-review-visual.tall {
  aspect-ratio: 1680 / 1120;
}

.lc-review-visual.queue {
  aspect-ratio: 1680 / 1160;
}

.lc-review-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 300ms ease,
    transform 620ms var(--ease-out);
}

.lc-review-visual:hover img {
  filter: saturate(1.03) contrast(1.03);
  transform: scale(1.018);
}

.product-panel-cvmi .product-visual img {
  object-position: center 42%;
}

.product-panel-cargo .product-visual img {
  object-position: left top;
}

.product-visual figcaption,
.lc-review-visual figcaption {
  position: absolute;
  z-index: 3;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(180deg, rgba(16, 21, 30, 0.78), rgba(16, 21, 30, 0.62)),
    rgba(16, 21, 30, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.lc-visual {
  isolation: isolate;
}

.home-redesign .lc-visual::before {
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, transparent 0 24%, rgba(216, 167, 67, 0.16) 26%, transparent 28%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 9%);
  opacity: 0.22;
  mix-blend-mode: screen;
}

.lc-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(16, 21, 30, 0) 38%, rgba(16, 21, 30, 0.76) 100%);
  pointer-events: none;
}

.lc-motion-overlay {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 16px;
  right: 16px;
  display: grid;
  gap: 10px;
  max-width: 420px;
  pointer-events: none;
}

.lc-frame-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.lc-frame-strip span {
  min-height: 42px;
  background:
    linear-gradient(135deg, rgba(216, 167, 67, 0.96), rgba(181, 100, 62, 0.82)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(16, 21, 30, 0.16);
  transform-origin: bottom center;
  animation: lcFramePulse 3.4s ease-in-out infinite;
}

.lc-frame-strip span:nth-child(2) {
  animation-delay: 0.18s;
}

.lc-frame-strip span:nth-child(3) {
  animation-delay: 0.36s;
}

.lc-frame-strip span:nth-child(4) {
  animation-delay: 0.54s;
}

.lc-frame-strip span:nth-child(5) {
  animation-delay: 0.72s;
}

.lc-timeline {
  position: relative;
  height: 5px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.lc-timeline span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 34%;
  background: var(--signal);
  border-radius: inherit;
  animation: lcTimeline 3.4s ease-in-out infinite;
}

.lc-gate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(180deg, rgba(16, 21, 30, 0.78), rgba(16, 21, 30, 0.62)),
    rgba(16, 21, 30, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.lc-gate span {
  color: var(--signal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lc-gate strong {
  color: #fff;
  font-size: 0.9rem;
}

@keyframes lcFramePulse {
  0%,
  100% {
    opacity: 0.58;
    transform: translateY(0) scaleY(0.88);
  }

  42% {
    opacity: 1;
    transform: translateY(-5px) scaleY(1);
  }
}

@keyframes lcTimeline {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(95%);
  }

  100% {
    transform: translateX(220%);
  }
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

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

@keyframes heroImageDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-14px, -8px, 0);
  }
}

@keyframes heroGridDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 74px 74px, 74px 74px;
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes sectionReveal {
  from {
    opacity: 0.72;
    transform: translateY(22px);
  }

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

@media (prefers-reduced-motion: no-preference) {
  .hero-image {
    animation: heroImageDrift 18s ease-in-out infinite alternate;
  }

  .hero-grid {
    animation: heroGridDrift 18s linear infinite;
  }

  .hero-content > * {
    animation: riseIn 780ms var(--ease-out) both;
  }

  .hero-content > :nth-child(2) {
    animation-delay: 90ms;
  }

  .hero-content > :nth-child(3) {
    animation-delay: 180ms;
  }

  .hero-content > :nth-child(4) {
    animation-delay: 270ms;
  }

  .hero-content > :nth-child(5) {
    animation-delay: 360ms;
  }

  @supports (animation-timeline: view()) {
    .studio-strip-inner,
    .section-heading,
    .portfolio-tab,
    .product-panel,
    .lc-review-showcase {
      animation: sectionReveal both;
      animation-timeline: view();
      animation-range: entry 8% cover 28%;
    }
  }
}

.process-band {
  padding: clamp(48px, 7vw, 86px) 0;
  color: #fff;
  background: var(--deep);
}

.process-grid,
.domain-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(24px, 6vw, 78px);
  align-items: start;
}

.process-grid h2 {
  color: #fff;
}

.process-list,
.domain-table {
  display: grid;
  gap: 10px;
}

.process-item,
.domain-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 64px;
  padding: 16px 18px;
  border-radius: 8px;
}

.process-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.process-item span,
.domain-row span {
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.process-item strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.55;
}

.domain-map {
  padding: clamp(48px, 7vw, 86px) 0;
  background: var(--mist);
  border-top: 1px solid var(--line);
}

.domain-row {
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid var(--line);
}

.domain-row span {
  color: var(--steel);
  text-transform: none;
}

.domain-row strong {
  color: var(--ink);
  line-height: 1.5;
}

.domain-row p {
  grid-column: 2;
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.58;
  word-break: keep-all;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 30px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--night);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    min-height: 104px;
    gap: 10px;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  .hero {
    min-height: 76svh;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-grid {
    opacity: 0.28;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 88%);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 14, 21, 0.95) 0%, rgba(10, 14, 21, 0.76) 100%),
      linear-gradient(0deg, rgba(10, 14, 21, 0.72) 0%, rgba(10, 14, 21, 0) 58%);
  }

  .hero-content {
    padding-top: 140px;
    padding-bottom: 42px;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 460px;
  }

  .hero-metrics div {
    min-height: 72px;
    padding: 10px;
  }

  .hero-metrics dt {
    font-size: 0.94rem;
  }

  .hero-metrics dd {
    margin-top: 5px;
    font-size: 0.72rem;
  }

  .studio-strip-inner,
  .process-grid,
  .domain-grid,
  .portfolio-tabs,
  .profile-grid,
  .cvmi-flow-diagram,
  .cvmi-lanes,
  .lc-loop,
  .value-grid,
  .product-panel,
  .product-panel:nth-of-type(2n + 1) {
    grid-template-columns: 1fr;
  }

  .studio-strip h2,
  .studio-strip p:last-child {
    grid-column: auto;
  }

  .studio-strip p:last-child {
    margin-top: 0;
  }

  .product-panel:nth-of-type(2n + 1) .product-copy {
    order: 0;
  }

  .cvmi-node:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 18px;
    bottom: -11px;
    width: 2px;
    height: 11px;
  }

  .lc-showcase-grid {
    grid-template-columns: 1fr;
  }

  .lc-review-showcase,
  .review-metrics,
  .skill-matrix {
    grid-template-columns: 1fr;
  }

  .product-visual img {
    min-height: 270px;
  }

}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand {
    font-size: 0.96rem;
  }

  nav {
    gap: 5px;
    font-size: 0.72rem;
  }

  .category-tabs a {
    min-height: 32px;
    padding-inline: 8px;
  }

  .section-inner,
  .hero-content {
    width: calc(100% - 32px);
    max-width: 1180px;
  }

  .hero {
    min-height: 76svh;
  }

  .hero-content {
    padding-top: 128px;
    padding-bottom: 34px;
  }

  h1 {
    font-size: clamp(2rem, 8.9vw, 2.5rem);
    line-height: 1.1;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(1.55rem, 7.2vw, 2.18rem);
    line-height: 1.16;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  h3,
  h4,
  .hero-copy,
  .studio-strip p:last-child,
  .portfolio-tab p,
  .product-lead,
  .product-points li,
  .profile-list li,
  .compact-table strong,
  .career-timeline strong,
    .skill-matrix strong,
    .domain-row p {
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.62;
  }

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

  .button {
    min-height: 43px;
    padding-inline: 14px;
  }

  .hero-metrics {
    gap: 6px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-metrics div {
    min-height: 62px;
    padding: 9px 8px;
  }

  .hero-metrics dt {
    overflow-wrap: anywhere;
  }

  .hero-metrics dd {
    display: none;
  }

  .portfolio-tab {
    min-height: auto;
    padding: 18px;
  }

  .portfolio-tab strong {
    margin-top: 18px;
    font-size: 1.28rem;
  }

  .process-item,
  .domain-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .domain-row p {
    grid-column: auto;
    margin-top: 0;
  }

  .lc-loop div {
    min-height: auto;
  }

  .value-grid div {
    min-height: auto;
  }

  .cvmi-arch-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .cvmi-arch-header strong {
    text-align: left;
  }

  .cvmi-node {
    min-height: auto;
  }

  .lc-motion-overlay {
    top: 12px;
    left: 12px;
    right: 12px;
    max-width: calc(100% - 24px);
    gap: 6px;
  }

  .lc-frame-strip {
    gap: 5px;
  }

  .lc-frame-strip span {
    min-height: 24px;
  }

  .lc-gate {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 8px 9px;
  }

  .lc-gate span {
    font-size: 0.66rem;
  }

  .lc-gate strong {
    font-size: 0.78rem;
    line-height: 1.24;
  }

  .site-footer {
    flex-direction: column;
  }
}

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

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

  .lc-frame-strip span,
  .lc-timeline span {
    animation: none;
  }
}

body.home-redesign {
  --home-ink: #111111;
  --home-muted: #666a70;
  --home-soft: #f5f5f2;
  --home-panel: #fbfaf6;
  --home-line: rgba(17, 17, 17, 0.12);
  --home-green: #2f7d5d;
  --home-blue: #24536d;
  --home-red: #b84a3a;
  --home-gold: #d8a743;
  --home-shadow: 0 26px 90px rgba(17, 17, 17, 0.16);
  background:
    linear-gradient(180deg, #f7f6f0 0%, #f1f4f0 46%, #fbfaf6 100%),
    repeating-linear-gradient(90deg, rgba(17, 17, 17, 0.035) 0 1px, transparent 1px 128px);
  color: var(--home-ink);
}

.home-redesign .premium-header {
  min-height: 64px;
  padding: 10px clamp(16px, 3.8vw, 56px);
  background: rgba(9, 12, 17, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.16);
}

.home-redesign .brand {
  font-size: 0.96rem;
}

.home-redesign .brand-mark {
  background: linear-gradient(135deg, var(--home-gold), var(--home-red) 56%, var(--home-green));
}

.home-redesign .category-tabs a {
  min-height: 34px;
  padding-inline: 14px;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.home-redesign .premium-hero {
  min-height: min(840px, 88svh);
  border-bottom: 1px solid rgba(216, 167, 67, 0.65);
}

.home-redesign .premium-hero::before {
  background:
    linear-gradient(112deg, transparent 0 36%, rgba(216, 167, 67, 0.12) 48%, transparent 60%),
    linear-gradient(64deg, transparent 0 60%, rgba(47, 125, 93, 0.14) 76%, transparent 90%);
  opacity: 0.72;
}

.hero-product-orbit {
  position: absolute;
  z-index: 2;
  top: 112px;
  right: max(28px, calc((100vw - 1220px) / 2));
  width: min(48vw, 650px);
  height: min(62vh, 560px);
  pointer-events: none;
  perspective: 1600px;
}

.orbit-card {
  position: absolute;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transform: rotateX(6deg) rotateY(-12deg) translateZ(0);
  backdrop-filter: blur(18px) saturate(130%);
}

.orbit-card::after,
.project-shot em,
.home-redesign .cvmi-architecture::after,
.home-redesign .lc-visual::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.orbit-card::after {
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.34) 48%, transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 38%);
  opacity: 0;
  transform: translateX(-120%);
}

.orbit-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.08);
}

.orbit-card-game {
  top: 7%;
  right: 6%;
  width: 58%;
  height: 44%;
}

.orbit-card-cvmi {
  top: 36%;
  right: 0;
  width: 32%;
  height: 46%;
}

.orbit-card-cargo {
  left: 3%;
  bottom: 10%;
  width: 48%;
  height: 34%;
}

.orbit-card-lc {
  top: 15%;
  left: 0;
  width: 34%;
  height: 30%;
}

.orbit-scanline {
  position: absolute;
  left: 8%;
  right: 4%;
  bottom: 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 167, 67, 0.86), transparent);
  opacity: 0.74;
}

.hero-scroll-cue {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 22px;
  width: 1px;
  height: 54px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
  transform: translateX(-50%);
}

.hero-scroll-cue span {
  display: block;
  width: 100%;
  height: 42%;
  background: rgba(244, 240, 223, 0.95);
}

.home-redesign .hero-image {
  object-position: center;
  filter: saturate(1.02) contrast(1.1);
}

.home-redesign .hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 10, 15, 0.95) 0%, rgba(7, 10, 15, 0.7) 38%, rgba(7, 10, 15, 0.2) 100%),
    linear-gradient(0deg, rgba(7, 10, 15, 0.86) 0%, rgba(7, 10, 15, 0.08) 58%);
}

.home-redesign .hero-grid {
  opacity: 0.24;
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.15) 76%, transparent);
}

.home-redesign .hero-content {
  width: min(1220px, calc(100% - 40px));
  padding: clamp(126px, 18vh, 190px) 0 clamp(38px, 7vh, 70px);
}

.home-redesign .hero-content > * {
  animation: none;
}

.home-redesign .eyebrow {
  margin-bottom: 18px;
  color: var(--home-gold);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.home-redesign h1 {
  max-width: 860px;
  margin-bottom: 20px;
  font-size: clamp(3.6rem, 9vw, 8.4rem);
  line-height: 0.9;
}

.home-redesign .hero-copy {
  max-width: 670px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
  line-height: 1.68;
}

.home-redesign .hero-actions {
  margin-bottom: clamp(30px, 5vw, 54px);
}

.home-redesign .button {
  min-height: 44px;
  border-radius: 8px;
}

.home-redesign .button.primary {
  background: #f4f0df;
  border-color: #f4f0df;
}

.home-redesign .button.secondary {
  background: rgba(255, 255, 255, 0.08);
}

.home-redesign .hero-metrics {
  grid-template-columns: repeat(4, minmax(120px, 168px));
  gap: 8px;
}

.home-redesign .hero-metrics div {
  min-height: 78px;
  padding: 12px 13px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  border-left: 0;
  border-radius: 8px;
}

.home-redesign .hero-metrics dt {
  color: #fff;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1;
}

.home-redesign .hero-metrics dd {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-redesign .studio-strip {
  padding: clamp(44px, 7vw, 88px) 0;
  background: var(--home-panel);
}

.home-redesign .studio-strip-inner {
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
}

.home-redesign .studio-strip h2 {
  font-size: clamp(2.2rem, 5vw, 5.4rem);
  line-height: 0.98;
}

.studio-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.studio-principles div {
  min-height: 148px;
  padding: 18px;
  background: #f0f2ed;
  border: 1px solid var(--home-line);
  border-radius: 8px;
}

.studio-principles span,
.home-redesign .project-shot span,
.home-redesign .proof-rail span,
.home-redesign .review-metrics span {
  display: block;
  color: var(--home-blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.studio-principles strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.48;
  word-break: keep-all;
}

.home-redesign .showcase-section {
  padding: clamp(48px, 7vw, 92px) 0;
  background:
    linear-gradient(180deg, #151719 0%, #20252b 100%),
    #151719;
  border-bottom: 0;
}

.home-redesign .showcase-section .section-heading {
  color: #fff;
}

.home-redesign .showcase-section h2 {
  max-width: 780px;
}

.showcase-wall {
  display: grid;
  grid-template-columns: 1.12fr 0.9fr 0.9fr;
  grid-template-rows: minmax(250px, 28vw) minmax(250px, 28vw);
  gap: 12px;
}

.project-shot {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  min-height: 260px;
  padding: clamp(18px, 2.6vw, 28px);
  color: #fff;
  background: #0f1721;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.22);
  text-decoration: none;
  isolation: isolate;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease-out);
}

.project-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 24%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0));
}

.project-shot em {
  inset: -45% -72%;
  z-index: -1;
  background: linear-gradient(115deg, transparent 36%, rgba(255, 255, 255, 0.28) 49%, transparent 62%);
  opacity: 0;
  transform: translateX(-38%) rotate(8deg);
}

.project-shot img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 260ms ease,
    transform 700ms var(--ease-out);
}

.project-shot-game {
  grid-row: 1 / span 2;
}

.project-shot-game img {
  object-position: 72% center;
}

.project-shot-cvmi {
  grid-column: 2 / 4;
}

.project-shot-cvmi img {
  object-position: center 38%;
}

.project-shot-cargo img {
  object-position: left top;
}

.project-shot strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(2rem, 3.6vw, 4.4rem);
  line-height: 0.94;
}

.project-shot p {
  max-width: 440px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  line-height: 1.48;
  word-break: keep-all;
}

.project-shot:hover,
.project-shot:focus-visible {
  border-color: rgba(216, 167, 67, 0.48);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  transform: translateY(-4px);
}

.project-shot:hover img,
.project-shot:focus-visible img {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.035);
}

.home-redesign .products {
  padding: clamp(46px, 7vw, 96px) 0;
  background:
    linear-gradient(180deg, #f7f6f0 0%, #ebeee9 46%, #fbfaf6 100%),
    repeating-linear-gradient(90deg, rgba(17, 17, 17, 0.035) 0 1px, transparent 1px 128px);
}

.home-redesign .section-heading {
  max-width: 940px;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.home-redesign .products .section-heading h2 {
  font-size: clamp(2.3rem, 5.4vw, 6rem);
  line-height: 0.98;
}

.home-redesign .premium-product {
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(54px, 8vw, 110px) 0;
  border-top-color: rgba(17, 17, 17, 0.12);
}

.home-redesign .premium-product::before {
  width: min(320px, 44%);
  background: linear-gradient(90deg, var(--home-gold), transparent);
}

.home-redesign .product-index {
  margin-bottom: 14px;
  color: var(--home-red);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.home-redesign .product-copy h3 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 5.6vw, 6.2rem);
  line-height: 0.92;
}

.home-redesign .product-lead {
  max-width: 640px;
  color: #33383d;
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
  line-height: 1.72;
}

.home-redesign .proof-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 24px;
}

.home-redesign .proof-rail div {
  min-height: 96px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--home-line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.06);
}

.home-redesign .proof-rail strong {
  display: block;
  margin-top: 13px;
  color: var(--home-ink);
  font-size: 0.96rem;
  line-height: 1.4;
  word-break: keep-all;
}

.home-redesign .product-visual,
.home-redesign .lc-review-visual,
.home-redesign .cvmi-architecture {
  border-radius: 8px;
  box-shadow: var(--home-shadow);
}

.home-redesign .product-visual {
  border-color: rgba(17, 17, 17, 0.12);
}

.home-redesign .product-visual img {
  min-height: clamp(360px, 38vw, 560px);
}

.home-redesign .product-visual figcaption,
.home-redesign .lc-review-visual figcaption {
  border-radius: 8px;
}

.home-redesign .cvmi-architecture {
  background:
    linear-gradient(135deg, rgba(18, 25, 33, 0.98), rgba(34, 63, 79, 0.96)),
    #121921;
}

.home-redesign .cvmi-architecture::after {
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0 42%, rgba(216, 167, 67, 0.16) 50%, transparent 58%);
  opacity: 0.6;
  transform: translateY(-120%);
}

.home-redesign .cvmi-architecture > * {
  z-index: 2;
}

.home-redesign .cvmi-flow-diagram {
  gap: 8px;
}

.home-redesign .cvmi-node,
.home-redesign .cvmi-lanes div {
  border-radius: 8px;
}

.home-redesign .lc-loop {
  margin-top: 24px;
}

.home-redesign .lc-loop div {
  min-height: 96px;
}

.home-redesign .lc-loop p {
  display: none;
}

.home-redesign .lc-showcase-grid {
  gap: 12px;
}

.home-redesign .lc-review-showcase {
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(20px, 4vw, 48px);
  margin-top: clamp(28px, 5vw, 54px);
  padding-top: clamp(28px, 5vw, 54px);
}

.home-redesign .lc-review-copy h4 {
  font-size: clamp(2rem, 4.2vw, 4.8rem);
  line-height: 0.98;
}

.home-redesign .lc-review-copy p:not(.product-index) {
  color: #44484d;
  font-size: 1.02rem;
}

.home-redesign .review-metrics {
  margin-top: 22px;
}

.home-redesign .review-metrics div {
  min-height: 92px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--home-line);
  border-radius: 8px;
}

.home-redesign .lc-evidence-stack {
  gap: 12px;
}

.home-redesign .site-footer {
  background: #0b0e13;
}

@media (max-width: 900px) {
  .home-redesign .premium-header {
    min-height: 94px;
  }

  .home-redesign .premium-hero {
    min-height: 82svh;
  }

  .home-redesign .hero-image {
    object-position: 66% center;
  }

  .home-redesign .hero-content {
    padding-top: 132px;
  }

  .home-redesign h1 {
    max-width: 700px;
    font-size: clamp(3rem, 12vw, 6rem);
  }

  .home-redesign .hero-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 100%;
  }

  .home-redesign .studio-strip-inner,
  .studio-principles,
  .home-redesign .proof-rail,
  .home-redesign .lc-review-showcase {
    grid-template-columns: 1fr;
  }

  .showcase-wall {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .project-shot,
  .project-shot-game,
  .project-shot-cvmi {
    grid-column: auto;
    grid-row: auto;
    min-height: 330px;
  }

  .home-redesign .premium-product,
  .home-redesign .product-panel:nth-of-type(2n + 1) {
    grid-template-columns: 1fr;
  }

  .home-redesign .product-panel:nth-of-type(2n + 1) .product-copy {
    order: 0;
  }
}

@media (max-width: 560px) {
  .home-redesign .premium-header {
    min-height: 88px;
  }

  .home-redesign .category-tabs a {
    min-height: 30px;
    padding-inline: 8px;
  }

  .home-redesign .premium-hero {
    min-height: 78svh;
  }

  .home-redesign .hero-content {
    width: calc(100% - 32px);
    padding-top: 120px;
    padding-bottom: 30px;
  }

  .home-redesign h1 {
    font-size: clamp(2.72rem, 13vw, 4.6rem);
    line-height: 0.94;
  }

  .home-redesign .hero-copy {
    max-width: 96%;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .home-redesign .hero-actions {
    gap: 8px;
  }

  .home-redesign .button {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.86rem;
  }

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

  .home-redesign .hero-metrics div {
    min-height: 58px;
  }

  .home-redesign .hero-metrics dd {
    display: block;
    font-size: 0.62rem;
  }

  .studio-principles div,
  .home-redesign .proof-rail div,
  .home-redesign .review-metrics div {
    min-height: auto;
  }

  .project-shot {
    min-height: 280px;
    padding: 18px;
  }

  .project-shot strong,
  .home-redesign .product-copy h3,
  .home-redesign .lc-review-copy h4 {
    overflow-wrap: anywhere;
  }

  .home-redesign .product-visual img {
    min-height: 260px;
  }
}

@keyframes orbitCardFloat {
  0%,
  100% {
    transform: rotateX(6deg) rotateY(-12deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotateX(4deg) rotateY(-8deg) translate3d(0, -14px, 28px);
  }
}

@keyframes orbitCardSweep {
  0%,
  42% {
    opacity: 0;
    transform: translateX(-120%);
  }

  58% {
    opacity: 0.78;
  }

  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes orbitScanline {
  0%,
  100% {
    opacity: 0.38;
    transform: translateY(0) scaleX(0.72);
  }

  48% {
    opacity: 0.9;
    transform: translateY(-24px) scaleX(1);
  }
}

@keyframes scrollCueDrop {
  0% {
    transform: translateY(-110%);
  }

  100% {
    transform: translateY(245%);
  }
}

@keyframes tileSoftSweep {
  0%,
  38% {
    opacity: 0;
    transform: translateX(-42%) rotate(8deg);
  }

  56% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: translateX(42%) rotate(8deg);
  }
}

@keyframes cvmiRenderSweep {
  0% {
    transform: translateY(-120%);
  }

  100% {
    transform: translateY(120%);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .home-redesign .hero-content > * {
    animation: riseIn 780ms var(--ease-out) both;
  }

  .home-redesign .hero-content > :nth-child(2) {
    animation-delay: 90ms;
  }

  .home-redesign .hero-content > :nth-child(3) {
    animation-delay: 180ms;
  }

  .home-redesign .hero-content > :nth-child(4) {
    animation-delay: 270ms;
  }

  .home-redesign .hero-content > :nth-child(5) {
    animation-delay: 360ms;
  }

  .home-redesign .orbit-card {
    animation: orbitCardFloat 8s var(--ease-out) infinite;
  }

  .home-redesign .orbit-card::after {
    animation: orbitCardSweep 7.4s ease-in-out infinite;
  }

  .home-redesign .orbit-card-cvmi {
    animation-delay: 0.7s;
  }

  .home-redesign .orbit-card-cargo {
    animation-delay: 1.2s;
  }

  .home-redesign .orbit-card-lc {
    animation-delay: 1.8s;
  }

  .home-redesign .orbit-scanline {
    animation: orbitScanline 5.8s ease-in-out infinite;
  }

  .home-redesign .hero-scroll-cue span {
    animation: scrollCueDrop 1.7s ease-in-out infinite;
  }

  .home-redesign .project-shot em {
    animation: tileSoftSweep 9s ease-in-out infinite;
  }

  .home-redesign .project-shot:nth-child(2) em {
    animation-delay: 0.8s;
  }

  .home-redesign .project-shot:nth-child(3) em {
    animation-delay: 1.5s;
  }

  .home-redesign .project-shot:nth-child(4) em {
    animation-delay: 2.2s;
  }

  .home-redesign .cvmi-architecture::after {
    animation: cvmiRenderSweep 5.6s ease-in-out infinite;
  }

  @supports (animation-timeline: view()) {
    .home-redesign .showcase-wall,
    .home-redesign .project-shot {
      animation: sectionReveal both;
      animation-timeline: view();
      animation-range: entry 8% cover 28%;
    }
  }
}

@media (max-width: 900px) {
  .hero-product-orbit,
  .hero-scroll-cue {
    display: none;
  }
}
