:root {
  --home-bg: #090b10;
  --home-panel: rgba(17, 22, 31, 0.98);
  --home-panel-soft: rgba(17, 22, 31, 0.94);
  --home-text: #f2ece3;
  --home-muted: rgba(236, 227, 214, 0.76);
  --home-accent: #c89c69;
  --home-accent-bright: #e8bb8a;
  --home-line: rgba(255, 255, 255, 0.08);
  --home-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  --home-shadow-soft: 0 20px 52px rgba(0, 0, 0, 0.34);
  --home-scroll-progress: 0;
}

html,
body.page-home {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body.page-home {
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-snap-type: none;
  overscroll-behavior-y: auto;
  font-family: "Manrope", sans-serif;
  color: var(--home-text);
  background:
    radial-gradient(circle at 15% 15%, rgba(200, 156, 105, 0.12), transparent 16%),
    radial-gradient(circle at 95% 22%, rgba(255, 255, 255, 0.05), transparent 18%),
    radial-gradient(circle at 93% 75%, rgba(255, 255, 255, 0.06), transparent 10%),
    linear-gradient(180deg, #05070b 0%, #0a0d12 40%, #0b0e13 67%, #08090d 100%);
  scrollbar-color: rgba(200, 156, 105, 0.58) rgba(255, 255, 255, 0.06);
}

body.page-home.is-home-preloading {
  overflow: hidden;
}

.page-home .site-header--home,
.page-home .site-footer--home {
  display: none;
}

.page-home .global-wrapper {
  overflow: visible;
}

.page-home .site-shell,
.page-home .site-main--home,
.page-home #workarea.page-content--home {
  margin: 0;
  padding: 0;
  background: transparent;
  min-height: auto;
}

body.page-home::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.24;
}

body.page-home::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  height: 28%;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.08)),
    linear-gradient(180deg, rgba(84, 54, 34, 0.14), rgba(45, 26, 15, 0.28)),
    repeating-linear-gradient(90deg, rgba(91, 63, 43, 0.35) 0, rgba(91, 63, 43, 0.35) 1px, rgba(42, 27, 17, 0.54) 1px, rgba(42, 27, 17, 0.54) 116px);
}

.page-home a {
  color: inherit;
}

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

.home-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  box-sizing: border-box;
  color: var(--home-text);
  background:
    radial-gradient(circle at 50% 38%, rgba(232, 187, 138, 0.15), transparent 21%),
    linear-gradient(180deg, #05070b, #090b10);
  opacity: 1;
  pointer-events: auto;
  transition: visibility 0s linear 0.34s;
}

.home-preloader__stage {
  display: grid;
  justify-items: center;
  gap: 24px;
  text-align: center;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.home-preloader__wheel-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(132px, 18vw, 220px);
  aspect-ratio: 1082 / 992;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: 50% 50%;
  will-change: transform;
}

.home-preloader__wheel-wrap::before,
.home-preloader__wheel-wrap::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.home-preloader__wheel-wrap::before {
  width: 78%;
  aspect-ratio: 1;
  background:
    radial-gradient(circle, rgba(232, 187, 138, 0.12) 0 12%, rgba(232, 187, 138, 0.08) 13% 34%, transparent 66%);
  box-shadow:
    0 26px 42px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(232, 187, 138, 0.08);
  filter: blur(12px);
  opacity: 0.58;
}

.home-preloader__wheel-wrap::after {
  display: none;
}

.home-preloader__wheel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  opacity: 0;
  transform-origin: 50% 50%;
  animation: homePreloaderSpin 1.2s linear infinite;
  filter:
    drop-shadow(0 22px 34px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 24px rgba(232, 187, 138, 0.18));
  transition: opacity 0.24s ease;
}

.home-preloader.is-wheel-ready .home-preloader__wheel {
  opacity: 1;
}

.home-preloader.is-wheel-ready .home-preloader__wheel-wrap::before {
  opacity: 0;
}

.home-preloader.is-wheel-fallback .home-preloader__wheel {
  opacity: 0;
}

.home-preloader.is-wheel-fallback .home-preloader__wheel-wrap::before {
  opacity: 0.58;
}

.home-preloader__copy {
  display: grid;
  gap: 12px;
  min-width: min(420px, calc(100vw - 48px));
  max-width: calc(100vw - 48px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.home-preloader__brand,
.home-preloader__note {
  margin: 0;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-preloader__brand {
  font-size: clamp(1.65rem, 4.8vw, 5.2rem);
  line-height: 1;
  font-weight: 800;
}

.home-preloader__note {
  color: var(--home-muted);
  font-size: clamp(0.88rem, 1.6vw, 1.1rem);
  font-weight: 700;
}

.home-preloader__status {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.home-preloader__percent {
  min-width: 4ch;
  color: var(--home-accent-bright);
  font-size: clamp(0.9rem, 1.8vw, 1.18rem);
  font-weight: 800;
  letter-spacing: 0;
  text-align: right;
}

.home-preloader__meter {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.home-preloader__meter span {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(200, 156, 105, 0.72), rgba(232, 187, 138, 1));
  box-shadow: 0 0 22px rgba(232, 187, 138, 0.28);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.2s ease;
}

body.is-home-preloader-flying .home-preloader {
  visibility: hidden;
  pointer-events: none;
  transition-delay: 0.34s;
}

body.is-home-preloader-flying .home-preloader__stage {
  opacity: 0;
  transform: scale(0.96);
}

body.is-home-preloader-flying .home-preloader__copy {
  opacity: 0;
}

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

.home-fixed-ui {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
}

.home-fixed-ui__inner {
  position: relative;
  width: min(1820px, calc(100vw - 24px));
  height: 100vh;
  margin: 0 auto;
  pointer-events: none;
}

.home-menu-chip,
.home-rail {
  pointer-events: auto;
}

.home-menu-chip {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 228px;
  height: 64px;
  padding: 0 18px 0 22px;
  border: 1px solid rgba(200, 156, 105, 0.58);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(18, 24, 34, 0.98), rgba(11, 15, 22, 0.94)),
    rgba(10, 14, 20, 0.94);
  color: rgba(247, 235, 219, 0.96);
  box-shadow:
    0 22px 40px rgba(0, 0, 0, 0.42),
    0 0 26px rgba(200, 156, 105, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition:
    background-color 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.home-menu-chip__copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.home-menu-chip__eyebrow {
  color: rgba(236, 227, 214, 0.62);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-menu-chip__label {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-menu-chip__icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(200, 156, 105, 0.44);
  color: var(--home-accent-bright);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.home-menu-chip svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
}

.home-menu-chip:hover,
body.is-home-nav-open .home-menu-chip {
  border-color: rgba(232, 187, 138, 0.82);
  background: rgba(18, 24, 34, 0.98);
  box-shadow:
    0 22px 40px rgba(0, 0, 0, 0.42),
    0 0 22px rgba(200, 156, 105, 0.16);
  transform: translateY(-1px);
}

.home-menu-chip:hover .home-menu-chip__icon,
body.is-home-nav-open .home-menu-chip__icon {
  border-color: rgba(232, 187, 138, 0.76);
  background: rgba(200, 156, 105, 0.08);
  transform: rotate(90deg);
}

.home-rail {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 262px;
  height: calc(100vh - 48px);
  min-width: 0;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(16, 21, 30, 0.94), rgba(12, 16, 23, 0.98));
  box-shadow: var(--home-shadow);
  overflow: visible;
  transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

body.is-home-nav-open .home-rail {
  border-color: rgba(200, 156, 105, 0.18);
  box-shadow:
    var(--home-shadow),
    0 0 0 1px rgba(200, 156, 105, 0.08);
}

.home-rail::before,
.home-rail::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.home-rail::before {
  top: 0;
  width: 1px;
  height: 53%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.home-rail::after {
  bottom: 0;
  width: 1px;
  height: 22%;
  background: linear-gradient(180deg, rgba(200, 156, 105, 0.45), rgba(255, 255, 255, 0.03));
}

.home-rail__wheel {
  position: absolute;
  top: -28px;
  left: 50%;
  width: min(438px, 186%);
  aspect-ratio: 1082 / 992;
  transform: translateX(-50%);
  pointer-events: none;
}

.home-rail__wheel::after {
  content: "";
  position: absolute;
}

.home-rail__wheel::after {
  inset: 7% 10%;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 210, 156, 0.16), transparent 64%);
  filter: blur(10px);
  opacity: 0.9;
}

.home-rail__wheel img {
  position: relative;
  display: block;
  z-index: 1;
  width: 100%;
  height: auto;
  transform-origin: 50% 50%;
  will-change: transform;
  filter:
    drop-shadow(0 18px 24px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 18px rgba(255, 195, 120, 0.08));
}

body.is-home-preloading .home-rail__wheel img {
  opacity: 0;
}

body.is-home-preloader-flying .home-rail__wheel img {
  opacity: 1;
  transition: opacity 0.22s ease 0.72s;
}

.home-rail__nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 356px;
  bottom: 84px;
  display: grid;
  gap: 8px;
  align-content: start;
  overflow: auto;
  padding: 0 18px 18px;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 156, 105, 0.4) transparent;
}

.home-rail__caption {
  margin: 0 0 6px;
  color: rgba(236, 227, 214, 0.56);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

body.is-home-nav-open .home-rail__nav {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

body.is-home-nav-open .home-rail__pin {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.home-rail__link {
  position: relative;
  display: block;
  padding: 0 10px;
  color: rgba(241, 233, 221, 0.86);
  text-align: center;
  text-decoration: none;
  font-size: 0.79rem;
  font-weight: 400;
  letter-spacing: 0.045em;
  line-height: 1.35;
  text-transform: uppercase;
  transition: color 0.24s ease, opacity 0.24s ease;
}

.home-rail__link + .home-rail__link {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.home-rail__link:hover,
.home-rail__link.is-current {
  color: var(--home-accent-bright);
}

.home-rail__link.is-current::before,
.home-rail__link.is-current::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2px;
  height: 34px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, rgba(255, 246, 234, 0.2), rgba(232, 187, 138, 0.94), rgba(255, 246, 234, 0.18));
  box-shadow: 0 0 14px rgba(232, 187, 138, 0.55);
}

.home-rail__link.is-current::before {
  left: -1px;
}

.home-rail__link.is-current::after {
  right: -1px;
}

.home-rail__pin {
  position: absolute;
  left: 50%;
  bottom: 19%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-accent);
  box-shadow: 0 0 0 8px rgba(200, 156, 105, 0.07);
  transform: translateX(-50%);
  opacity: 0;
  transform: translateX(-50%) translateY(18px);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.home-deck {
  position: relative;
  z-index: 1;
  transition: transform 0.34s cubic-bezier(0.2, 0.82, 0.2, 1);
}

.home-slide {
  position: relative;
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.home-slide__inner,
.home-canvas {
  position: relative;
  width: min(1820px, calc(100vw - 24px));
  min-height: 100vh;
  margin: 0 auto;
}

.home-canvas {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 24px clamp(20px, 2.8vw, 48px) 42px clamp(304px, 22vw, 372px);
  box-sizing: border-box;
  overflow: hidden;
}

.home-slide__inner {
  display: grid;
  align-items: center;
  padding: 110px clamp(20px, 2.8vw, 48px) 88px clamp(304px, 22vw, 372px);
  box-sizing: border-box;
}

.home-slide--hero::before,
.home-slide--story::before,
.home-slide--production::before,
.home-slide--contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.home-slide--hero::before {
  background:
    radial-gradient(circle at 82% 26%, rgba(255, 255, 255, 0.05), transparent 18%),
    radial-gradient(circle at 94% 66%, rgba(255, 255, 255, 0.05), transparent 10%);
}

.home-slide--story::before {
  background:
    radial-gradient(circle at 74% 36%, rgba(200, 156, 105, 0.08), transparent 16%),
    linear-gradient(180deg, rgba(7, 10, 15, 0.4), rgba(7, 10, 15, 0.75));
}

.home-slide--production::before {
  background:
    radial-gradient(circle at 86% 22%, rgba(200, 156, 105, 0.08), transparent 16%),
    linear-gradient(180deg, rgba(10, 12, 18, 0.52), rgba(8, 10, 14, 0.84));
}

.home-slide--contact::before {
  background:
    radial-gradient(circle at 74% 18%, rgba(200, 156, 105, 0.09), transparent 16%),
    linear-gradient(180deg, rgba(8, 10, 16, 0.56), rgba(5, 7, 10, 0.88));
}

.home-slide--hero .home-canvas > *,
.home-surface {
  position: relative;
  z-index: 1;
  opacity: 0.42;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.home-slide.is-active .home-canvas > *,
.home-slide.is-active .home-surface {
  opacity: 1;
  transform: translateY(0);
}

.home-slide--hero .home-ai-showcase {
  opacity: 1;
  transform: none;
  transition: none;
}

.home-top-strip {
  position: relative;
  width: min(720px, 48vw);
  height: 110px;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--home-shadow-soft);
}

.home-top-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.56);
}

.home-hero-card {
  position: relative;
  width: 100%;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  background: var(--home-panel);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.48);
  overflow: hidden;
}

.home-hero-card__media {
  position: relative;
  overflow: hidden;
}

.home-hero-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 20, 28, 0.02), rgba(15, 20, 28, 0));
}

.home-hero-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-card__content {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 42px 48px;
}

.home-hero-card__eyebrow,
.home-section-eyebrow {
  margin: 0;
  color: rgba(250, 240, 228, 0.9);
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.home-hero-card h1,
.home-story-intro h2,
.home-craft-intro h2,
.home-contact-lead h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3vw, 4.5rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.home-hero-card h1 {
  max-width: none;
}

.home-hero-card__lead,
.home-story-intro p,
.home-craft-intro p,
.home-contact-lead p {
  margin: 0;
  color: rgba(236, 227, 214, 0.72);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
}

.home-hero-card__lead {
  max-width: 620px;
  font-size: 1rem;
}

.home-hero-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-hero-card__fact {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(200, 156, 105, 0.28);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(246, 235, 219, 0.88);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

.home-hero-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: 18px 20px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(8, 11, 16, 0.42);
}

.home-hero-panel__eyebrow {
  color: rgba(248, 236, 218, 0.9);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-hero-list,
.home-hero-route {
  margin: 0;
  padding: 0;
}

.home-hero-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.home-hero-list li {
  position: relative;
  padding-left: 16px;
  color: rgba(236, 227, 214, 0.72);
  font-size: 0.84rem;
  line-height: 1.55;
}

.home-hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--home-accent);
  box-shadow: 0 0 10px rgba(200, 156, 105, 0.28);
}

.home-hero-list strong,
.home-hero-route strong {
  color: rgba(245, 234, 219, 0.92);
  font-weight: 600;
}

.home-hero-route {
  display: grid;
  gap: 12px;
  list-style: none;
  counter-reset: home-route;
}

.home-hero-route li {
  position: relative;
  display: grid;
  gap: 4px;
  padding-left: 40px;
  color: rgba(236, 227, 214, 0.72);
  font-size: 0.84rem;
  line-height: 1.55;
}

.home-hero-route li::before {
  counter-increment: home-route;
  content: "0" counter(home-route);
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(232, 187, 138, 0.92);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.home-hero-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.home-hero-card__button,
.home-lux-button,
.home-lux-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 160px;
  min-height: 44px;
  padding: 0 22px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-lux-button {
  font-family: inherit;
  background: transparent;
  cursor: pointer;
}

.home-hero-card__button,
.home-lux-button {
  border: 1px solid rgba(200, 156, 105, 0.6);
  color: rgba(244, 233, 220, 0.9);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.home-hero-card__button:hover,
.home-lux-button:hover {
  background: rgba(200, 156, 105, 0.08);
  box-shadow: 0 0 18px rgba(200, 156, 105, 0.15);
}

.home-lux-link {
  min-width: 0;
  padding: 0;
  border: 0;
  color: rgba(232, 187, 138, 0.9);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.home-lux-link:hover {
  color: rgba(255, 223, 194, 0.96);
}

.home-ai-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(400px, 0.78fr);
  gap: 42px;
  align-items: start;
  min-height: calc(100vh - 90px);
  padding: 18px 0 44px;
}

.home-ai-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(126, 164, 151, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(142, 167, 194, 0.08), transparent 42%);
  opacity: 0.78;
}

.home-ai-showcase__story,
.home-ai-stage {
  position: relative;
  z-index: 1;
}

.home-ai-showcase__story {
  display: grid;
  gap: 22px;
  padding-top: 34px;
}

@media (min-width: 1101px) {
  .home-slide--hero .home-canvas {
    overflow: visible;
  }

  .home-ai-showcase {
    grid-template-columns: minmax(0, 0.78fr) minmax(460px, 0.92fr);
    column-gap: 32px;
    row-gap: 22px;
  }

  .home-ai-showcase__story {
    display: contents;
  }

  .home-ai-kicker,
  .home-ai-showcase h1,
  .home-ai-lead,
  .home-ai-actions,
  .home-ai-metrics,
  .home-ai-progress,
  .home-ai-steps {
    position: relative;
    z-index: 1;
    grid-column: 1;
  }

  .home-ai-kicker {
    padding-top: min(14vh, 140px);
  }

  .home-ai-showcase h1 {
    max-width: min(760px, 100%);
  }

  .home-ai-stage {
    grid-column: 2;
    grid-row: 1 / span 7;
  }
}

.home-ai-kicker {
  margin: 0;
  color: rgba(142, 198, 178, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-ai-showcase h1 {
  max-width: 790px;
  margin: 0;
  color: rgba(247, 239, 228, 0.98);
  font-size: 4.6rem;
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-ai-lead {
  max-width: 690px;
  margin: 0;
  color: rgba(236, 227, 214, 0.76);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.72;
}

.home-ai-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.home-ai-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 690px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.home-ai-metrics span {
  display: grid;
  gap: 5px;
  min-height: 74px;
  align-content: center;
  padding: 16px 18px;
  color: rgba(236, 227, 214, 0.66);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.35;
  text-transform: uppercase;
  background: rgba(13, 18, 25, 0.86);
}

.home-ai-metrics strong {
  color: rgba(255, 239, 220, 0.96);
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1;
}

.home-ai-progress {
  width: min(690px, 100%);
  height: 2px;
  border-radius: 999px;
  background: rgba(198, 150, 92, 0.16);
  overflow: hidden;
}

.home-ai-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(232, 187, 138, 0.98), rgba(198, 150, 92, 0.98), rgba(142, 198, 178, 0.82));
  box-shadow: 0 0 16px rgba(232, 187, 138, 0.2);
  transition: width 0.28s ease;
}

.home-ai-admin-link {
  position: fixed;
  top: 88px;
  right: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(232, 187, 138, 0.36);
  color: rgba(255, 239, 220, 0.92);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  background: rgba(10, 13, 18, 0.72);
  backdrop-filter: blur(14px);
}

.home-ai-admin-link:hover {
  border-color: rgba(232, 187, 138, 0.72);
  color: rgba(255, 247, 237, 1);
}

.home-ai-story {
  display: grid;
  gap: 20px;
}

.home-ai-story__pin {
  display: none;
}

.home-ai-story__stack {
  position: relative;
}

.home-ai-story__panel {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.38s ease, transform 0.38s ease;
}

.home-ai-story__panel.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.home-ai-story__index {
  color: rgba(232, 187, 138, 0.92);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.home-ai-story__copy {
  display: grid;
  gap: 16px;
}

.home-ai-story__copy strong {
  max-width: 620px;
  color: rgba(248, 240, 228, 0.98);
  font-size: clamp(2.35rem, 3.55vw, 4.5rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-ai-story__copy p {
  max-width: 520px;
  margin: 0;
  color: rgba(236, 227, 214, 0.76);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.68;
}

.home-ai-story__copy a {
  width: fit-content;
  color: rgba(142, 198, 178, 0.92);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.24s ease;
}

.home-ai-story__copy a:hover {
  color: rgba(228, 247, 239, 0.96);
}

.home-ai-steps {
  display: grid;
  max-width: 720px;
}

.home-ai-step {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  min-height: 148px;
  padding: 21px 0 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.48;
  transform: translateX(0);
  transition: opacity 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}

.home-ai-step:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-ai-step.is-active {
  border-color: rgba(142, 198, 178, 0.45);
  opacity: 1;
  transform: translateX(8px);
}

.home-ai-step__index {
  color: rgba(232, 187, 138, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.home-ai-step div {
  display: grid;
  gap: 8px;
}

.home-ai-step strong {
  color: rgba(248, 240, 228, 0.96);
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.home-ai-step p {
  max-width: 570px;
  margin: 0;
  color: rgba(236, 227, 214, 0.66);
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.62;
}

.home-ai-step__visual {
  display: none;
}

.home-ai-step a {
  width: fit-content;
  color: rgba(142, 198, 178, 0.92);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.24s ease;
}

.home-ai-step a:hover {
  color: rgba(228, 247, 239, 0.96);
}

.home-ai-stage {
  position: sticky;
  top: 24px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 14px;
  min-height: auto;
  align-self: start;
}

.home-ai-stage__label,
.home-ai-stage__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(13, 18, 25, 0.82);
  box-shadow: var(--home-shadow-soft);
}

.home-ai-stage__label span,
.home-ai-stage__footer span {
  color: rgba(236, 227, 214, 0.56);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-ai-stage__label strong,
.home-ai-stage__footer strong {
  color: rgba(246, 237, 225, 0.92);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: right;
}

.home-ai-stage__screen {
  position: relative;
  min-height: 580px;
  height: clamp(540px, 68vh, 720px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(145deg, rgba(12, 18, 25, 0.98), rgba(21, 24, 29, 0.94)),
    rgba(11, 15, 21, 0.96);
  box-shadow:
    0 34px 86px rgba(0, 0, 0, 0.46),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.home-ai-stage__sequence {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: #090b10;
  transition: opacity 0.28s ease;
}

.home-ai-stage__sequence.is-ready {
  opacity: 1;
}

.home-ai-stage.is-sequence-ready .home-ai-visual img,
.home-ai-stage.is-sequence-ready .home-ai-visual video {
  opacity: 0;
  visibility: hidden;
}

.home-ai-stage.is-sequence-ready .home-ai-visual figcaption {
  opacity: 0;
  visibility: hidden;
}

.home-ai-stage__screen::before,
.home-ai-stage__screen::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 4;
}

.home-ai-stage__screen::before {
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.home-ai-stage__screen::after {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.04), rgba(5, 7, 10, 0.2)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 112px);
  mix-blend-mode: screen;
  opacity: 0.44;
}

.home-ai-visual {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(18px) scale(1.018);
  transition: opacity 0.5s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.home-ai-visual.is-active {
  z-index: 2;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.home-ai-visual.is-ai-blending {
  transform: translateY(0) scale(1.01);
}

.home-ai-visual img,
.home-ai-visual video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-ai-visual img {
  filter: brightness(0.76) saturate(1.04) contrast(1.02);
}

.home-ai-visual video {
  z-index: 1;
  opacity: 0;
  background: #090b10;
}

.home-ai-visual.has-video video {
  opacity: 1;
}

.home-ai-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.04), rgba(5, 7, 10, 0.16) 46%, rgba(5, 7, 10, 0.78)),
    linear-gradient(90deg, rgba(5, 7, 10, 0.1), transparent 44%, rgba(5, 7, 10, 0.16));
}

.home-ai-visual figcaption {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 30px;
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.home-ai-visual figcaption span {
  color: rgba(142, 198, 178, 0.92);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.home-ai-visual figcaption strong {
  color: rgba(255, 246, 236, 0.96);
  font-size: 1.55rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  text-align: right;
  text-transform: uppercase;
}

.home-ai-stage__caption {
  position: absolute;
  left: clamp(18px, 2.4vw, 34px);
  right: clamp(18px, 2.4vw, 34px);
  bottom: clamp(18px, 2.4vw, 32px);
  z-index: 5;
  display: grid;
  gap: 8px;
  max-width: min(620px, calc(100% - 36px));
  padding: clamp(14px, 1.4vw, 20px) clamp(16px, 1.8vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(90deg, rgba(6, 9, 13, 0.82), rgba(6, 9, 13, 0.58) 72%, rgba(6, 9, 13, 0.2)),
    rgba(8, 11, 16, 0.76);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.38);
  pointer-events: none;
}

.home-ai-stage__caption span {
  color: rgba(232, 187, 138, 0.95);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.home-ai-stage__caption strong {
  color: rgba(255, 246, 236, 0.98);
  font-size: clamp(1.5rem, 2.2vw, 2.65rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-ai-stage__caption p {
  display: -webkit-box;
  margin: 0;
  max-width: 46ch;
  overflow: hidden;
  color: rgba(246, 237, 225, 0.84);
  font-size: clamp(0.88rem, 1vw, 1.04rem);
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-ai-stage.has-stage-caption .home-ai-visual figcaption {
  opacity: 0;
  visibility: hidden;
}

/* live sync: keep AI images clean; step text remains in the cards below on mobile */
.home-ai-visual::after {
  content: none !important;
  display: none !important;
}

.home-ai-step__visual::after {
  content: none !important;
  display: none !important;
}

.home-ai-visual figcaption,
.home-ai-stage.has-stage-caption .home-ai-visual figcaption,
.home-ai-stage__caption,
.home-ai-step__visual figcaption {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (min-width: 1101px) {
  .home-ai-showcase {
    --home-ai-motion: 0;
    grid-template-columns: minmax(0, 0.78fr) minmax(460px, 0.92fr);
    column-gap: 32px;
    isolation: isolate;
    overflow: visible;
    min-height: 100vh;
    padding-bottom: 12vh;
  }

  .home-ai-showcase__story {
    display: contents;
    grid-column: 1;
    z-index: 5;
  }

  .home-ai-showcase::before {
    z-index: 1;
    background:
      linear-gradient(90deg, rgba(9, 11, 16, 0.98) 0%, rgba(9, 11, 16, 0.92) 34%, rgba(9, 11, 16, 0.58) 58%, rgba(9, 11, 16, 0.18) 100%),
      linear-gradient(180deg, rgba(9, 11, 16, 0.16), rgba(9, 11, 16, 0.82));
    opacity: 1;
  }

  .home-ai-kicker,
  .home-ai-showcase h1,
  .home-ai-lead,
  .home-ai-actions,
  .home-ai-metrics,
  .home-ai-progress,
  .home-ai-steps {
    z-index: 3;
  }

  .home-ai-showcase h1 {
    max-width: 680px;
    font-size: clamp(3.6rem, 4.2vw, 5rem);
  }

  .home-ai-lead {
    max-width: 620px;
  }

  .home-ai-steps {
    max-width: 700px;
    padding: 18vh 0 18vh;
  }

  .home-ai-step {
    align-content: center;
    grid-template-columns: 64px minmax(0, 1fr);
    min-height: 78vh;
    padding: 6vh 0;
    opacity: 0.3;
  }

  .home-ai-step.is-active {
    opacity: 1;
    transform: translateX(0);
  }

  .home-ai-step__index {
    padding-top: 0.35em;
    font-size: 0.9rem;
  }

  .home-ai-step strong {
    max-width: 620px;
    font-size: clamp(2.35rem, 3.55vw, 4.5rem);
    font-weight: 300;
    line-height: 0.98;
    letter-spacing: 0;
  }

  .home-ai-step p {
    max-width: 520px;
    font-size: 1.02rem;
    line-height: 1.68;
  }

  .home-ai-step a {
    margin-top: 8px;
  }

  .home-ai-stage {
    grid-column: 2;
    grid-row: 1 / span 7;
    position: sticky;
    top: 0;
    z-index: 2;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
    pointer-events: none;
  }

  .home-ai-stage__label,
  .home-ai-stage__footer {
    display: none;
  }

  .home-ai-stage__screen {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 640px;
    border: 0;
    background: #090b10;
    box-shadow: none;
    opacity: 0.9;
    transform: scale(1.04);
    transform-origin: 50% 50%;
    will-change: transform;
  }

  .home-ai-stage__screen::before {
    inset: 0;
    z-index: 3;
    border: 0;
    background:
      radial-gradient(circle at 76% 42%, rgba(142, 198, 178, 0.2), transparent 23%),
      linear-gradient(90deg, rgba(9, 11, 16, 0.86) 0%, rgba(9, 11, 16, 0.46) 28%, rgba(9, 11, 16, 0.05) 52%, rgba(9, 11, 16, 0.28) 100%);
  }

  .home-ai-stage__screen::after {
    z-index: 4;
    opacity: 1;
    mix-blend-mode: normal;
    background:
      linear-gradient(90deg, rgba(9, 11, 16, 0.96) 0%, rgba(9, 11, 16, 0.7) 26%, rgba(9, 11, 16, 0.18) 58%, rgba(9, 11, 16, 0.64) 100%),
      linear-gradient(180deg, rgba(9, 11, 16, 0.18), rgba(9, 11, 16, 0.08) 42%, rgba(9, 11, 16, 0.82)),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 112px);
  }

  .home-ai-visual {
    transform: scale(1.04);
  }

  .home-ai-visual.is-active {
    transform:
      translate3d(calc(var(--home-ai-motion) * -14px), 0, 0)
      scale(1.06);
  }

  .home-ai-visual.is-ai-blending {
    transform:
      translate3d(calc(var(--home-ai-motion) * -8px), 0, 0)
      scale(1.05);
  }

  .home-ai-visual figcaption {
    left: auto;
    right: 32px;
    bottom: 42px;
    width: min(320px, 34vw);
  }
}

.home-collections {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
  padding: 22px;
  background: var(--home-panel-soft);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.42);
}

.home-block-heading {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  padding-bottom: 4px;
}

.home-block-heading span {
  max-width: 760px;
  color: rgba(236, 227, 214, 0.68);
  font-size: 0.88rem;
  line-height: 1.6;
}

.home-collection-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(8, 11, 16, 0.28);
  text-decoration: none;
  transition: border-color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.home-collection-card:hover {
  border-color: rgba(200, 156, 105, 0.34);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.home-collection-card img {
  width: 100%;
  height: 158px;
  object-fit: cover;
}

.home-collection-card__copy {
  display: grid;
  gap: 6px;
}

.home-collection-card__copy strong,
.home-story-card__overlay strong,
.home-craft-card__copy strong,
.home-contact-card strong,
.home-process-note strong {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-collection-card__copy span,
.home-story-card__overlay span,
.home-craft-card__copy span,
.home-contact-card span,
.home-process-note span {
  color: rgba(236, 227, 214, 0.62);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.55;
}

.home-process-strip {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home-process-note {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 144px;
  padding: 22px 24px;
  background: var(--home-panel-soft);
  box-shadow: var(--home-shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.home-story-shell,
.home-craft-shell,
.home-contact-shell {
  width: auto;
  margin: 0;
}

.home-story-shell {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 24px;
}

.home-story-intro,
.home-craft-intro,
.home-contact-lead,
.home-craft-summary,
.home-story-quote {
  background: var(--home-panel);
  box-shadow: var(--home-shadow);
}

.home-story-intro,
.home-craft-intro,
.home-contact-lead {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 34px 36px;
}

.home-story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.home-story-card {
  position: relative;
  min-height: 248px;
  overflow: hidden;
  box-shadow: var(--home-shadow-soft);
  text-decoration: none;
}

.home-story-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78);
}

.home-story-card__overlay {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 8px;
  min-height: 100%;
  padding: 22px;
  background: linear-gradient(180deg, rgba(10, 13, 19, 0.08), rgba(10, 13, 19, 0.92));
}

.home-story-card__index {
  display: inline-block;
  color: rgba(232, 187, 138, 0.88);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

.home-story-quote {
  display: grid;
  align-content: center;
  min-height: 148px;
  padding: 24px 26px;
}

.home-story-quote p {
  margin: 0;
  color: rgba(236, 227, 214, 0.86);
  font-size: 1rem;
  line-height: 1.55;
}

.home-craft-shell {
  display: grid;
  gap: 24px;
}

.home-craft-head {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 24px;
}

.home-craft-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.home-craft-metric {
  display: grid;
  gap: 8px;
  align-content: center;
  justify-items: center;
  min-height: 100%;
  padding: 24px 16px;
  text-align: center;
  background: rgba(17, 22, 31, 0.98);
}

.home-craft-metric strong {
  color: rgba(255, 239, 220, 0.96);
  font-size: clamp(1.8rem, 2vw, 2.6rem);
  font-weight: 300;
  letter-spacing: 0.03em;
}

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

.home-craft-card {
  overflow: hidden;
  background: var(--home-panel-soft);
  box-shadow: var(--home-shadow-soft);
}

.home-craft-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.home-craft-card__copy {
  display: grid;
  gap: 10px;
  padding: 20px 20px 24px;
}

.home-contact-shell {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 24px;
}

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

.home-contact-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 176px;
  padding: 24px;
  background: var(--home-panel-soft);
  box-shadow: var(--home-shadow-soft);
}

.home-contact-card span {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 1260px) {
  .home-ai-showcase {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.74fr);
    gap: 28px;
  }

  .home-ai-showcase h1 {
    font-size: 3.4rem;
  }

  .home-ai-stage__screen {
    min-height: 500px;
  }

  .home-story-shell,
  .home-craft-shell,
  .home-contact-shell {
    width: min(880px, calc(100% - 360px));
  }
}

@keyframes homePreloaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-preloader,
  .home-preloader__wheel-wrap,
  .home-preloader__wheel-wrap::before,
  .home-preloader__wheel-wrap::after,
  .home-preloader__copy,
  .home-preloader__meter span,
  .home-rail__wheel img,
  .home-ai-progress span,
  .home-ai-step,
  .home-ai-visual {
    transition-duration: 0.01ms;
    transition-delay: 0s;
  }

  .home-preloader__wheel,
  .home-preloader__wheel-wrap::before {
    animation: none;
  }
}

@media (max-width: 1100px) {
  body.page-home {
    scroll-snap-type: none;
  }

  body.page-home::after {
    height: 18%;
  }

  .home-fixed-ui__inner {
    width: 100%;
  }

  .home-menu-chip {
    position: fixed;
    top: 16px;
    right: 16px;
    min-width: 208px;
    height: 58px;
  }

  .home-rail {
    position: fixed;
    top: 0;
    left: 0;
    width: min(320px, 84vw);
    height: 100vh;
    min-width: 0;
    min-height: 0;
    transform: translateX(-104%);
    transition: transform 0.32s ease;
    z-index: 20;
  }

  body.is-home-nav-open .home-rail {
    transform: translateX(0);
  }

  .home-rail__wheel {
    top: -6px;
    width: 360px;
  }

  .home-rail__nav {
    top: 328px;
  }

  .home-slide,
  .home-slide__inner,
  .home-canvas {
    min-height: auto;
  }

  .home-canvas,
  .home-slide__inner {
    width: 100%;
    padding: 84px 16px 24px;
    box-sizing: border-box;
  }

  .home-top-strip,
  .home-hero-card,
  .home-collections,
  .home-process-strip {
    position: relative;
    width: auto;
    height: auto;
    margin: 0 0 18px;
  }

  .home-top-strip {
    height: 88px;
  }

  .home-hero-card {
    grid-template-columns: 1fr;
  }

  .home-hero-card__media img {
    height: 320px;
  }

  .home-hero-card__grid {
    grid-template-columns: 1fr;
  }

  .home-ai-showcase {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
    padding: 0 0 24px;
  }

  .home-ai-showcase__story {
    padding-top: 0;
  }

  .home-ai-showcase h1 {
    font-size: 3.1rem;
    line-height: 1;
  }

  .home-ai-lead {
    max-width: none;
  }

  .home-ai-stage {
    position: relative;
    top: auto;
    min-height: 0;
  }

  .home-ai-stage__screen {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .home-ai-step {
    min-height: 0;
    transform: none;
  }

  .home-ai-step.is-active {
    transform: none;
  }

  .home-collections {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 20px;
  }

  .home-process-strip,
  .home-craft-gallery,
  .home-craft-summary,
  .home-contact-grid,
  .home-story-grid,
  .home-story-shell,
  .home-craft-head,
  .home-craft-shell,
  .home-contact-shell {
    grid-template-columns: 1fr;
  }

  .home-story-shell,
  .home-craft-shell,
  .home-contact-shell {
    width: auto;
    margin: 0;
  }

  .home-contact-card {
    min-height: 0;
  }
}

@media (max-width: 700px) {
  body.page-home,
  .home-shell,
  .home-deck,
  .home-slide,
  .home-canvas,
  .home-slide__inner {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .home-menu-chip {
    right: 12px;
    gap: 10px;
    min-width: 0;
    max-width: 148px;
    height: 54px;
    padding: 0 12px 0 16px;
  }

  .home-menu-chip__copy {
    min-width: 0;
    max-width: 72px;
  }

  .home-menu-chip__label {
    display: block;
    overflow: hidden;
    font-size: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .home-menu-chip__label::after {
    content: "Меню";
    font-size: 0.76rem;
    letter-spacing: 0.12em;
  }

  .home-menu-chip__eyebrow {
    display: none;
  }

  .home-ai-showcase h1 {
    max-width: 100%;
    font-size: clamp(1.56rem, 6.35vw, 2rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .home-ai-showcase,
  .home-ai-showcase__story,
  .home-ai-kicker,
  .home-ai-lead,
  .home-ai-actions,
  .home-ai-metrics,
  .home-ai-steps {
    min-width: 0;
    max-width: 100%;
  }

  .home-ai-kicker,
  .home-ai-lead {
    overflow-wrap: break-word;
  }

  .home-ai-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .home-ai-actions .home-lux-button,
  .home-ai-actions .home-lux-link {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    box-sizing: border-box;
    justify-content: center;
  }

  .home-ai-metrics {
    grid-template-columns: 1fr;
  }

  .home-ai-step {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 0 20px;
  }

  .home-ai-stage__label,
  .home-ai-stage__footer {
    align-items: start;
    flex-direction: column;
    justify-content: center;
    min-height: 70px;
    padding: 12px 14px;
  }

  .home-ai-stage__label strong,
  .home-ai-stage__footer strong {
    text-align: left;
  }

  .home-ai-visual figcaption {
    left: 22px;
    right: 22px;
    bottom: 24px;
  }

  .home-ai-visual figcaption strong {
    font-size: 1.18rem;
  }

  .home-hero-card__content,
  .home-story-intro,
  .home-craft-intro,
  .home-contact-lead {
    padding: 24px 20px;
  }

  .home-hero-card h1,
  .home-story-intro h2,
  .home-craft-intro h2,
  .home-contact-lead h2 {
    font-size: 1.9rem;
  }

  .home-collections {
    grid-template-columns: 1fr;
  }

  .home-craft-card img,
  .home-story-card {
    min-height: 0;
    height: auto;
  }

  .home-story-card img {
    position: relative;
    height: 240px;
  }

  .home-story-card__overlay {
    min-height: 0;
  }
}

@media (max-width: 420px) {
  .home-menu-chip {
    left: 16px;
    right: auto;
    max-width: 128px;
  }

  .home-ai-kicker,
  .home-ai-showcase h1,
  .home-ai-lead,
  .home-ai-actions,
  .home-ai-metrics,
  .home-ai-progress,
  .home-ai-steps,
  .home-ai-stage {
    width: min(100%, 330px);
    max-width: 330px;
  }

  .home-ai-showcase h1 {
    font-size: clamp(1.48rem, 6vw, 1.72rem);
  }
}

/* live sync: first slide right stage follows the wider right-side layout without shifting the left rail */
.home-slide--hero .home-canvas {
  width: min(1820px, calc(100vw - 24px));
}

.home-slide--hero .home-top-strip,
.home-slide--hero .home-hero-card,
.home-slide--hero .home-collections,
.home-slide--hero .home-process-strip {
  left: auto;
  right: 0;
}

.home-slide--hero .home-top-strip {
  width: min(760px, calc(100vw - 640px));
}

.home-slide--hero .home-hero-card,
.home-slide--hero .home-collections {
  width: min(920px, calc(100vw - 520px));
}

.home-slide--hero .home-process-strip {
  width: min(680px, calc(100vw - 600px));
}

/* live sync: lock the first slide right group to the same right shell as the following sections */
.home-slide--hero .home-top-strip,
.home-slide--hero .home-hero-card,
.home-slide--hero .home-collections,
.home-slide--hero .home-process-strip {
  max-width: calc(100vw - 500px);
}

.home-slide--hero .home-hero-card,
.home-slide--hero .home-collections {
  width: min(920px, calc(100vw - 500px));
}

.home-slide--hero .home-top-strip {
  width: min(760px, calc(100vw - 560px));
}

.home-slide--hero .home-process-strip {
  width: min(680px, calc(100vw - 620px));
}

/* live sync: keep the first slide right alignment only on desktop and restore the default flow on narrow viewports */
@media (min-width: 1101px) {
  .home-slide--hero .home-canvas {
    width: min(1408px, 100vw);
  }

  .home-slide--hero .home-top-strip,
  .home-slide--hero .home-hero-card,
  .home-slide--hero .home-collections,
  .home-slide--hero .home-process-strip {
    left: auto;
    right: 0;
  }

  .home-slide--hero .home-top-strip {
    width: min(760px, calc(100% - 480px));
    max-width: calc(100% - 400px);
  }

  .home-slide--hero .home-hero-card,
  .home-slide--hero .home-collections {
    width: min(920px, calc(100% - 400px));
    max-width: calc(100% - 400px);
  }

  .home-slide--hero .home-process-strip {
    width: min(680px, calc(100% - 520px));
    max-width: calc(100% - 520px);
  }
}

@media (max-width: 1100px) {
  .home-slide--hero .home-canvas {
    width: 100%;
  }

  .home-slide--hero .home-top-strip,
  .home-slide--hero .home-hero-card,
  .home-slide--hero .home-collections,
  .home-slide--hero .home-process-strip {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    max-width: none;
    margin: 0 0 18px;
  }
}

/* live sync: keep the hero copy clear of the fixed left rail wheel on desktop */
@media (min-width: 1101px) {
  .home-slide--hero .home-canvas {
    padding-left: clamp(382px, 27vw, 430px);
  }
}

/* live sync: apple-style route, fullscreen right canvas, left drawer navigation */
@media (min-width: 1101px) {
  .home-fixed-ui__inner {
    width: 100%;
  }

  .home-menu-chip {
    position: fixed;
    top: 18px;
    left: 18px;
    right: auto;
    min-width: 0;
    height: 46px;
    gap: 8px;
    padding: 0 10px 0 14px;
    z-index: 42;
  }

  .home-menu-chip__eyebrow {
    display: none;
  }

  .home-menu-chip__label {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
  }

  .home-menu-chip__icon {
    width: 28px;
    height: 28px;
  }

  .home-menu-chip svg {
    width: 15px;
    height: 15px;
  }

  .home-rail {
    position: fixed;
    top: 78px;
    left: 18px;
    width: 286px;
    height: calc(100vh - 96px);
    overflow: hidden;
    opacity: 0;
    transform: translateX(calc(-100% - 32px));
    transition:
      opacity 0.24s ease,
      transform 0.34s cubic-bezier(0.2, 0.82, 0.2, 1),
      box-shadow 0.28s ease,
      border-color 0.28s ease;
  }

  body.is-home-nav-open .home-rail {
    opacity: 1;
    transform: translateX(0);
  }

  .home-rail__wheel {
    top: 16px;
    width: 168px;
  }

  .home-rail__nav {
    top: 190px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .home-rail__pin {
    display: none;
  }

  body.is-home-nav-open .home-deck {
    transform: translateX(min(304px, 22vw));
  }

  .home-canvas,
  .home-slide__inner,
  .home-slide--hero .home-canvas {
    padding-left: clamp(54px, 6vw, 96px);
    padding-right: clamp(24px, 3vw, 48px);
  }

  .home-slide--hero .home-canvas {
    width: min(1540px, 100vw);
  }

  .home-ai-showcase {
    grid-template-columns: minmax(420px, 0.86fr) minmax(520px, 1fr);
    column-gap: clamp(28px, 4vw, 70px);
  }

  .home-ai-showcase h1 {
    max-width: 720px;
  }

  .home-ai-steps {
    padding: 28vh 0 34vh;
  }

  .home-ai-step {
    min-height: 118vh;
    padding: 12vh 0;
  }

  .home-ai-stage,
  .home-ai-stage__screen {
    height: 100vh;
    min-height: 100vh;
  }

  .home-ai-stage__screen {
    opacity: 1;
    transform: scale(1.015);
  }

  .home-ai-stage__sequence {
    filter: brightness(1.18) saturate(1.08) contrast(1.04);
  }

  .home-ai-stage__screen::before {
    background:
      radial-gradient(circle at 76% 42%, rgba(142, 198, 178, 0.12), transparent 24%),
      linear-gradient(90deg, rgba(9, 11, 16, 0.5) 0%, rgba(9, 11, 16, 0.2) 28%, rgba(9, 11, 16, 0.03) 54%, rgba(9, 11, 16, 0.1) 100%);
  }

  .home-ai-stage__screen::after {
    opacity: 0.7;
    background:
      linear-gradient(90deg, rgba(9, 11, 16, 0.72) 0%, rgba(9, 11, 16, 0.34) 25%, rgba(9, 11, 16, 0.04) 58%, rgba(9, 11, 16, 0.24) 100%),
      linear-gradient(180deg, rgba(9, 11, 16, 0.08), rgba(9, 11, 16, 0.02) 46%, rgba(9, 11, 16, 0.5)),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.022) 0, rgba(255, 255, 255, 0.022) 1px, transparent 1px, transparent 112px);
  }
}

@media (max-width: 1100px) {
  .home-menu-chip {
    left: 16px;
    right: auto;
  }

  body.is-home-nav-open .home-deck {
    transform: translateX(min(280px, 72vw));
  }
}

/* live sync: keep route text immediate and reduce empty vertical gaps */
@media (min-width: 1101px) {
  .home-slide--hero .home-canvas > *,
  .home-slide--hero .home-surface {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .home-ai-steps {
    padding: 22vh 0 32vh;
  }

  .home-ai-step {
    min-height: 145vh;
    padding: 10vh 0;
    opacity: 0.86;
    transform: none;
    transition:
      opacity 0.16s ease,
      border-color 0.16s ease,
      color 0.16s ease;
  }

  .home-ai-step:nth-child(3) {
    min-height: 170vh;
  }

  .home-ai-step:nth-child(4) {
    min-height: 320vh;
  }

  .home-ai-step.is-active {
    opacity: 1;
    transform: none;
  }

  .home-ai-step strong {
    font-size: clamp(2.18rem, 3.15vw, 4rem);
    line-height: 1.02;
  }

  .home-ai-step p {
    color: rgba(236, 227, 214, 0.74);
  }

  .home-ai-step a {
    margin-top: 2px;
  }
}

@media (min-width: 1101px) {
  .home-ai-showcase {
    min-height: 100vh;
  }

  .home-ai-story {
    grid-column: 1;
    position: relative;
    z-index: 4;
    min-height: calc(var(--home-ai-story-vh, 720) * 1vh);
    padding: 18vh 0 28vh;
  }

  .home-ai-story__pin {
    position: sticky;
    top: 19vh;
    display: grid;
    align-self: start;
    align-items: center;
    height: 58vh;
    min-height: 420px;
    max-height: 560px;
  }

  .home-ai-story__stack {
    min-height: 360px;
  }

  .home-ai-story__panel {
    position: absolute;
    inset: 0 auto auto 0;
    width: min(700px, 100%);
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .home-ai-story__panel.is-visible {
    position: relative;
  }

  .home-ai-steps {
    display: none;
    min-height: 0;
    padding: 0;
  }

  .home-ai-step,
  .home-ai-step:nth-child(3),
  .home-ai-step:nth-child(4) {
    min-height: 0;
    padding: 0;
  }

  .home-ai-stage {
    grid-row: 1 / span 8;
  }
}

/* live sync: remove the bottom tint band and keep the AI canvas brighter */
body.page-home::after {
  content: none;
  display: none;
}

.home-ai-stage.is-sequence-ready .home-ai-visual::after {
  opacity: 0;
  visibility: hidden;
}

.home-ai-stage__sequence {
  filter: brightness(1.14) saturate(1.08) contrast(1.03);
}

@media (min-width: 1101px) {
  .home-ai-stage__sequence {
    filter: brightness(1.22) saturate(1.08) contrast(1.03);
  }

  .home-ai-stage__screen::before {
    background:
      radial-gradient(circle at 76% 42%, rgba(142, 198, 178, 0.06), transparent 24%),
      linear-gradient(90deg, rgba(9, 11, 16, 0.22) 0%, rgba(9, 11, 16, 0.08) 28%, rgba(9, 11, 16, 0.01) 54%, rgba(9, 11, 16, 0.04) 100%);
  }

  .home-ai-stage__screen::after {
    opacity: 0.34;
    background:
      linear-gradient(90deg, rgba(9, 11, 16, 0.32) 0%, rgba(9, 11, 16, 0.12) 25%, rgba(9, 11, 16, 0) 58%, rgba(9, 11, 16, 0.08) 100%),
      linear-gradient(180deg, rgba(9, 11, 16, 0.02), rgba(9, 11, 16, 0) 46%, rgba(9, 11, 16, 0.18)),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.012) 0, rgba(255, 255, 255, 0.012) 1px, transparent 1px, transparent 112px);
  }
}

/* live sync: keep the poster and canvas states visually matched during sequence boot */
.home-ai-stage .home-ai-visual img {
  filter: brightness(1.1) saturate(1.08) contrast(1.03);
}

.home-ai-stage .home-ai-visual::after {
  opacity: 0.14;
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.01), rgba(5, 7, 10, 0.04) 48%, rgba(5, 7, 10, 0.16)),
    linear-gradient(90deg, rgba(5, 7, 10, 0.04), transparent 48%, rgba(5, 7, 10, 0.06));
}

.home-ai-stage.has-sequence .home-ai-visual::after,
.home-ai-stage.is-sequence-ready .home-ai-visual::after {
  opacity: 0;
  visibility: hidden;
}

.home-ai-stage__sequence {
  transition: none;
}

@media (min-width: 1101px) {
  .home-ai-stage .home-ai-visual img {
    filter: brightness(1.18) saturate(1.08) contrast(1.03);
  }
}

/* live sync: visible brand and contacts on the first viewport */
.home-ai-brandline {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(760px, 100%);
  min-width: 0;
  padding: 8px 0 4px;
}

.home-ai-brandline__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  text-decoration: none;
}

.home-ai-brandline__logo img {
  display: block;
  width: auto;
  height: clamp(54px, 5.8vw, 78px);
  max-width: min(190px, 42vw);
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.45));
}

.home-ai-brandline__contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 16px;
  min-width: 0;
}

.home-ai-brandline__contacts a {
  color: rgba(247, 239, 228, 0.92);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.52);
}

.home-ai-brandline__contacts a:hover {
  color: rgba(142, 198, 178, 0.98);
}

.home-slide--handoff::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 7, 11, 0.42), rgba(8, 10, 15, 0.66)),
    radial-gradient(circle at 74% 24%, rgba(142, 198, 178, 0.16), transparent 22%),
    radial-gradient(circle at 18% 82%, rgba(200, 156, 105, 0.14), transparent 24%);
}

.home-slide--handoff {
  z-index: 4;
  background: #080b10;
}

.home-slide--handoff .home-slide__inner {
  align-items: start;
  padding-top: clamp(74px, 9vh, 118px);
  padding-bottom: clamp(60px, 8vh, 96px);
}

.home-handoff-shell {
  display: grid;
  grid-template-columns: minmax(480px, 0.78fr) minmax(560px, 1fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: stretch;
  width: min(1460px, 100%);
}

.home-handoff-copy {
  display: grid;
  align-content: center;
  gap: 20px;
  min-height: 560px;
  padding: clamp(34px, 4vw, 58px);
  background:
    linear-gradient(135deg, rgba(18, 23, 31, 0.9), rgba(12, 16, 23, 0.76)),
    linear-gradient(90deg, rgba(142, 198, 178, 0.12), transparent 42%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--home-shadow);
}

.home-handoff-copy h2 {
  max-width: 840px;
  margin: 0;
  color: rgba(247, 239, 228, 0.98);
  font-size: clamp(3rem, 4.2vw, 5.2rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
}

.home-handoff-copy p:not(.home-section-eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(236, 227, 214, 0.74);
  font-size: 1rem;
  line-height: 1.72;
}

.home-handoff-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  padding-top: 8px;
}

.home-handoff-board {
  position: relative;
  display: grid;
  align-content: stretch;
  gap: 18px;
  min-height: 560px;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.08), rgba(7, 9, 13, 0.48)),
    linear-gradient(90deg, rgba(7, 9, 13, 0.18), rgba(7, 9, 13, 0.04)),
    url("/assets/home-ai/01-production.webp") center / cover no-repeat;
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.08), rgba(7, 9, 13, 0.48)),
    linear-gradient(90deg, rgba(7, 9, 13, 0.18), rgba(7, 9, 13, 0.04)),
    url("/assets/home-ai/webp/seq-frame-0001.webp?v=20260522-webp-960-q86-1") center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--home-shadow-soft);
}

.home-handoff-board::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.34;
}

.home-handoff-board__head,
.home-estimate-grid,
.home-estimate-upload,
.home-estimate-summary {
  position: relative;
  z-index: 1;
}

.home-handoff-board__head {
  display: grid;
  gap: 8px;
}

.home-handoff-board__head span,
.home-estimate-field span,
.home-estimate-summary span {
  color: rgba(142, 198, 178, 0.94);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-handoff-board__head strong {
  max-width: 520px;
  color: rgba(247, 239, 228, 0.96);
  font-size: clamp(2rem, 2.4vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.home-estimate-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-self: end;
  margin-top: auto;
}

.home-estimate-field {
  display: grid;
  gap: 9px;
  min-height: 108px;
  padding: 18px;
  background: rgba(8, 11, 16, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(8px);
}

.home-estimate-field strong {
  color: rgba(247, 239, 228, 0.96);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.28;
}

.home-estimate-upload {
  display: grid;
  justify-items: start;
  gap: 7px;
  width: 100%;
  min-height: 82px;
  padding: 20px 22px;
  color: rgba(247, 239, 228, 0.96);
  font-family: inherit;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(200, 156, 105, 0.16), rgba(142, 198, 178, 0.1)),
    rgba(8, 11, 16, 0.58);
  border: 1px solid rgba(232, 187, 138, 0.58);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.home-estimate-upload span {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-estimate-upload small {
  color: rgba(236, 227, 214, 0.68);
  font-size: 0.78rem;
  line-height: 1.35;
}

.home-estimate-upload:hover {
  background:
    linear-gradient(135deg, rgba(200, 156, 105, 0.22), rgba(142, 198, 178, 0.14)),
    rgba(8, 11, 16, 0.62);
}

.home-estimate-summary {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(8, 11, 16, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.home-estimate-summary li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 16px 18px 17px;
}

.home-estimate-summary li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-estimate-summary div {
  display: grid;
  gap: 7px;
}

.home-estimate-summary strong {
  color: rgba(247, 239, 228, 0.94);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
}

.home-estimate-summary small {
  color: rgba(236, 227, 214, 0.68);
  font-size: 0.78rem;
  line-height: 1.45;
}

.home-partner-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.home-partner-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.home-partner-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.76), rgba(5, 7, 11, 0.56)),
    rgba(5, 7, 11, 0.54);
  cursor: pointer;
}

.home-partner-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(12px, 1.7vh, 18px);
  width: min(620px, 100%);
  max-height: min(760px, calc(100vh - 32px));
  max-height: min(760px, calc(100dvh - 32px));
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: clamp(24px, 3.6vh, 46px);
  color: var(--home-text);
  background:
    linear-gradient(135deg, rgba(19, 25, 34, 0.98), rgba(10, 14, 20, 0.96)),
    rgba(17, 22, 31, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.55);
}

.home-partner-dialog::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.home-partner-dialog__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: rgba(247, 239, 228, 0.86);
  font: inherit;
  font-size: 1.6rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.home-partner-dialog h2 {
  max-width: 520px;
  margin: 0;
  color: rgba(247, 239, 228, 0.98);
  font-size: clamp(1.7rem, 2.5vw, 2.55rem);
  font-weight: 400;
  line-height: 1.04;
}

.home-partner-dialog p:not(.home-section-eyebrow) {
  margin: 0;
  color: rgba(236, 227, 214, 0.72);
  line-height: 1.6;
}

.home-partner-form {
  display: grid;
  gap: clamp(9px, 1.35vh, 12px);
}

.home-partner-form label {
  display: grid;
  gap: 6px;
}

.home-partner-form label span {
  color: rgba(142, 198, 178, 0.94);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-partner-form input,
.home-partner-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(247, 239, 228, 0.96);
  font: inherit;
  font-size: 0.94rem;
  background: rgba(255, 255, 255, 0.04);
  padding: clamp(10px, 1.45vh, 14px) 15px;
  outline: none;
}

.home-partner-form textarea {
  min-height: 96px;
  max-height: 132px;
  resize: vertical;
}

.home-partner-form input:focus,
.home-partner-form textarea:focus {
  border-color: rgba(232, 187, 138, 0.64);
  box-shadow: 0 0 0 3px rgba(200, 156, 105, 0.1);
}

body.is-partner-access-open {
  overflow: hidden;
}

@media (max-width: 1260px) {
  .home-handoff-shell {
    width: min(880px, calc(100% - 360px));
    grid-template-columns: 1fr;
  }

  .home-handoff-copy,
  .home-handoff-board {
    min-height: 0;
  }
}

@media (min-width: 1101px) {
  .home-ai-brandline {
    grid-column: 1;
    padding-left: clamp(96px, 8vw, 132px);
    margin-bottom: clamp(28px, 5vh, 72px);
  }

  .home-ai-brandline + .home-ai-kicker {
    padding-top: 0;
  }
}

@media (max-width: 1100px) {
  .home-ai-brandline {
    display: grid;
    justify-items: start;
    gap: 10px;
    padding-top: 4px;
  }

  .home-ai-brandline__logo img {
    height: 52px;
    max-width: 150px;
  }

  .home-ai-brandline__contacts {
    justify-content: flex-start;
    gap: 6px 12px;
  }

  .home-ai-brandline__contacts a {
    font-size: 0.72rem;
    letter-spacing: 0.03em;
  }

  .home-handoff-shell {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .home-handoff-copy {
    min-height: 0;
    padding: 28px 22px;
  }

  .home-handoff-copy h2 {
    font-size: clamp(2rem, 7vw, 3rem);
    line-height: 1.02;
  }

  .home-handoff-copy p:not(.home-section-eyebrow) {
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .home-handoff-board {
    min-height: 420px;
    padding: 22px;
  }

  .home-estimate-grid {
    grid-template-columns: 1fr;
  }

  .home-estimate-field {
    min-height: 0;
  }

  .home-partner-modal {
    padding: 14px;
  }

  .home-partner-dialog {
    max-height: calc(100vh - 28px);
    max-height: calc(100dvh - 28px);
  }
}

/* live footer polish 20260506-footer-live-1 */
.page-home .site-footer--home {
  position: relative;
  display: block;
  margin: 0;
  padding: clamp(42px, 7vw, 86px) 0 clamp(28px, 5vw, 54px);
  color: var(--home-text);
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0), rgba(8, 10, 14, 0.92) 16%),
    radial-gradient(circle at 12% 18%, rgba(232, 187, 138, 0.16), transparent 24%),
    linear-gradient(180deg, #0a0d12 0%, #07090d 100%);
}

.page-home .site-footer--home .site-footer__inner {
  position: relative;
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  padding: clamp(24px, 3.4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 0%, rgba(232, 187, 138, 0.17), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 34%),
    rgba(14, 18, 25, 0.92);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.page-home .site-footer--home .site-footer__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(112deg, rgba(0, 0, 0, 0.95), transparent 74%);
  opacity: 0.55;
}

.page-home .site-footer--home .site-footer__inner > * {
  position: relative;
  z-index: 1;
}

.page-home .site-footer__grid-home {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(160px, 0.75fr));
  gap: clamp(20px, 3vw, 38px);
  align-items: start;
}

.page-home .site-footer__brand-home {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.page-home .site-footer__brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid rgba(232, 187, 138, 0.36);
  border-radius: 16px;
  color: #20140b;
  background: linear-gradient(135deg, rgba(232, 187, 138, 0.98), rgba(177, 116, 63, 0.95));
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 18px 34px rgba(141, 89, 44, 0.24);
}

.page-home .site-footer__brand-text,
.page-home .site-footer__home-title {
  display: block;
  color: var(--home-text);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-home .site-footer__brand-text {
  font-size: clamp(1.05rem, 1.5vw, 1.45rem);
}

.page-home .site-footer__brand-note {
  max-width: 34ch;
  margin: 9px 0 0;
  color: var(--home-muted);
  font-size: 0.95rem;
  line-height: 1.62;
}

.page-home .site-footer__home-title {
  margin: 0 0 14px;
  color: var(--home-accent-bright);
  font-size: 0.72rem;
}

.page-home .site-footer__home-links {
  display: grid;
  gap: 10px;
}

.page-home .site-footer__home-links a,
.page-home .site-footer__home-links span,
.page-home .site-footer__bottom-home p,
.page-home .site-footer__bottom-home-links a {
  color: var(--home-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
}

.page-home .site-footer__home-links a {
  width: fit-content;
  transition: color 0.24s ease, transform 0.24s ease;
}

.page-home .site-footer__home-links a:hover,
.page-home .site-footer__bottom-home-links a:hover {
  color: var(--home-accent-bright);
}

.page-home .site-footer__home-links a:hover {
  transform: translateX(3px);
}

.page-home .site-footer__bottom-home {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-home .site-footer__bottom-home p {
  margin: 0;
}

.page-home .site-footer__bottom-home-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

@media (max-width: 980px) {
  .page-home .site-footer__grid-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page-home .site-footer--home {
    padding-top: 34px;
  }

  .page-home .site-footer--home .site-footer__inner {
    border-radius: 22px;
    padding: 22px;
  }

  .page-home .site-footer__grid-home {
    grid-template-columns: 1fr;
  }

  .page-home .site-footer__bottom-home {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-home .site-footer__bottom-home-links {
    justify-content: flex-start;
  }
}

/* live footer mobile containment 20260506-footer-live-2 */
.page-home .site-footer--home {
  box-sizing: border-box;
  overflow-x: clip;
}

.page-home .site-footer--home .container {
  box-sizing: border-box;
  width: min(1180px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
}

.page-home .site-footer--home .site-footer__inner,
.page-home .site-footer--home .site-footer__grid-home,
.page-home .site-footer--home .site-footer__bottom-home {
  min-width: 0;
}

.page-home .site-footer--home .site-footer__brand-home,
.page-home .site-footer--home .site-footer__home-links,
.page-home .site-footer--home .site-footer__bottom-home p,
.page-home .site-footer--home .site-footer__bottom-home-links {
  min-width: 0;
  max-width: 100%;
}

.page-home .site-footer--home .site-footer__brand-note,
.page-home .site-footer--home .site-footer__home-links a,
.page-home .site-footer--home .site-footer__home-links span,
.page-home .site-footer--home .site-footer__bottom-home p,
.page-home .site-footer--home .site-footer__bottom-home-links a {
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  .page-home .site-footer--home .container {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .page-home .site-footer--home .site-footer__brand-home {
    align-items: flex-start;
  }

  .page-home .site-footer--home .site-footer__brand-text {
    font-size: 1.05rem;
    letter-spacing: 0.08em;
  }
}

/* live footer canvas alignment and nav shift 20260506-footer-live-3 */
.page-home .site-footer--home {
  transition: transform 0.34s cubic-bezier(0.2, 0.82, 0.2, 1);
}

.page-home .site-footer--home .container {
  width: min(1820px, calc(100vw - 24px));
  max-width: min(1820px, calc(100vw - 24px));
  margin: 0 auto;
}

@media (min-width: 1101px) {
  .page-home .site-footer--home .site-footer__inner {
    padding: clamp(28px, 3vw, 42px) clamp(20px, 2.8vw, 48px) clamp(26px, 3vw, 38px) clamp(304px, 22vw, 372px);
  }

  body.is-home-nav-open .site-footer--home {
    transform: translateX(min(304px, 22vw));
  }
}

@media (max-width: 1100px) {
  .page-home .site-footer--home .container {
    width: 100%;
    max-width: 100vw;
  }

  .page-home .site-footer--home .site-footer__inner {
    padding-left: clamp(54px, 6vw, 96px);
    padding-right: clamp(24px, 3vw, 48px);
  }

  body.is-home-nav-open .site-footer--home {
    transform: translateX(min(280px, 72vw));
  }
}

@media (max-width: 640px) {
  .page-home .site-footer--home .container {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .page-home .site-footer--home .site-footer__inner {
    padding: 22px;
  }
}

/* live footer content alignment 20260511-footer-align-1 */
@media (min-width: 1101px) {
  .page-home .site-footer--home .site-footer__inner {
    padding-left: clamp(54px, 6vw, 96px);
    padding-right: clamp(54px, 6vw, 96px);
  }

  .page-home .site-footer__grid-home {
    grid-template-columns: minmax(320px, 1.18fr) minmax(150px, 0.62fr) minmax(150px, 0.62fr) minmax(260px, 0.78fr);
    column-gap: clamp(42px, 6vw, 116px);
  }
}

/* mobile story route: text-first, light on motion */
@media (max-width: 700px) {
  .home-canvas,
  .home-slide__inner,
  .home-slide--hero .home-canvas {
    padding: 72px 14px 22px;
  }

  .home-ai-showcase {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: auto;
    padding: 0 0 18px;
  }

  .home-ai-showcase::before {
    background:
      linear-gradient(180deg, rgba(142, 198, 178, 0.1), transparent 28%),
      linear-gradient(180deg, rgba(9, 11, 16, 0.1), rgba(9, 11, 16, 0.72));
    opacity: 0.72;
  }

  .home-ai-showcase__story {
    display: grid;
    gap: 14px;
    width: 100%;
    padding-top: 0;
  }

  .home-ai-brandline {
    width: 100%;
    padding: 0 0 2px;
  }

  .home-ai-brandline__contacts a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
  }

  .home-ai-kicker {
    font-size: 0.7rem;
    line-height: 1.42;
    letter-spacing: 0.12em;
  }

  .home-ai-showcase h1 {
    max-width: 100%;
    font-size: clamp(1.78rem, 8vw, 2.35rem);
    line-height: 1.06;
  }

  .home-ai-lead {
    color: rgba(236, 227, 214, 0.84);
    font-size: 1rem;
    line-height: 1.58;
  }

  .home-ai-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-ai-actions .home-hero-card__button,
  .home-ai-actions .home-lux-link {
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 46px;
    box-sizing: border-box;
    text-align: center;
  }

  .home-ai-metrics span {
    min-height: 58px;
    padding: 13px 14px;
  }

  .home-ai-progress {
    height: 3px;
  }

  .home-ai-story,
  .home-ai-steps {
    gap: 10px;
  }

  .home-ai-step,
  .home-ai-step:nth-child(3),
  .home-ai-step:nth-child(4) {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 15px 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
      rgba(13, 18, 25, 0.82);
    opacity: 1;
    transform: none;
    transition: border-color 0.2s ease, background 0.2s ease;
  }

  .home-ai-step:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .home-ai-step.is-active {
    border-color: rgba(232, 187, 138, 0.48);
    background:
      linear-gradient(135deg, rgba(232, 187, 138, 0.1), rgba(142, 198, 178, 0.055)),
      rgba(13, 18, 25, 0.9);
    transform: none;
  }

  .home-ai-step__index {
    padding-top: 0.14em;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .home-ai-step div {
    gap: 7px;
  }

  .home-ai-step strong {
    font-size: 1rem;
    line-height: 1.24;
    letter-spacing: 0;
    text-transform: none;
  }

  .home-ai-step p {
    color: rgba(236, 227, 214, 0.82);
    font-size: 0.93rem;
    line-height: 1.52;
  }

  .home-ai-step a {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 34px;
    font-size: 0.72rem;
    line-height: 1.22;
  }

  .home-ai-stage {
    order: 2;
    width: 100%;
    margin-top: 2px;
  }

  .home-ai-stage__label,
  .home-ai-stage__footer {
    display: none;
  }

  .home-ai-stage__screen {
    aspect-ratio: 4 / 3;
    max-height: min(56vh, 300px);
    overflow: hidden;
  }

  .home-ai-stage__sequence {
    display: none;
  }

  .home-ai-visual figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 10px 12px;
  }

  .home-ai-visual figcaption span {
    font-size: 0.64rem;
  }

  .home-ai-visual figcaption strong {
    font-size: 1rem;
    line-height: 1.08;
  }
}

@media (max-width: 420px) {
  .home-ai-kicker,
  .home-ai-showcase h1,
  .home-ai-lead,
  .home-ai-actions,
  .home-ai-metrics,
  .home-ai-progress,
  .home-ai-steps,
  .home-ai-stage {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 1100px) {
  .home-ai-step strong {
    font-size: 1.05rem;
    line-height: 1.25;
  }

  .home-ai-step p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .home-ai-step a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
  }
}

/* mobile story route clarity pass */
@media (max-width: 1100px) {
  .home-ai-showcase,
  .home-ai-showcase__story,
  .home-ai-story,
  .home-ai-steps,
  .home-ai-step,
  .home-ai-step div {
    min-width: 0;
  }

  .home-ai-showcase {
    overflow: hidden;
  }

  .home-ai-story {
    margin-top: 4px;
  }

  .home-ai-steps {
    display: grid;
    gap: 12px;
    max-width: none;
    padding-top: 6px;
  }

  .home-ai-step,
  .home-ai-step:nth-child(3),
  .home-ai-step:nth-child(4) {
    position: relative;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
      rgba(13, 18, 25, 0.86);
    opacity: 1;
    transform: none;
  }

  .home-ai-step:last-child {
    border-bottom-color: rgba(255, 255, 255, 0.09);
  }

  .home-ai-step.is-active {
    border-color: rgba(142, 198, 178, 0.46);
    background:
      linear-gradient(135deg, rgba(142, 198, 178, 0.1), rgba(232, 187, 138, 0.055)),
      rgba(13, 18, 25, 0.92);
    transform: none;
  }

  .home-ai-step__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(232, 187, 138, 0.28);
    color: rgba(255, 226, 194, 0.95);
    background: rgba(5, 7, 11, 0.32);
    line-height: 1;
  }

  .home-ai-step div {
    gap: 8px;
  }

  .home-ai-step strong {
    max-width: 100%;
    font-size: 1.12rem;
    line-height: 1.26;
    letter-spacing: 0;
    text-transform: none;
    overflow-wrap: break-word;
  }

  .home-ai-step p {
    max-width: 100%;
    color: rgba(236, 227, 214, 0.82);
    font-size: 0.98rem;
    line-height: 1.58;
    overflow-wrap: break-word;
  }

  .home-ai-step a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    max-width: 100%;
    line-height: 1.22;
    white-space: normal;
    overflow-wrap: break-word;
  }
}

@media (max-width: 700px) {
  .home-canvas,
  .home-slide__inner,
  .home-slide--hero .home-canvas {
    width: 100%;
    padding: 72px 16px 28px;
    box-sizing: border-box;
  }

  .home-menu-chip {
    max-width: calc(100vw - 32px);
  }

  .home-ai-showcase {
    width: 100%;
    max-width: 100%;
    gap: 14px;
    padding-bottom: 16px;
  }

  .home-ai-showcase__story {
    gap: 12px;
    width: 100%;
    max-width: 100%;
  }

  .home-ai-brandline,
  .home-ai-brandline__contacts {
    width: 100%;
    max-width: 100%;
  }

  .home-ai-brandline__contacts a {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .home-ai-kicker {
    font-size: 0.68rem;
    line-height: 1.42;
    letter-spacing: 0.11em;
    overflow-wrap: break-word;
  }

  .home-ai-showcase h1 {
    max-width: 100%;
    font-size: clamp(1.72rem, 7.2vw, 2.14rem);
    line-height: 1.08;
    text-wrap: wrap;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: manual;
  }

  .home-ai-lead {
    max-width: 100%;
    color: rgba(236, 227, 214, 0.86);
    font-size: 0.98rem;
    line-height: 1.62;
    overflow-wrap: break-word;
  }

  .home-ai-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .home-ai-actions .home-hero-card__button,
  .home-ai-actions .home-lux-link {
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding-right: 14px;
    padding-left: 14px;
    box-sizing: border-box;
    line-height: 1.22;
    letter-spacing: 0.04em;
    text-align: center;
    white-space: normal;
  }

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

  .home-ai-metrics span {
    min-height: 68px;
    padding: 12px 8px;
    font-size: 0.58rem;
    letter-spacing: 0.04em;
    overflow-wrap: break-word;
  }

  .home-ai-metrics strong {
    font-size: 1.24rem;
  }

  .home-ai-progress {
    width: 100%;
    max-width: 100%;
    margin-top: 2px;
  }

  .home-ai-story,
  .home-ai-steps,
  .home-ai-stage {
    width: 100%;
    max-width: 100%;
  }

  .home-ai-story {
    margin-top: 8px;
  }

  .home-ai-steps {
    position: relative;
    gap: 12px;
    padding-top: 8px;
  }

  .home-ai-steps::before {
    content: "";
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 34px;
    width: 1px;
    background: linear-gradient(180deg, rgba(142, 198, 178, 0.48), rgba(232, 187, 138, 0.18));
  }

  .home-ai-step,
  .home-ai-step:nth-child(3),
  .home-ai-step:nth-child(4) {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 16px 14px;
  }

  .home-ai-step__index {
    position: relative;
    z-index: 1;
    width: 36px;
    height: 36px;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .home-ai-step strong {
    font-size: 1.04rem;
    line-height: 1.28;
  }

  .home-ai-step p {
    font-size: 0.94rem;
    line-height: 1.56;
  }

  .home-ai-step a {
    min-height: 44px;
    font-size: 0.72rem;
  }

  .home-ai-stage {
    margin-top: 2px;
  }
}

@media (max-width: 420px) {
  .home-canvas,
  .home-slide__inner,
  .home-slide--hero .home-canvas {
    padding-right: 14px;
    padding-left: 14px;
  }

  .home-ai-showcase h1 {
    font-size: clamp(1.54rem, 7vw, 1.82rem);
  }

  .home-ai-metrics span {
    min-height: 64px;
    padding-right: 7px;
    padding-left: 7px;
    font-size: 0.55rem;
  }

  .home-ai-metrics strong {
    font-size: 1.14rem;
  }

  .home-ai-step,
  .home-ai-step:nth-child(3),
  .home-ai-step:nth-child(4) {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 15px 12px;
  }

  .home-ai-steps::before {
    left: 30px;
  }
}

@media (max-width: 700px) {
  .home-ai-stage__caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    gap: 5px;
    padding: 10px 12px;
    background:
      linear-gradient(180deg, rgba(6, 9, 13, 0.62), rgba(6, 9, 13, 0.86)),
      rgba(8, 11, 16, 0.78);
  }

  .home-ai-stage__caption span {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .home-ai-stage__caption strong {
    font-size: 1.05rem;
    line-height: 1.08;
  }

  .home-ai-stage__caption p {
    font-size: 0.78rem;
    line-height: 1.34;
  }
}

@media (max-width: 1100px) {
  .home-ai-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    overflow: visible;
  }

  .home-canvas,
  .home-slide--hero .home-canvas {
    overflow: visible;
  }

  .home-ai-showcase__story {
    display: contents;
  }

  .home-ai-brandline {
    order: 1;
  }

  .home-ai-kicker {
    order: 2;
  }

  .home-ai-showcase h1 {
    order: 3;
  }

  .home-ai-lead {
    order: 4;
  }

  .home-ai-actions {
    order: 5;
  }

  .home-ai-metrics {
    order: 6;
  }

  .home-ai-progress {
    order: 7;
  }

  .home-ai-stage {
    order: 8;
    position: sticky;
    top: 86px;
    z-index: 6;
    width: 100%;
    margin: 0;
  }

  .home-ai-story {
    order: 9;
    margin-top: 2px;
  }

  .home-ai-stage__screen {
    min-height: 0;
    height: clamp(320px, 46vh, 430px);
    max-height: none;
  }
}

@media (max-width: 700px) {
  .home-ai-stage {
    top: 82px;
  }

  .home-ai-stage__screen {
    height: auto;
    max-height: min(46vh, 300px);
  }
}

@media (max-width: 1100px) {
  .home-ai-step__visual {
    position: relative;
    grid-column: 1 / -1;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0 0 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(8, 11, 16, 0.82);
  }

  .home-ai-step__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) saturate(1.06) contrast(1.04);
  }

  .home-ai-step__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(5, 7, 10, 0.02), rgba(5, 7, 10, 0.16) 44%, rgba(5, 7, 10, 0.72)),
      linear-gradient(90deg, rgba(5, 7, 10, 0.36), transparent 58%);
  }

  .home-ai-step__visual figcaption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 2;
    display: grid;
    gap: 4px;
  }

  .home-ai-step__visual span {
    color: rgba(232, 187, 138, 0.96);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.16em;
  }

  .home-ai-step__visual strong {
    color: rgba(255, 246, 236, 0.98);
    font-size: clamp(1.05rem, 3.8vw, 1.55rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .home-ai-stage {
    display: none;
  }
}

@media (max-width: 420px) {
  .home-ai-step__visual {
    aspect-ratio: 4 / 3;
  }

  .home-ai-step__visual figcaption {
    left: 12px;
    right: 12px;
    bottom: 10px;
  }
}

/* desktop story pinning repair 20260525-menu-safe */
@media (min-width: 1101px) {
  .home-deck {
    transition:
      margin-left 0.34s cubic-bezier(0.2, 0.82, 0.2, 1),
      transform 0.34s cubic-bezier(0.2, 0.82, 0.2, 1);
  }

  body.is-home-nav-open .home-deck {
    margin-left: min(304px, 22vw);
    transform: none !important;
  }

  body.is-home-nav-open .home-ai-story__panel {
    transition: none !important;
  }

  body.is-home-nav-open .home-ai-story__panel:not(.is-visible) {
    opacity: 0 !important;
    transform: translateY(0) !important;
  }

  .home-slide--hero .home-canvas > .home-ai-showcase {
    transform: none !important;
  }

  .home-ai-showcase.is-stage-fixed .home-ai-stage {
    position: fixed;
    top: var(--home-ai-stage-top-fixed, 0);
    left: var(--home-ai-stage-left-fixed, 52vw);
    z-index: 2;
    width: var(--home-ai-stage-width-fixed, 44vw);
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    opacity: var(--home-ai-exit-opacity, 1);
    will-change: opacity;
  }

  .home-ai-showcase.is-stage-fixed .home-ai-stage__screen {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    max-height: none;
  }

  .home-ai-showcase.is-story-text-fixed .home-ai-story__pin {
    position: fixed;
    top: var(--home-ai-story-pin-top-fixed, 19vh);
    left: var(--home-ai-story-left-fixed, 6vw);
    z-index: 5;
    width: var(--home-ai-story-width-fixed, 42vw);
    height: var(--home-ai-story-pin-height-fixed, 58vh);
    min-height: 0;
    max-height: none;
    opacity: var(--home-ai-exit-opacity, 1);
    will-change: opacity;
  }

  .home-ai-showcase.is-progress-fixed .home-ai-progress {
    position: fixed;
    top: var(--home-ai-progress-top-fixed, 78vh);
    left: var(--home-ai-progress-left-fixed, 6vw);
    z-index: 5;
    width: var(--home-ai-progress-width-fixed, min(560px, 42vw));
    max-width: calc(100vw - var(--home-ai-progress-left-fixed, 6vw) - 28px);
    height: 3px;
    border-radius: 999px;
    background: rgba(198, 150, 92, 0.18);
    box-shadow:
      0 0 0 1px rgba(232, 187, 138, 0.08),
      0 16px 34px rgba(0, 0, 0, 0.24);
    opacity: var(--home-ai-exit-opacity, 1);
    will-change: opacity;
  }

  body.is-home-nav-open .home-ai-progress span {
    transition: none !important;
  }
}

/* desktop hero title containment 20260526 */
@media (min-width: 1101px) {
  .home-ai-showcase h1 {
    max-width: 680px;
    font-size: clamp(3.6rem, 4.2vw, 5rem);
  }
}

/* Keep the fixed home rail menu fully visible without an inner scrollbar. */
body.is-home-nav-open .home-shell {
  z-index: 10020;
}

body.is-home-nav-open .home-fixed-ui {
  z-index: 10021;
}

body.is-home-nav-open .home-menu-chip,
body.is-home-nav-open .home-rail {
  z-index: 10022;
}

.home-rail__nav {
  overflow: hidden;
  overflow-y: hidden;
  overflow-x: hidden;
  gap: clamp(5px, 0.75vh, 8px);
  padding-bottom: 10px;
}

.home-rail__link {
  line-height: 1.26;
}

.home-rail__link + .home-rail__link {
  padding-top: clamp(5px, 0.85vh, 9px);
}

@media (max-width: 1100px) {
  .home-rail {
    height: 100vh;
    height: 100dvh;
  }

  .home-rail__wheel {
    top: 12px;
    width: clamp(154px, 34vw, 188px);
  }

  .home-rail__nav {
    top: clamp(172px, 27vh, 212px);
    bottom: clamp(20px, 4vh, 44px);
    gap: clamp(4px, 0.65vh, 7px);
    padding: 0 18px 8px;
  }

  .home-rail__caption {
    margin-bottom: 2px;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .home-rail__link {
    font-size: clamp(0.68rem, 1.7vh, 0.76rem);
    line-height: 1.22;
    letter-spacing: 0.04em;
  }

  .home-rail__link + .home-rail__link {
    padding-top: clamp(4px, 0.75vh, 8px);
  }

  .home-rail__link.is-current::before,
  .home-rail__link.is-current::after {
    height: 26px;
  }
}

@media (max-width: 1100px) and (max-height: 620px) {
  .home-rail__wheel {
    top: 10px;
    width: 138px;
  }

  .home-rail__nav {
    top: 148px;
    bottom: 18px;
    gap: 3px;
    padding-bottom: 6px;
  }

  .home-rail__caption {
    display: none;
  }

  .home-rail__link {
    font-size: 0.64rem;
    line-height: 1.14;
  }

  .home-rail__link + .home-rail__link {
    padding-top: 4px;
  }
}
