:root {
  --black: #171715;
  --ink: #242725;
  --navy: #2e332f;
  --navy-2: #40473f;
  --slate: #6f746d;
  --white: #f8f6ef;
  --mist: #edf1e8;
  --cyan: #8fa894;
  --cyan-hot: #b8c8b4;
  --magenta: #b89488;
  --magenta-hot: #c6a49a;
  --yellow: #d7c59d;
  --glass: rgba(248, 246, 239, 0.08);
  --glass-strong: rgba(248, 246, 239, 0.16);
  --line: rgba(184, 200, 180, 0.24);
  --shadow: 0 24px 70px rgba(18, 18, 16, 0.36);
  --shadow-soft: 0 18px 54px rgba(18, 18, 16, 0.24);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --header-height: 78px;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
  --font-display: "Cinzel", Georgia, serif;
  color-scheme: light;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(145deg, rgba(248, 246, 239, 0.05), rgba(143, 168, 148, 0.08) 38%, transparent 72%),
    linear-gradient(135deg, #171715, #2e332f 48%, #20221f);
  color: var(--white);
}

body.is-presenting {
  overflow: hidden;
}

body.is-capture-camera-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(248, 246, 239, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 246, 239, 0.014) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.58), transparent 82%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  background:
    linear-gradient(180deg, rgba(248, 246, 239, 0.06), rgba(0, 0, 0, 0.42));
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 30;
  padding: 0.8rem 1rem;
  color: var(--black);
  background: var(--yellow);
  border-radius: 999px;
  transform: translateY(-180%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: var(--header-height);
  padding: 0.9rem clamp(1rem, 4vw, 3.8rem);
  border-bottom: 1px solid rgba(248, 246, 239, 0.12);
  background: rgba(23, 23, 21, 0.74);
  backdrop-filter: blur(20px) saturate(1.12);
}

.brand-lockup {
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
  min-width: max-content;
}

.mobile-menu-toggle,
.mobile-nav-cta,
.mobile-nav-direct {
  display: none;
}

.mobile-menu-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 170ms ease, opacity 170ms ease;
}

.mobile-menu-toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 6px));
}

.mobile-menu-toggle span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 6px));
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.brand-symbol {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--black);
  font-size: 1.35rem;
  font-weight: 800;
  background:
    linear-gradient(135deg, var(--white), var(--cyan-hot) 58%, var(--yellow));
  border-radius: 16px 16px 16px 5px;
  box-shadow: 0 12px 30px rgba(18, 18, 16, 0.24);
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
  line-height: 1.05;
}

.brand-lockup strong {
  font-family: var(--font-display);
  font-size: 1.03rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-lockup small {
  margin-top: 0.18rem;
  color: rgba(248, 246, 239, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.65rem, 2vw, 1.4rem);
  color: rgba(248, 246, 239, 0.7);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 0.55rem 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.18rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--cyan-hot);
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="true"] {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a[aria-current="true"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.trifit-launcher {
  position: fixed;
  right: clamp(1rem, 2.2vw, 2rem);
  bottom: clamp(1rem, 2.2vw, 2rem);
  z-index: 18;
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.62rem 0.68rem 0.62rem 1rem;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(184, 200, 180, 0.18), rgba(23, 23, 21, 0.94) 46%),
    rgba(23, 23, 21, 0.92);
  border: 1px solid rgba(184, 200, 180, 0.38);
  border-radius: 999px;
  box-shadow: 0 18px 58px rgba(18, 18, 16, 0.42);
  backdrop-filter: blur(18px) saturate(1.14);
}

.trifit-launcher-copy {
  display: grid;
  gap: 0.08rem;
}

.trifit-launcher-copy small {
  color: var(--cyan-hot);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.trifit-launcher-copy strong {
  font-size: 0.9rem;
  line-height: 1.1;
  white-space: nowrap;
}

.trifit-launcher .primary-button {
  min-height: 46px;
  white-space: nowrap;
}

.primary-button,
.ghost-button,
.audio-toggle,
.carousel-controls button {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.76rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

.primary-button {
  color: var(--black);
  background: linear-gradient(135deg, var(--white), var(--cyan-hot));
  box-shadow: 0 14px 38px rgba(18, 18, 16, 0.24);
}

.primary-button:hover,
.ghost-button:hover,
.audio-toggle:hover,
.carousel-controls button:hover {
  transform: translateY(-2px);
}

.ghost-button,
.audio-toggle,
.carousel-controls button {
  color: var(--white);
  background: rgba(248, 246, 239, 0.07);
  border-color: rgba(248, 246, 239, 0.18);
}

.ghost-button:hover,
.audio-toggle:hover,
.carousel-controls button:hover {
  border-color: rgba(184, 200, 180, 0.72);
  background: rgba(184, 200, 180, 0.13);
}

.ghost-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.large {
  min-height: 52px;
  padding: 0.95rem 1.35rem;
}

.compact {
  margin-top: 1.45rem;
}

.snap-flow {
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

#intro {
  order: 10;
}

#why {
  order: 20;
}

#realiseme {
  order: 30;
}

#dressme {
  order: 40;
}

#animateme {
  order: 50;
}

#commerce {
  order: 60;
}

#assurance {
  order: 65;
}

#fashion-ai {
  order: 70;
}

#proof {
  order: 80;
}

#pilot {
  order: 85;
}

#about {
  order: 90;
}

.snap-section {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 2rem) clamp(1rem, 5vw, 5.6rem) 4rem;
  scroll-snap-align: none;
}

.hero-section {
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-video,
.hero-video-fallback,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: -4;
  object-fit: cover;
  background: var(--navy);
}

.hero-video-fallback {
  z-index: -5;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(20, 20, 18, 0.72), rgba(64, 71, 63, 0.46)),
    url("https://velox-studio-shopify-cpbbbbhkdhctb4hd.ukwest-01.azurewebsites.net/landing-assets/media/velox-hero-desktop-poster-b4cec081c9.jpg") center / cover;
  transform: scale(1.02);
  transition: opacity 260ms ease;
}

.hero-section.is-video-playing .hero-video-fallback {
  opacity: 0;
}

.hero-video-fallback::before {
  position: absolute;
  inset: -20%;
  content: "";
  background:
    radial-gradient(circle at 22% 48%, rgba(184, 200, 180, 0.16), transparent 18rem),
    radial-gradient(circle at 78% 55%, rgba(184, 148, 136, 0.14), transparent 16rem);
  animation: slow-drift 12s ease-in-out infinite alternate;
}

.scanline {
  position: absolute;
  left: -8%;
  width: 116%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(184, 200, 180, 0.42), transparent);
  box-shadow: 0 0 22px rgba(184, 200, 180, 0.22);
  animation: scan 6s linear infinite;
}

.scanline-a {
  top: 22%;
}

.scanline-b {
  top: 52%;
  animation-delay: 1.8s;
}

.scanline-c {
  top: 76%;
  animation-delay: 3.2s;
}

.hero-scrim {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(20, 20, 18, 0.82), rgba(46, 51, 47, 0.48) 58%, rgba(20, 20, 18, 0.68)),
    linear-gradient(0deg, rgba(20, 20, 18, 0.72), transparent 52%);
}

.hero-content {
  max-width: 880px;
}

.eyebrow,
.card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  color: var(--cyan-hot);
  font-family: var(--font-display);
  font-size: clamp(0.76rem, 1.3vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.card-kicker::before {
  width: 26px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 999px;
}

.eyebrow.magenta,
.card-kicker {
  color: var(--magenta);
}

.eyebrow.yellow {
  color: var(--yellow);
}

.eyebrow.cyan {
  color: var(--cyan-hot);
}

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

h1,
h2 {
  font-family: var(--font-display);
  margin-bottom: 1.1rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

h1 {
  max-width: 920px;
  font-size: clamp(2.55rem, 6vw, 6.2rem);
}

h2 {
  font-size: clamp(2.3rem, 6vw, 5.4rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.05;
}

p {
  color: rgba(248, 246, 239, 0.74);
  font-size: clamp(1rem, 1.65vw, 1.22rem);
  font-weight: 500;
  line-height: 1.65;
}

.hero-copy {
  max-width: 710px;
  margin-bottom: 2rem;
  color: rgba(248, 246, 239, 0.8);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
}

.contact-card,
.store-card,
.install-card,
.feature-card,
.large-media-card,
.proof-grid article {
  border: 1px solid rgba(248, 246, 239, 0.12);
  background:
    linear-gradient(145deg, rgba(248, 246, 239, 0.11), rgba(248, 246, 239, 0.035)),
    rgba(36, 39, 37, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(1.08);
}

.audio-toggle {
  justify-self: start;
  min-height: 42px;
  padding: 0.7rem 0.95rem;
}

.hero-audio-toggle {
  flex: 0 0 auto;
  min-height: 52px;
  padding-inline: 1.15rem;
}

.audio-toggle-icon {
  width: 0.65rem;
  height: 0.65rem;
  background: var(--magenta);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--magenta);
}

.audio-toggle[aria-pressed="true"] .audio-toggle-icon {
  background: var(--cyan-hot);
  box-shadow: 0 0 18px var(--cyan-hot);
}

.scroll-cue {
  position: absolute;
  right: clamp(1rem, 5vw, 5.6rem);
  bottom: 1.5rem;
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 10px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
}

.scroll-cue span::before {
  display: block;
  width: 4px;
  height: 4px;
  margin: 5px auto 0;
  content: "";
  background: var(--cyan-hot);
  border-radius: 50%;
  animation: cue 1.8s ease-in-out infinite;
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 4vw, 4.5rem);
  align-items: center;
}

.feature-section.alt::before,
.commerce-section::before,
.proof-section::before {
  position: absolute;
  inset: 10% auto auto -8rem;
  z-index: -1;
  width: min(36vw, 430px);
  height: min(36vw, 430px);
  content: "";
  background: radial-gradient(circle, rgba(184, 148, 136, 0.16), transparent 66%);
  border-radius: 50%;
  filter: blur(8px);
}

.section-copy {
  max-width: 640px;
}

.section-copy.centered {
  max-width: 780px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-copy.centered .eyebrow {
  justify-content: center;
}

.why-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(260px, 1.05fr);
  gap: clamp(1.5rem, 4vw, 4.5rem);
  align-items: center;
  background:
    radial-gradient(circle at 76% 34%, rgba(184, 200, 180, 0.12), transparent 21rem),
    radial-gradient(circle at 16% 72%, rgba(215, 197, 157, 0.1), transparent 17rem);
}

.why-video-panel {
  justify-self: center;
  width: min(100%, 42svh, 420px);
  min-width: min(100%, 280px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(248, 246, 239, 0.16);
  border-radius: clamp(22px, 4vw, 36px);
  background: var(--black);
  box-shadow: 0 30px 90px rgba(18, 18, 16, 0.5);
}

.why-video-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.feature-carousel {
  position: relative;
  min-width: 0;
}

.carousel-controls {
  position: absolute;
  top: -4.2rem;
  right: 0;
  z-index: 2;
  display: flex;
  gap: 0.6rem;
}

.feature-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.4rem 0.2rem 1.2rem;
  scroll-padding-inline: 0.2rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  touch-action: auto;
  overscroll-behavior-x: contain;
}

.feature-track::-webkit-scrollbar {
  height: 8px;
}

.feature-track::-webkit-scrollbar-thumb {
  background: rgba(184, 200, 180, 0.42);
  border-radius: 999px;
}

.feature-card {
  display: grid;
  flex: 0 0 clamp(320px, 47vw, 460px);
  gap: 0.55rem;
  min-height: 590px;
  padding: 1rem;
  border-radius: var(--radius-xl);
  scroll-snap-align: start;
}

.feature-card > h3,
.feature-card > p,
.feature-card > .card-kicker {
  padding-inline: 0.35rem;
}

.dressme-view-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  padding: 0.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.dressme-view-toggle button {
  min-height: 36px;
  color: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 999px;
}

.dressme-view-toggle button[aria-pressed="true"] {
  color: var(--black);
  background: var(--cyan-hot);
  box-shadow: 0 0 18px rgba(184, 200, 180, 0.28);
}

.compare-frame,
.video-placeholder,
.dressme-input-view,
.large-media-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: rgba(0, 0, 0, 0.32);
}

.compare-frame {
  min-height: 430px;
  cursor: ew-resize;
  background: var(--black);
  touch-action: pan-y;
}

.dressme-input-view {
  min-height: 430px;
  background: var(--black);
}

.compare-frame.is-comparing {
  cursor: grabbing;
}

.compare-frame::after {
  position: absolute;
  top: 50%;
  left: var(--compare);
  z-index: 2;
  width: 1.1rem;
  height: 4.4rem;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(217, 247, 255, 0.62)),
    var(--cyan-hot);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(184, 200, 180, 0.44);
  transform: translate(-50%, -50%);
}

.compare-frame img,
.compare-frame video,
.dressme-input-view img {
  width: var(--compare-frame-width, 100%);
  height: 100%;
  pointer-events: none;
  object-fit: contain;
  user-select: none;
  background: var(--black);
  -webkit-user-drag: none;
}

.dressme-input-view img {
  position: absolute;
  inset: 0;
  width: 100%;
}

.large-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-frame > img,
.compare-frame > video {
  position: absolute;
  inset: 0;
}

.video-compare-frame {
  background: var(--black);
}

.compare-after {
  position: absolute;
  inset: 0;
  width: var(--compare);
  overflow: hidden;
  pointer-events: none;
  border-right: 2px solid var(--cyan-hot);
  box-shadow: 16px 0 38px rgba(184, 200, 180, 0.15);
}

.compare-after img,
.compare-after video {
  width: var(--compare-frame-width, min(84vw, 430px));
  min-width: var(--compare-frame-width, min(84vw, 430px));
  height: 100%;
  object-fit: contain;
  background: var(--black);
}

.compare-after-video {
  background: var(--black);
}

.compare-after-video video {
  display: block;
}

.compare-frame input {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 3;
  pointer-events: auto;
  accent-color: var(--cyan-hot);
  touch-action: none;
}

.presentation-affordance {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  left: auto;
  z-index: 8;
  display: none;
  flex-direction: column;
  gap: 0.28rem;
  align-items: flex-end;
  justify-content: flex-start;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.25rem);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

@media (min-width: 900px) and (hover: hover) and (pointer: fine) {
  .presentation-affordance {
    display: flex;
  }

  .compare-frame:hover .presentation-affordance,
  .compare-frame:focus-within .presentation-affordance {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }
}

.presentation-compare-frame .presentation-affordance {
  display: none !important;
}

.presentation-open-button {
  position: relative;
  z-index: 2;
  min-height: 34px;
  color: var(--black);
  background: rgba(248, 246, 239, 0.9);
  border: 1px solid rgba(248, 246, 239, 0.62);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(18, 18, 16, 0.28);
  backdrop-filter: blur(14px) saturate(1.1);
}

.presentation-tip {
  display: block;
  max-width: 7.5rem;
  color: rgba(248, 246, 239, 0.82);
  font-size: 0.62rem;
  font-weight: 750;
  line-height: 1.15;
  text-align: right;
  text-shadow: 0 2px 12px rgba(18, 18, 16, 0.7);
  white-space: normal;
}

.presentation-open-button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.8rem;
  font-size: 0.76rem;
  font-weight: 900;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  user-select: none;
}

.presentation-open-button:hover,
.presentation-open-button:focus-visible {
  background: var(--white);
  outline: 2px solid rgba(184, 200, 180, 0.72);
  outline-offset: 2px;
}

.presentation-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
  color: var(--white);
  background:
    radial-gradient(circle at 85% 12%, rgba(184, 148, 136, 0.28), transparent 25rem),
    radial-gradient(circle at 15% 88%, rgba(184, 200, 180, 0.26), transparent 24rem),
    rgba(0, 0, 10, 0.94);
  backdrop-filter: blur(20px) saturate(1.25);
  touch-action: none;
}

.presentation-overlay[hidden] {
  display: none;
}

.presentation-topbar,
.presentation-footer {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
}

.presentation-heading {
  display: grid;
  gap: 0.25rem;
}

.presentation-heading .eyebrow {
  margin: 0;
}

.presentation-heading strong {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1;
}

.presentation-heading small,
.presentation-footer p {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.presentation-close,
.presentation-footer button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1rem;
  color: var(--white);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.presentation-close {
  width: 46px;
  padding: 0;
  font-weight: 900;
}

.presentation-stage {
  display: grid;
  min-height: 0;
  place-items: center;
}

.presentation-card {
  display: grid;
  width: min(94vw, 980px);
  min-height: 0;
}

.presentation-dressme-card {
  gap: 0.75rem;
}

.presentation-card .dressme-view-toggle {
  width: min(28rem, 100%);
  justify-self: center;
}

.presentation-card .compare-frame {
  width: 100%;
  height: min(76svh, 780px);
  min-height: 0;
  border-radius: clamp(22px, 4vw, 42px);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.64);
  touch-action: none;
}

.presentation-card .dressme-input-view {
  width: 100%;
  height: min(76svh, 780px);
  min-height: 0;
  border-radius: clamp(22px, 4vw, 42px);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.64);
}

.presentation-card .compare-frame img,
.presentation-card .compare-frame video,
.presentation-card .dressme-input-view img {
  object-fit: contain;
  background: var(--black);
}

.presentation-card .compare-after img,
.presentation-card .compare-after video {
  width: min(94vw, 980px);
  min-width: min(94vw, 980px);
}

.presentation-footer {
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.presentation-footer span {
  min-width: 4.5rem;
  color: var(--mist);
  font-weight: 900;
}

.presentation-footer p {
  flex: 1 1 100%;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.35;
}

.video-placeholder {
  display: grid;
  min-height: 430px;
  place-items: center;
  isolation: isolate;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.video-placeholder::before,
.video-placeholder::after {
  position: absolute;
  content: "";
}

.video-placeholder::before {
  inset: 11%;
  z-index: -2;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.14), transparent 16%),
    linear-gradient(150deg, rgba(184, 200, 180, 0.25), rgba(184, 148, 136, 0.18));
  animation: slow-drift 6s ease-in-out infinite alternate;
}

.video-placeholder::after {
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, transparent 0 46%, rgba(255, 255, 255, 0.14) 49%, transparent 52%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 2px, transparent 2px 8px);
  animation: shimmer 3.4s linear infinite;
}

.dressme-video {
  background: linear-gradient(135deg, rgba(184, 200, 180, 0.18), rgba(0, 0, 0, 0.36));
}

.pulse-video {
  background: linear-gradient(135deg, rgba(184, 148, 136, 0.18), rgba(0, 0, 0, 0.36));
}

.realise-video {
  background: linear-gradient(135deg, rgba(215, 197, 157, 0.12), rgba(143, 168, 148, 0.16));
}

.detail-card {
  align-content: end;
  min-height: 590px;
  padding: 1.2rem;
  background:
    linear-gradient(145deg, rgba(184, 200, 180, 0.18), rgba(184, 148, 136, 0.1)),
    rgba(0, 0, 32, 0.72);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  min-height: 24px;
  margin-top: 0.5rem;
}

.carousel-dots button {
  width: 34px;
  height: 4px;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.26);
  border: 0;
  border-radius: 999px;
}

.carousel-dots button[aria-current="true"] {
  background: var(--cyan-hot);
}

.split-feature,
.commerce-section {
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr);
}

.intelligence-section {
  grid-template-columns: minmax(260px, 0.72fr) minmax(520px, 1.28fr);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.mini-grid span {
  padding: 0.9rem 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

.why-points {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.assurance-section,
.pilot-section {
  display: grid;
  align-content: center;
}

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

.assurance-grid article,
.pilot-summary article {
  position: relative;
  overflow: hidden;
  padding: clamp(1.15rem, 2.4vw, 1.6rem);
  background:
    linear-gradient(145deg, rgba(248, 246, 239, 0.075), rgba(184, 200, 180, 0.08)),
    rgba(23, 23, 21, 0.66);
  border: 1px solid rgba(248, 246, 239, 0.13);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.assurance-grid h3 {
  margin: 0.75rem 0 0.65rem;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 0.98;
}

.assurance-grid p,
.pilot-summary span {
  margin: 0;
  color: rgba(248, 246, 239, 0.72);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.55;
}

.pilot-section {
  grid-template-columns: minmax(260px, 0.7fr) minmax(460px, 1.3fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.pilot-journey {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1rem, 2.2vw, 1.5rem);
  align-items: start;
  padding: clamp(1.05rem, 2vw, 1.35rem);
  background:
    linear-gradient(145deg, rgba(248, 246, 239, 0.075), rgba(184, 200, 180, 0.08)),
    rgba(23, 23, 21, 0.72);
  border: 1px solid rgba(248, 246, 239, 0.13);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.journey-card-final {
  background:
    linear-gradient(135deg, rgba(184, 200, 180, 0.24), rgba(143, 168, 148, 0.1)),
    rgba(23, 23, 21, 0.86);
  border-color: rgba(184, 200, 180, 0.52);
}

.journey-number {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  background: var(--mist);
  border-radius: 18px 18px 18px 5px;
}

.journey-card-final .journey-number {
  background: linear-gradient(135deg, var(--white), var(--cyan-hot));
}

.journey-card h3 {
  margin: 0.38rem 0 0.42rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 600;
  line-height: 1.05;
}

.journey-card p {
  margin: 0 0 0.9rem;
  color: rgba(248, 246, 239, 0.72);
  font-weight: 600;
  line-height: 1.5;
}

.journey-card .primary-button,
.journey-card .ghost-button {
  min-height: 40px;
  padding: 0.62rem 0.9rem;
  font-size: 0.88rem;
}

.journey-note {
  display: grid;
  gap: 0.22rem;
  margin-top: 1.35rem;
  padding: 1rem 1.1rem;
  background: rgba(184, 200, 180, 0.1);
  border: 1px solid rgba(184, 200, 180, 0.28);
  border-radius: 18px;
}

.journey-note strong {
  color: var(--white);
}

.journey-note span {
  color: rgba(248, 246, 239, 0.68);
  font-size: 0.92rem;
  font-weight: 650;
}

.contact-intro {
  margin: 0 0 0.65rem;
  color: rgba(248, 246, 239, 0.68);
  font-size: 0.9rem;
  line-height: 1.5;
}

.large-media-card {
  min-height: min(72svh, 650px);
  border-radius: var(--radius-xl);
}

.visual-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(0.55rem, 1.2vw, 0.9rem);
  padding: clamp(0.55rem, 1.2vw, 0.9rem);
}

.visual-story-card,
.commerce-visual {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: clamp(18px, 2vw, 24px);
  background: var(--black);
}

.visual-story-card-featured {
  grid-row: 1 / span 2;
}

.visual-story-card::after,
.commerce-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, transparent 62%, rgba(23, 23, 21, 0.28)),
    radial-gradient(circle at 18% 18%, rgba(184, 200, 180, 0.16), transparent 34%),
    radial-gradient(circle at 86% 86%, rgba(184, 148, 136, 0.13), transparent 34%);
}

.visual-story-card img,
.commerce-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.commerce-card {
  box-shadow: 0 26px 82px rgba(184, 148, 136, 0.12), var(--shadow);
}

.proof-section {
  display: grid;
  align-content: center;
}

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

.proof-grid article {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: clamp(1rem, 3vw, 1.5rem);
  border-radius: var(--radius-lg);
}

.proof-grid article[data-live-signal-card] {
  display: flex;
  flex-direction: column;
  border-color: rgba(184, 200, 180, 0.26);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.proof-grid article[data-live-signal-card].is-live-loaded {
  animation: live-signal-card-breathe 3.2s ease-in-out infinite;
}

.proof-grid article[data-live-signal-card="visualGenerations"].is-live-loaded {
  animation-delay: 420ms;
}

.proof-grid article[data-live-signal-card]::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 28% 22%, rgba(184, 200, 180, 0.28), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(184, 148, 136, 0.16), transparent 36%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.proof-grid strong,
.proof-grid span {
  display: block;
  position: relative;
  z-index: 1;
}

.proof-grid strong {
  margin-bottom: 1.2rem;
  color: var(--cyan-hot);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0;
  line-height: 0.85;
}

.proof-grid span {
  color: rgba(248, 246, 239, 0.7);
  font-weight: 700;
  line-height: 1.35;
}

.proof-grid article.is-live-loaded strong {
  transform-origin: left center;
  text-shadow: 0 0 26px rgba(184, 200, 180, 0.32);
  animation: live-signal-heartbeat 3.2s ease-in-out infinite;
  will-change: transform, text-shadow;
}

.proof-grid article[data-live-signal-card="visualGenerations"].is-live-loaded strong {
  animation-delay: 420ms;
}

.proof-grid article.is-live-counting strong {
  color: var(--white);
}

.proof-grid article[data-live-signal-card].is-live-updated {
  border-color: rgba(184, 200, 180, 0.72);
  box-shadow: 0 0 0 1px rgba(184, 200, 180, 0.2), 0 20px 64px rgba(184, 200, 180, 0.14);
  animation: live-signal-card 900ms ease both;
}

.proof-grid article.is-live-updated::after {
  animation: live-signal-glow 900ms ease both;
}

.live-signal-chart {
  position: relative;
  z-index: 1;
  min-height: 42px;
  margin-top: auto;
  padding-top: 1rem;
  color: rgba(184, 200, 180, 0.92);
}

.live-signal-chart::before {
  position: absolute;
  top: 0.15rem;
  right: 0;
  color: rgba(248, 246, 239, 0.46);
  content: "24h beats";
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-signal-chart svg {
  display: block;
  width: 100%;
  height: 38px;
  overflow: visible;
}

.live-signal-chart .live-signal-gridline {
  stroke: rgba(248, 246, 239, 0.1);
  stroke-width: 1;
}

.live-signal-chart .live-signal-line-path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
  filter: drop-shadow(0 0 7px rgba(184, 200, 180, 0.54));
}

.live-signal-chart .live-signal-line-flow {
  fill: none;
  stroke: rgba(248, 246, 239, 0.58);
  stroke-dasharray: 5 12;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
  animation: live-signal-line-flow 2.4s linear infinite;
}

.live-signal-chart .live-signal-dot {
  fill: var(--white);
  filter: drop-shadow(0 0 9px rgba(184, 200, 180, 0.76));
  transform-box: fill-box;
  transform-origin: center;
  animation: live-signal-dot 1.7s ease-in-out infinite;
}

.live-signal-chart[data-has-activity="false"] {
  color: rgba(184, 200, 180, 0.58);
}

@keyframes live-signal-card {
  0%,
  100% {
    transform: translateY(0);
  }

  35% {
    transform: translateY(-3px);
  }
}

@keyframes live-signal-card-breathe {
  0%,
  100% {
    border-color: rgba(184, 200, 180, 0.3);
    box-shadow: 0 0 0 1px rgba(184, 200, 180, 0.08), 0 16px 46px rgba(184, 200, 180, 0.08);
  }

  70% {
    border-color: rgba(184, 200, 180, 0.62);
    box-shadow: 0 0 0 1px rgba(184, 200, 180, 0.18), 0 24px 74px rgba(184, 200, 180, 0.16);
  }

  82% {
    border-color: rgba(184, 148, 136, 0.42);
    box-shadow: 0 0 0 1px rgba(184, 148, 136, 0.14), 0 20px 58px rgba(184, 148, 136, 0.12);
  }
}

@keyframes live-signal-glow {
  0%,
  100% {
    opacity: 0;
  }

  35% {
    opacity: 1;
  }
}

@keyframes live-signal-heartbeat {
  0%,
  62%,
  100% {
    transform: scale(1);
    text-shadow: 0 0 26px rgba(184, 200, 180, 0.32);
  }

  68% {
    transform: scale(1.045);
    text-shadow: 0 0 42px rgba(184, 200, 180, 0.72), 0 0 18px rgba(184, 148, 136, 0.26);
  }

  74% {
    transform: scale(0.992);
    text-shadow: 0 0 25px rgba(184, 200, 180, 0.34);
  }

  82% {
    transform: scale(1.026);
    text-shadow: 0 0 38px rgba(184, 200, 180, 0.6), 0 0 14px rgba(184, 148, 136, 0.22);
  }
}

@keyframes live-signal-line-flow {
  to {
    stroke-dashoffset: -34;
  }
}

@keyframes live-signal-dot {
  0%,
  100% {
    opacity: 0.82;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.7);
  }
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 590px);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

.contact-card {
  padding: clamp(0.9rem, 1.6vw, 1.3rem);
  border-radius: var(--radius-xl);
}

.contact-card .card-kicker {
  margin-bottom: 0.65rem;
}

.contact-card h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
}

.contact-form {
  display: grid;
  gap: 0.42rem;
}

.contact-form label {
  display: grid;
  gap: 0.3rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 850;
}

.contact-label-line {
  display: flex;
  gap: 0.35rem;
  align-items: baseline;
}

.shopify-handle-field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.shopify-handle-field:focus-within {
  border-color: rgba(184, 200, 180, 0.72);
  box-shadow: 0 0 0 4px rgba(184, 200, 180, 0.12);
}

.shopify-handle-field > span {
  padding-left: 0.82rem;
  color: rgba(248, 246, 239, 0.52);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.contact-form .shopify-handle-field input {
  min-width: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-form .shopify-handle-field input:focus {
  background: transparent;
  box-shadow: none;
}

.contact-field-help {
  color: rgba(248, 246, 239, 0.56);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.35;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 39px;
  padding: 0.56rem 0.72rem;
  color: var(--white);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form select {
  padding-right: 2.4rem;
  color: rgba(248, 246, 239, 0.92);
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, rgba(248, 246, 239, 0.82) 50%) calc(100% - 1.18rem) 50% / 0.42rem 0.42rem no-repeat,
    linear-gradient(135deg, rgba(248, 246, 239, 0.82) 50%, transparent 50%) calc(100% - 0.9rem) 50% / 0.42rem 0.42rem no-repeat,
    rgba(0, 0, 0, 0.3);
}

.contact-form select option {
  color: var(--ink);
  background: var(--white);
}

.contact-form textarea {
  min-height: 72px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: rgba(0, 0, 0, 0.38);
  border-color: rgba(184, 200, 180, 0.76);
  box-shadow: 0 0 0 4px rgba(184, 200, 180, 0.12);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.contact-form label[hidden] {
  display: none;
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.contact-context-row {
  align-items: start;
}

.contact-form .compact {
  display: grid;
  grid-template-columns: minmax(110px, 0.8fr) minmax(150px, 1fr) minmax(190px, 1.25fr);
  gap: 0.5rem;
  margin-top: 0.15rem;
}

.contact-form .compact > * {
  width: 100%;
  min-width: 0;
  padding-inline: 0.68rem;
  white-space: nowrap;
}

.contact-form .contact-try-button {
  min-height: 38px;
  padding: 0.55rem 0.82rem;
  font-size: 0.9rem;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-status {
  display: none;
  margin: 0;
  padding: 0.85rem 0.95rem;
  color: rgba(217, 247, 255, 0.94);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.45;
  background:
    linear-gradient(135deg, rgba(184, 200, 180, 0.14), rgba(215, 197, 157, 0.08)),
    rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(184, 200, 180, 0.24);
  border-radius: 18px;
}

.contact-status.show {
  display: block;
}

.contact-status.is-error {
  color: rgba(255, 230, 238, 0.96);
  background:
    linear-gradient(135deg, rgba(184, 148, 136, 0.18), rgba(0, 0, 0, 0.2)),
    rgba(255, 255, 255, 0.075);
  border-color: rgba(184, 148, 136, 0.36);
}

.subpage-body {
  min-height: 100svh;
}

.subpage-main {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: calc(var(--header-height) + 3rem) 0 5rem;
}

.shopify-example-main {
  width: min(1500px, calc(100% - 2rem));
  padding-bottom: 3rem;
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(280px, 1fr);
  gap: clamp(1.4rem, 4vw, 3.5rem);
  align-items: center;
  min-height: calc(100svh - var(--header-height) - 3rem);
}

.subpage-hero h1 {
  font-size: clamp(2.35rem, 5.2vw, 5.2rem);
}

.shopify-example-intro {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.2rem, 3vw, 2rem);
  margin-bottom: 1rem;
  border: 1px solid rgba(184, 200, 180, 0.18);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 0%, rgba(184, 200, 180, 0.18), transparent 22rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow-soft);
}

.shopify-example-intro h1 {
  max-width: 820px;
  margin: 0.1rem 0 0;
  font-size: clamp(2.15rem, 4vw, 4.4rem);
  line-height: 0.95;
}

.shopify-example-copy {
  max-width: 780px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
}

.shopify-example-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.b2b-path-grid,
.b2b-scenario-board {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

.b2b-path-card,
.b2b-anchor-card,
.b2b-signal-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.35rem);
  color: #242725;
  border: 1px solid rgba(94, 104, 83, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 16% 0%, rgba(152, 255, 152, 0.18), transparent 16rem),
    linear-gradient(145deg, rgba(255, 248, 236, 0.9), rgba(247, 231, 206, 0.66));
  box-shadow: 0 20px 58px rgba(88, 80, 63, 0.14);
}

.b2b-path-card h2,
.b2b-anchor-card h2,
.b2b-signal-card h2 {
  margin: 0 0 0.7rem;
  color: #242725;
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  line-height: 1;
}

.b2b-path-card p:not(.card-kicker),
.b2b-anchor-card p:not(.card-kicker),
.b2b-signal-card p:not(.card-kicker) {
  color: rgba(36, 39, 37, 0.72);
  font-size: 1rem;
  line-height: 1.55;
}

.b2b-path-card .ghost-button {
  margin-top: 1rem;
}

.b2b-scenario-board {
  grid-template-columns: minmax(260px, 1.05fr) repeat(3, minmax(0, 1fr));
}

.b2b-anchor-card {
  display: grid;
  gap: 1rem;
}

.b2b-anchor-visual {
  position: relative;
  display: grid;
  min-height: 320px;
  padding: 1.2rem;
  overflow: hidden;
  align-content: end;
  border: 1px solid rgba(83, 98, 79, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 72% 26%, rgba(152, 255, 152, 0.42), transparent 8rem),
    linear-gradient(135deg, rgba(255, 248, 236, 0.86), rgba(156, 175, 136, 0.28)),
    linear-gradient(160deg, #f7e7ce, #fff8ec);
}

.b2b-anchor-visual::before,
.b2b-anchor-visual::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  pointer-events: none;
}

.b2b-anchor-visual::before {
  inset: 18% auto auto 11%;
  width: 68%;
  height: 2px;
  background: rgba(83, 98, 79, 0.26);
  box-shadow:
    0 58px 0 rgba(83, 98, 79, 0.2),
    0 116px 0 rgba(83, 98, 79, 0.14);
  transform: rotate(-10deg);
}

.b2b-anchor-visual::after {
  right: 1.1rem;
  bottom: 1.1rem;
  width: 5.5rem;
  height: 5.5rem;
  background: rgba(152, 255, 152, 0.26);
  filter: blur(1px);
}

.b2b-anchor-visual span {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  color: #172014;
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fff8ec, #d1f2eb 58%, #9caf88);
  border-radius: 16px 16px 16px 5px;
}

.b2b-anchor-visual strong {
  position: relative;
  z-index: 1;
  max-width: 14ch;
  color: #242725;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 600;
  line-height: 0.96;
}

.b2b-signal-card ul {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.b2b-signal-card li {
  padding: 0.82rem 0.9rem;
  color: rgba(36, 39, 37, 0.76);
  font-weight: 800;
  line-height: 1.35;
  background: rgba(255, 248, 236, 0.62);
  border: 1px solid rgba(94, 104, 83, 0.16);
  border-radius: 16px;
}

.b2b-board-card {
  border-color: rgba(83, 98, 79, 0.26);
  background:
    radial-gradient(circle at 86% 10%, rgba(152, 255, 152, 0.24), transparent 14rem),
    linear-gradient(145deg, rgba(209, 242, 235, 0.32), rgba(247, 231, 206, 0.74));
}

.shopify-demo-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.shopify-flow-card {
  min-height: 260px;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(184, 200, 180, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0% 0%, rgba(184, 200, 180, 0.16), transparent 15rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.shopify-flow-card span {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  margin-bottom: 1rem;
  color: #000020;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan-hot), var(--magenta-hot));
  font-weight: 900;
}

.shopify-flow-card h2 {
  margin: 0 0 0.7rem;
  color: var(--white);
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.02;
}

.shopify-flow-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.shopify-store-shell {
  overflow: hidden;
  border: 1px solid rgba(184, 200, 180, 0.22);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(184, 200, 180, 0.1), rgba(184, 148, 136, 0.08)),
    rgba(0, 0, 32, 0.78);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
}

.shopify-store-shell--handoff {
  min-height: 360px;
}

.shopify-store-toolbar {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shopify-store-toolbar a {
  color: var(--cyan-hot);
  text-decoration: none;
}

.shopify-store-frame {
  display: block;
  width: 100%;
  min-height: min(1300px, calc(100svh - var(--header-height) - 7rem));
  height: 1300px;
  background: #050617;
  border: 0;
}

.shopify-store-handoff {
  display: grid;
  min-height: 320px;
  align-content: center;
  justify-items: start;
  padding: clamp(1.5rem, 5vw, 4rem);
  background:
    radial-gradient(circle at 80% 24%, rgba(184, 148, 136, 0.2), transparent 22rem),
    radial-gradient(circle at 18% 100%, rgba(184, 200, 180, 0.16), transparent 24rem);
}

.shopify-store-handoff h2 {
  max-width: 900px;
  margin: 0 0 1rem;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.98;
}

.shopify-store-handoff h2 strong {
  color: var(--cyan-hot);
}

.shopify-store-handoff p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
  line-height: 1.58;
}

.store-demo-grid,
.install-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.store-card,
.install-card {
  min-height: 280px;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
}

.store-card.featured,
.install-card.ready {
  border-color: rgba(184, 200, 180, 0.32);
  background:
    linear-gradient(145deg, rgba(184, 200, 180, 0.15), rgba(184, 148, 136, 0.08)),
    rgba(0, 0, 32, 0.62);
}

.install-card {
  display: grid;
  align-content: space-between;
  gap: 1rem;
}

.capture-install-note {
  max-width: 780px;
  padding: 1rem 1.1rem;
  color: rgba(217, 247, 255, 0.9);
  font-size: 1rem;
  font-weight: 750;
  background:
    linear-gradient(135deg, rgba(184, 200, 180, 0.14), rgba(215, 197, 157, 0.08)),
    rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(184, 200, 180, 0.22);
  border-radius: 20px;
}

.capture-main {
  display: grid;
  gap: clamp(3rem, 7vw, 6rem);
}

.capture-hero-v2 {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(300px, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  min-height: calc(100svh - var(--header-height) - 3rem);
  overflow: clip;
}

.capture-hero-v2::before,
.capture-request-section::before {
  position: absolute;
  inset: 6% 0 auto auto;
  z-index: -1;
  width: min(44vw, 540px);
  height: min(44vw, 540px);
  content: "";
  background: radial-gradient(circle, rgba(184, 200, 180, 0.18), transparent 68%);
  border-radius: 50%;
  filter: blur(10px);
}

.capture-signal-card,
.capture-form {
  border: 1px solid rgba(248, 246, 239, 0.14);
  background:
    linear-gradient(145deg, rgba(248, 246, 239, 0.12), rgba(184, 200, 180, 0.1) 54%, rgba(184, 148, 136, 0.08)),
    rgba(36, 39, 37, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(1.08);
}

.capture-signal-card {
  position: relative;
  display: grid;
  gap: 1.05rem;
  padding: clamp(1rem, 3vw, 1.6rem);
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.capture-signal-visual {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1200 / 896;
  background: rgba(23, 23, 21, 0.46);
  border: 1px solid rgba(248, 246, 239, 0.14);
  border-radius: 26px;
  box-shadow: inset 0 1px 0 rgba(248, 246, 239, 0.08);
}

.capture-signal-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.capture-signal-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(135deg, rgba(184, 200, 180, 0.24), rgba(215, 197, 157, 0.12) 45%, rgba(184, 148, 136, 0.16));
  mix-blend-mode: color;
  opacity: 0.48;
}

.capture-signal-visual::after {
  z-index: 2;
  background:
    linear-gradient(145deg, rgba(248, 246, 239, 0.14), transparent 34%),
    linear-gradient(0deg, rgba(23, 23, 21, 0.18), transparent 42%);
  mix-blend-mode: soft-light;
  opacity: 0.72;
}

.capture-signal-visual img {
  display: block;
  width: 100%;
  height: 100%;
  filter: saturate(0.58) sepia(0.16) hue-rotate(8deg) brightness(0.86) contrast(0.94);
  object-fit: cover;
}

.capture-signal-copy .card-kicker {
  color: var(--magenta-hot);
}

.capture-signal-copy h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.65rem, 3.6vw, 3.05rem);
  line-height: 1.04;
}

.capture-signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.capture-signal-grid span {
  padding: 0.85rem 0.95rem;
  color: rgba(248, 246, 239, 0.86);
  font-weight: 850;
  background:
    linear-gradient(145deg, rgba(248, 246, 239, 0.1), rgba(184, 200, 180, 0.08)),
    rgba(23, 23, 21, 0.26);
  border: 1px solid rgba(248, 246, 239, 0.13);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(248, 246, 239, 0.06);
}

.capture-signal-grid span:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.capture-request-section {
  position: relative;
  overflow: clip;
}

.capture-form {
  display: grid;
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 1.6rem);
  background:
    radial-gradient(circle at 12% 0%, rgba(248, 246, 239, 0.12), transparent 18rem),
    linear-gradient(145deg, rgba(184, 200, 180, 0.16), rgba(184, 148, 136, 0.1)),
    rgba(36, 39, 37, 0.78);
  border: 1px solid rgba(248, 246, 239, 0.14);
  border-radius: var(--radius-xl);
  box-shadow: 0 28px 80px rgba(18, 18, 16, 0.3);
}

.capture-wizard-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.capture-wizard-progress span {
  min-height: 42px;
  display: grid;
  place-items: center;
  color: rgba(248, 246, 239, 0.58);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(248, 246, 239, 0.07);
  border: 1px solid rgba(248, 246, 239, 0.14);
  border-radius: 999px;
}

.capture-wizard-progress span.active {
  color: var(--black);
  border-color: rgba(248, 246, 239, 0.48);
  background: linear-gradient(135deg, rgba(248, 246, 239, 0.96), rgba(184, 200, 180, 0.9));
  box-shadow: 0 12px 28px rgba(18, 18, 16, 0.22);
}

.capture-wizard-progress span.complete {
  color: var(--black);
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan-hot), var(--yellow));
}

.capture-fieldset {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.35rem);
  border: 1px solid rgba(248, 246, 239, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(184, 148, 136, 0.15), transparent 18rem),
    linear-gradient(145deg, rgba(248, 246, 239, 0.08), rgba(184, 200, 180, 0.04)),
    rgba(23, 23, 21, 0.34);
}

.capture-wizard-step[hidden] {
  display: none;
}

.capture-access-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(184, 200, 180, 0.16), rgba(184, 148, 136, 0.08)),
    rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(184, 200, 180, 0.24);
  border-radius: 20px;
}

.capture-access-card[hidden] {
  display: none;
}

.capture-check {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(248, 246, 239, 0.78);
  line-height: 1.4;
}

.capture-check input {
  margin-top: 0.2rem;
  accent-color: var(--cyan-hot);
}

.capture-access-card strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: 0;
}

.capture-access-card p {
  margin: 0.35rem 0 0;
  color: rgba(217, 247, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.45;
}

.capture-access-card.is-error {
  border-color: rgba(184, 148, 136, 0.38);
  background:
    linear-gradient(135deg, rgba(184, 148, 136, 0.16), rgba(0, 0, 0, 0.18)),
    rgba(255, 255, 255, 0.06);
}

.capture-access-card.has-studio-access {
  border-color: rgba(215, 197, 157, 0.38);
  box-shadow: 0 0 0 4px rgba(215, 197, 157, 0.08);
}

.capture-access-actions {
  display: grid;
  min-width: min(100%, 260px);
  gap: 0.7rem;
}

.capture-access-actions[hidden] {
  display: none;
}

.capture-code-label {
  display: grid;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capture-code-label[hidden] {
  display: none;
}

.capture-code-label input {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 950;
  letter-spacing: 0.2em;
}

.capture-fieldset legend {
  padding: 0 0.5rem;
  color: var(--yellow);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.capture-form label {
  display: grid;
  gap: 0.48rem;
  color: rgba(248, 246, 239, 0.88);
  font-size: 0.92rem;
  font-weight: 850;
}

.capture-form input,
.capture-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.85rem 1rem;
  color: var(--white);
  background: rgba(23, 23, 21, 0.52);
  border: 1px solid rgba(248, 246, 239, 0.17);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(248, 246, 239, 0.04);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.capture-form input:focus,
.capture-form textarea:focus {
  background: rgba(36, 39, 37, 0.72);
  border-color: rgba(184, 200, 180, 0.76);
  box-shadow: 0 0 0 4px rgba(184, 200, 180, 0.12);
}

.capture-form input::placeholder,
.capture-form textarea::placeholder {
  color: rgba(248, 246, 239, 0.44);
}

.capture-row,
.capture-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.capture-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.capture-tool-button {
  flex: 1 1 160px;
  min-height: 48px;
  color: var(--black);
  background: linear-gradient(135deg, rgba(248, 246, 239, 0.96), rgba(184, 200, 180, 0.88));
  border-color: rgba(248, 246, 239, 0.38);
  box-shadow: 0 14px 34px rgba(18, 18, 16, 0.22);
}

.capture-tool-button:hover {
  background: linear-gradient(135deg, var(--white), rgba(215, 197, 157, 0.92));
  border-color: rgba(215, 197, 157, 0.55);
}

.capture-check {
  display: flex !important;
  gap: 0.75rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.72) !important;
  line-height: 1.45;
}

.capture-check input {
  width: auto;
  min-height: auto;
  margin-top: 0.25rem;
  accent-color: var(--cyan-hot);
}

.capture-fine {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.capture-image-choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.75rem;
}

.capture-image-choices button {
  min-height: 126px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: rgba(248, 246, 239, 0.08);
  border: 1px solid rgba(248, 246, 239, 0.16);
  border-radius: 18px;
}

.capture-image-choices button.selected {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(215, 197, 157, 0.16);
}

.capture-image-choices img {
  width: 100%;
  height: 126px;
  object-fit: cover;
}

.capture-preview figure {
  display: grid;
  min-height: 260px;
  margin: 0;
  place-items: center;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 900;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
}

.capture-preview img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  background: var(--black);
}

.capture-status {
  display: none;
  padding: 1rem 1.1rem;
  color: rgba(217, 247, 255, 0.94);
  font-weight: 850;
  line-height: 1.45;
  background:
    linear-gradient(135deg, rgba(184, 200, 180, 0.14), rgba(215, 197, 157, 0.08)),
    rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(184, 200, 180, 0.24);
  border-radius: 20px;
}

.capture-status.show {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  justify-content: space-between;
}

.capture-status.is-error {
  color: rgba(255, 230, 238, 0.96);
  background:
    linear-gradient(135deg, rgba(184, 148, 136, 0.18), rgba(0, 0, 0, 0.2)),
    rgba(255, 255, 255, 0.075);
  border-color: rgba(184, 148, 136, 0.36);
}

.capture-status-retry {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0.7rem 1rem;
  color: var(--black);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
  background: linear-gradient(135deg, var(--cyan-hot), #c9f7bf);
  border: 1px solid rgba(184, 200, 180, 0.54);
  border-radius: 999px;
}

.capture-status-retry[hidden] {
  display: none;
}

.capture-submit {
  justify-self: start;
}

.capture-submit {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
}

.capture-submit[hidden],
.capture-result-action[hidden] {
  display: none !important;
}

.capture-submit.is-cancel-request {
  color: #fff8ec;
  background: #8f3d37;
  border-color: #8f3d37;
}

.capture-submit-spinner {
  width: 1.15rem;
  height: 1.15rem;
  border: 2px solid rgba(23, 32, 20, 0.28);
  border-top-color: #172014;
  border-radius: 50%;
  animation: capture-result-spin 0.75s linear infinite;
}

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

.capture-live-result {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
  padding: clamp(0.8rem, 2vw, 1.2rem);
  border: 1px solid rgba(94, 104, 83, 0.22);
  background: rgba(255, 248, 236, 0.72);
  border-radius: 24px;
}

.capture-form.has-capture-result .capture-wizard-progress,
.capture-form.has-capture-result [data-capture-step="product"],
.capture-form.has-capture-result [data-capture-step="photo"],
.capture-form.has-capture-result [data-capture-details-inputs] {
  display: none !important;
}

.capture-form.has-capture-result [data-capture-step="details"] {
  display: grid;
}

.capture-form.has-capture-result [data-capture-step="details"] > legend {
  display: none;
}

.capture-live-result[hidden] {
  display: none;
}

.capture-live-result:fullscreen,
.capture-live-result.is-presenting {
  position: fixed;
  z-index: 120;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  overflow: auto;
  color: #242725;
  background: #f7f2e8;
  border: 0;
  border-radius: 0;
}

.capture-live-result:fullscreen .capture-live-result-layout,
.capture-live-result.is-presenting .capture-live-result-layout {
  min-height: calc(100svh - 10rem);
}

.capture-live-result:fullscreen .capture-result-compare,
.capture-live-result.is-presenting .capture-result-compare {
  min-height: calc(100svh - 10rem);
}

.capture-live-result:fullscreen .capture-result-animate-panel,
.capture-live-result:fullscreen .capture-result-animate-panel video,
.capture-live-result:fullscreen .capture-result-animate-empty,
.capture-live-result.is-presenting .capture-result-animate-panel,
.capture-live-result.is-presenting .capture-result-animate-panel video,
.capture-live-result.is-presenting .capture-result-animate-empty {
  min-height: calc(100svh - 10rem);
}

body.capture-result-presenting {
  overflow: hidden;
}

.capture-live-result-heading h3 {
  margin: 0.3rem 0 0;
  color: #242725;
}

.capture-result-tabs {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 6px;
  padding: 4px;
  background: rgba(255, 249, 239, 0.76);
  border: 1px solid rgba(83, 98, 79, 0.16);
  border-radius: 999px;
}

.capture-result-tabs button {
  min-height: 30px;
  padding: 6px 12px;
  color: rgba(36, 39, 37, 0.68);
  background: transparent;
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
}

.capture-result-tabs button.is-active {
  color: #242725;
  background: linear-gradient(135deg, rgba(152, 255, 152, 0.46), rgba(156, 175, 136, 0.3));
  box-shadow: inset 0 0 0 1px rgba(83, 98, 79, 0.12);
}

.capture-result-tabs button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
}

.capture-live-result-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: stretch;
}

.capture-result-stage,
.capture-result-panel {
  min-width: 0;
  min-height: 100%;
}

.capture-result-panel[hidden] {
  display: none;
}

.capture-result-compare {
  --capture-result-position: 50%;
  position: relative;
  min-height: min(68vw, 620px);
  overflow: hidden;
  background: #171816;
  border: 1px solid rgba(36, 39, 37, 0.8);
  border-radius: 20px;
  touch-action: pan-y;
}

.capture-result-compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.capture-result-after {
  clip-path: inset(0 calc(100% - var(--capture-result-position)) 0 0);
}

.capture-result-divider {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: var(--capture-result-position);
  width: 2px;
  background: rgba(255, 248, 236, 0.9);
  box-shadow: 0 0 0 1px rgba(36, 39, 37, 0.18);
  transform: translateX(-1px);
  pointer-events: none;
}

.capture-result-divider::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3rem;
  height: 3rem;
  content: "";
  background: #fff8ec;
  border: 1px solid rgba(36, 39, 37, 0.16);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(36, 39, 37, 0.2);
  transform: translate(-50%, -50%);
}

.capture-result-compare input[type="range"] {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

.capture-result-animate-panel {
  min-height: min(68vw, 620px);
  overflow: hidden;
  background: #171816;
  border: 1px solid rgba(36, 39, 37, 0.8);
  border-radius: 20px;
}

.capture-result-animate-panel video {
  width: 100%;
  height: 100%;
  min-height: min(68vw, 620px);
  max-height: 78svh;
  object-fit: contain;
  background: #171816;
}

.capture-result-animate-panel video[hidden] {
  display: none;
}

.capture-result-animate-empty {
  display: grid;
  min-height: min(68vw, 620px);
  gap: 0.75rem;
  padding: 2rem;
  color: #fff8ec;
  place-content: center;
  justify-items: center;
  text-align: center;
}

.capture-result-animate-empty[hidden] {
  display: none;
}

.capture-result-animate-empty .capture-submit-spinner {
  width: 2.1rem;
  height: 2.1rem;
  border-color: rgba(255, 248, 236, 0.28);
  border-top-color: #98ff98;
}

.capture-result-animate-empty p {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 248, 236, 0.7);
}

.capture-result-actions {
  display: flex;
  min-width: 82px;
  flex-direction: column;
  gap: 0.7rem;
}

.capture-result-action {
  display: grid;
  min-height: 82px;
  padding: 0.65rem;
  color: #242725;
  background: #fff8ec;
  border: 2px solid #242725;
  border-radius: 18px;
  place-items: center;
  text-decoration: none;
}

.capture-result-action.capture-result-reset {
  color: #53624f;
  background: #f5ead7;
  border-color: #68725e;
}

.capture-result-action.capture-result-request-action.is-cancel-request {
  color: #fff8ec;
  background: #8f3d37;
  border-color: #8f3d37;
}

.capture-result-action svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.capture-result-action span {
  font-size: 0.76rem;
  font-weight: 800;
}

.capture-result-rating {
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  color: rgba(36, 39, 37, 0.72);
}

.capture-result-rating > span {
  font-weight: 800;
}

.capture-result-rating > div {
  display: flex;
  gap: 0.25rem;
}

.capture-result-rating button {
  padding: 0.1rem;
  color: rgba(83, 98, 79, 0.34);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1;
  background: transparent;
  border: 0;
}

.capture-result-rating button.is-active {
  color: #6f7c43;
}

.capture-result-rating small {
  min-height: 1.2rem;
}

.capture-camera-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  padding: clamp(1rem, 3vw, 2rem);
  place-items: center;
  background:
    radial-gradient(circle at 84% 12%, rgba(184, 148, 136, 0.24), transparent 24rem),
    radial-gradient(circle at 12% 88%, rgba(184, 200, 180, 0.22), transparent 22rem),
    rgba(0, 0, 10, 0.92);
  backdrop-filter: blur(20px) saturate(1.25);
}

.capture-camera-modal[hidden] {
  display: none;
}

.capture-cancel-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  padding: 1rem;
  place-items: center;
  background: rgba(15, 17, 15, 0.78);
  backdrop-filter: blur(14px);
}

.capture-cancel-modal[hidden] {
  display: none;
}

.capture-cancel-panel {
  display: grid;
  width: min(92vw, 560px);
  max-height: min(88svh, 720px);
  min-width: 0;
  gap: 1.1rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  overflow: auto;
  color: #242725;
  background: #fff8ec;
  border: 1px solid rgba(36, 39, 37, 0.2);
  border-radius: 24px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
}

.capture-cancel-panel h2 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.capture-cancel-panel p {
  margin: 0;
  max-width: 48ch;
  color: rgba(36, 39, 37, 0.72);
  font-size: 1rem;
  line-height: 1.55;
}

.capture-cancel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.capture-cancel-actions button {
  min-height: 46px;
  padding: 0.7rem 1rem;
  white-space: nowrap;
}

.capture-cancel-actions .capture-cancel-confirm-button {
  color: #fff8ec;
  background: #8f3d37;
  border-color: #8f3d37;
}

body.capture-cancel-open {
  overflow: hidden;
}

.capture-camera-panel {
  display: grid;
  width: min(96vw, 860px);
  max-height: min(92svh, 900px);
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.4rem);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(184, 200, 180, 0.13), rgba(184, 148, 136, 0.08)),
    rgba(0, 0, 32, 0.86);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.64);
}

.capture-camera-topbar,
.capture-camera-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
}

.capture-camera-topbar h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.capture-camera-stage {
  position: relative;
  overflow: hidden;
  min-height: min(62svh, 580px);
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
}

.capture-camera-stage video {
  width: 100%;
  height: min(62svh, 580px);
  object-fit: contain;
  background: var(--black);
}

.capture-camera-status {
  margin: 0;
  color: rgba(217, 247, 255, 0.88);
  font-size: 0.98rem;
  font-weight: 750;
}

.capture-camera-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.capture-options-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 1040px);
  gap: clamp(1rem, 2.2vw, 1.6rem);
  margin-inline: auto;
  margin-top: 0;
}

.capture-options-grid .install-card {
  min-width: 0;
  min-height: 360px;
  padding: clamp(1.25rem, 2.4vw, 1.75rem);
  border-color: rgba(248, 246, 239, 0.14);
  background:
    radial-gradient(circle at 12% 0%, rgba(248, 246, 239, 0.12), transparent 18rem),
    linear-gradient(145deg, rgba(184, 200, 180, 0.14), rgba(184, 148, 136, 0.09)),
    rgba(36, 39, 37, 0.66);
  box-shadow: var(--shadow-soft);
}

.capture-options-grid .card-kicker {
  margin-bottom: 0.7rem;
  color: var(--magenta-hot);
  font-size: 0.78rem;
}

.capture-options-grid .install-card h2 {
  max-width: 14ch;
  margin-bottom: 0.9rem;
  font-size: clamp(1.65rem, 2.45vw, 2.55rem);
  line-height: 1.08;
}

.capture-options-grid .install-card p {
  margin-bottom: 1rem;
  color: rgba(248, 246, 239, 0.76);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.62;
}

.capture-options-grid .ghost-button {
  justify-self: start;
  min-height: 42px;
  color: var(--black);
  background: rgba(248, 246, 239, 0.88);
  border-color: rgba(248, 246, 239, 0.36);
}

.capture-options-grid .ghost-button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.code-card {
  align-content: start;
}

.install-card code {
  display: block;
  padding: 1rem;
  overflow-x: auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.55;
  white-space: pre-wrap;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  padding: 2rem clamp(1rem, 5vw, 5.6rem);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(184, 200, 180, 0.1), transparent 30%, rgba(184, 148, 136, 0.08)),
    rgba(0, 0, 0, 0.42);
}

.footer-brand {
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-right: auto;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-brand strong,
.footer-brand small {
  display: block;
}

.footer-brand strong {
  font-size: 1rem;
}

.footer-brand small {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.footer-socials a {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.footer-socials svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.footer-socials a:hover {
  color: var(--white);
  border-color: rgba(184, 200, 180, 0.58);
  background: rgba(184, 200, 180, 0.1);
  transform: translateY(-2px);
}

/* Warm retail-facing palette: champagne canvas, sage structure, mint signal. */
body {
  background:
    radial-gradient(circle at 18% 10%, rgba(152, 255, 152, 0.2), transparent 28rem),
    radial-gradient(circle at 88% 22%, rgba(156, 175, 136, 0.22), transparent 34rem),
    linear-gradient(135deg, #fff8ec 0%, #f7e7ce 48%, #efe1c8 100%);
  color: #242725;
}

body::before {
  background-image:
    linear-gradient(rgba(156, 175, 136, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 175, 136, 0.08) 1px, transparent 1px);
  opacity: 0.54;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 84%);
}

body::after {
  opacity: 0.48;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.46), rgba(247, 231, 206, 0.18));
}

.site-header {
  border-bottom-color: rgba(94, 104, 83, 0.18);
  background: rgba(255, 248, 236, 0.82);
  box-shadow: 0 18px 54px rgba(88, 80, 63, 0.14);
}

.brand-symbol {
  color: #20231f;
  background: linear-gradient(135deg, #fff8ec, #d1f2eb 52%, #9caf88);
  box-shadow: 0 14px 34px rgba(88, 80, 63, 0.16);
}

.brand-lockup strong {
  color: #252720;
}

.brand-lockup small,
.site-nav {
  color: rgba(36, 39, 37, 0.62);
}

.site-nav a:hover,
.site-nav a[aria-current="true"] {
  color: #1d211c;
}

.site-nav a::after {
  background: #98ff98;
  box-shadow: 0 0 18px rgba(152, 255, 152, 0.36);
}

.mobile-menu-toggle {
  color: #252720;
  background: rgba(255, 248, 236, 0.72);
  border-color: rgba(94, 104, 83, 0.22);
}

.primary-button,
.mobile-nav-cta {
  color: #172014;
  background: linear-gradient(135deg, #efffed, #98ff98 58%, #b8e4d7);
  border-color: rgba(83, 98, 79, 0.22);
  box-shadow: 0 14px 34px rgba(83, 98, 79, 0.18);
}

.primary-button:hover,
.mobile-nav-cta:hover {
  box-shadow: 0 18px 44px rgba(83, 98, 79, 0.24);
}

.ghost-button,
.audio-toggle,
.carousel-controls button {
  color: #252720;
  background: rgba(255, 248, 236, 0.68);
  border-color: rgba(94, 104, 83, 0.22);
}

.ghost-button:hover,
.audio-toggle:hover,
.carousel-controls button:hover {
  background: rgba(152, 255, 152, 0.24);
  border-color: rgba(83, 98, 79, 0.34);
}

.hero-section,
.hero-section p,
.hero-section .eyebrow {
  color: #fff8ec;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(30, 30, 24, 0.72), rgba(76, 84, 70, 0.3) 58%, rgba(30, 30, 24, 0.5)),
    linear-gradient(0deg, rgba(30, 30, 24, 0.64), transparent 58%);
}

.eyebrow,
.card-kicker,
.eyebrow.cyan {
  color: #53624f;
}

.eyebrow.magenta,
.card-kicker {
  color: #9a7a68;
}

.eyebrow.yellow {
  color: #8a7a52;
}

h1,
h2,
h3 {
  color: #242725;
}

.hero-section h1,
.hero-section h2,
.hero-section h3,
.presentation-overlay h1,
.presentation-overlay h2,
.presentation-overlay h3,
.capture-camera-modal h1,
.capture-camera-modal h2,
.capture-camera-modal h3 {
  color: #fff8ec;
}

p,
.section-copy p,
.hero-copy {
  color: rgba(36, 39, 37, 0.72);
}

.hero-section .hero-copy {
  color: rgba(255, 248, 236, 0.84);
}

.why-section {
  background:
    radial-gradient(circle at 72% 28%, rgba(152, 255, 152, 0.16), transparent 24rem),
    radial-gradient(circle at 16% 76%, rgba(156, 175, 136, 0.18), transparent 18rem);
}

.feature-section.alt::before,
.commerce-section::before,
.proof-section::before,
.capture-hero-v2::before,
.capture-request-section::before {
  background: radial-gradient(circle, rgba(156, 175, 136, 0.24), transparent 68%);
}

.contact-card,
.store-card,
.install-card,
.feature-card,
.large-media-card,
.proof-grid article,
.assurance-grid article,
.pilot-summary article,
.shopify-example-intro,
.shopify-flow-card,
.capture-signal-card,
.capture-form,
.capture-options-grid .install-card {
  color: #242725;
  border-color: rgba(94, 104, 83, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.88), rgba(247, 231, 206, 0.62)),
    rgba(255, 248, 236, 0.72);
  box-shadow: 0 24px 70px rgba(88, 80, 63, 0.16);
}

.store-card.featured,
.install-card.ready,
.detail-card {
  background:
    linear-gradient(145deg, rgba(152, 255, 152, 0.13), rgba(247, 231, 206, 0.72)),
    rgba(255, 248, 236, 0.78);
  border-color: rgba(83, 98, 79, 0.24);
}

.feature-card h3,
.feature-card p,
.store-card h2,
.store-card h3,
.install-card h2,
.install-card h3,
.proof-grid span,
.assurance-grid p,
.pilot-summary span,
.capture-options-grid .install-card p,
.shopify-example-copy,
.shopify-flow-card p {
  color: rgba(36, 39, 37, 0.72);
}

.pilot-summary strong,
.proof-grid strong {
  color: #53624f;
}

.proof-grid article.is-live-counting strong {
  color: #242725;
}

.mini-grid span,
.capture-signal-grid span,
.capture-wizard-progress span,
.capture-fieldset,
.capture-access-card,
.capture-status,
.capture-install-note {
  color: rgba(36, 39, 37, 0.76);
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.74), rgba(247, 231, 206, 0.4)),
    rgba(255, 248, 236, 0.58);
  border-color: rgba(94, 104, 83, 0.18);
}

.dressme-view-toggle {
  background: rgba(156, 175, 136, 0.12);
  border-color: rgba(94, 104, 83, 0.2);
}

.dressme-view-toggle button {
  color: rgba(36, 39, 37, 0.64);
}

.dressme-view-toggle button[aria-pressed="true"],
.capture-wizard-progress span.active,
.capture-wizard-progress span.complete {
  color: #172014;
  background: linear-gradient(135deg, #efffed, #98ff98 62%, #d1f2eb);
  border-color: rgba(83, 98, 79, 0.18);
  box-shadow: 0 12px 28px rgba(83, 98, 79, 0.14);
}

.contact-form label,
.capture-form label,
.capture-check,
.capture-code-label {
  color: rgba(36, 39, 37, 0.78) !important;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.capture-form input,
.capture-form textarea {
  color: #242725;
  background: rgba(255, 248, 236, 0.78);
  border-color: rgba(94, 104, 83, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.shopify-handle-field {
  background: rgba(255, 248, 236, 0.78);
  border-color: rgba(94, 104, 83, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.shopify-handle-field:focus-within {
  background: rgba(255, 248, 236, 0.96);
  border-color: rgba(83, 98, 79, 0.48);
  box-shadow: 0 0 0 4px rgba(152, 255, 152, 0.2);
}

.shopify-handle-field > span {
  color: rgba(36, 39, 37, 0.46);
}

.contact-field-help {
  color: rgba(36, 39, 37, 0.54);
}

.contact-form select {
  color: #242725;
  background:
    linear-gradient(45deg, transparent 50%, rgba(36, 39, 37, 0.72) 50%) calc(100% - 1.18rem) 50% / 0.42rem 0.42rem no-repeat,
    linear-gradient(135deg, rgba(36, 39, 37, 0.72) 50%, transparent 50%) calc(100% - 0.9rem) 50% / 0.42rem 0.42rem no-repeat,
    rgba(255, 248, 236, 0.78);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.capture-form input:focus,
.capture-form textarea:focus {
  background: rgba(255, 248, 236, 0.96);
  border-color: rgba(83, 98, 79, 0.48);
  box-shadow: 0 0 0 4px rgba(152, 255, 152, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.capture-form input::placeholder,
.capture-form textarea::placeholder {
  color: rgba(36, 39, 37, 0.4);
}

.contact-status,
.capture-status {
  color: rgba(36, 39, 37, 0.82);
}

.capture-fieldset legend {
  color: #53624f;
}

.capture-access-card strong,
.capture-signal-copy h2,
.capture-options-grid .install-card h2,
.shopify-flow-card h2 {
  color: #242725;
}

.capture-access-card p,
.capture-fine {
  color: rgba(36, 39, 37, 0.66);
}

.capture-tool-button,
.capture-options-grid .ghost-button {
  color: #172014;
  background: linear-gradient(135deg, #efffed, #98ff98 58%, #d1f2eb);
  border-color: rgba(83, 98, 79, 0.22);
  box-shadow: 0 14px 34px rgba(83, 98, 79, 0.14);
}

.capture-tool-button:hover,
.capture-options-grid .ghost-button:hover {
  background: linear-gradient(135deg, #fff8ec, #98ff98);
  border-color: rgba(83, 98, 79, 0.36);
}

.capture-preview figure,
.capture-image-choices button {
  color: rgba(36, 39, 37, 0.56);
  background: rgba(255, 248, 236, 0.62);
  border-color: rgba(94, 104, 83, 0.2);
}

.capture-image-choices button.selected {
  border-color: #9caf88;
  box-shadow: 0 0 0 4px rgba(152, 255, 152, 0.22);
}

.site-footer {
  color: #242725;
  border-top-color: rgba(94, 104, 83, 0.18);
  background:
    linear-gradient(90deg, rgba(152, 255, 152, 0.1), transparent 32%, rgba(156, 175, 136, 0.12)),
    rgba(255, 248, 236, 0.86);
}

.footer-brand small {
  color: rgba(36, 39, 37, 0.56);
}

.footer-legal a {
  color: rgba(36, 39, 37, 0.68);
}

.footer-legal a:hover {
  color: #172014;
}

.footer-socials a {
  color: rgba(36, 39, 37, 0.7);
  background: rgba(255, 248, 236, 0.62);
  border-color: rgba(94, 104, 83, 0.18);
}

.footer-socials a:hover {
  color: #172014;
  border-color: rgba(83, 98, 79, 0.36);
  background: rgba(152, 255, 152, 0.22);
}

.presentation-overlay,
.capture-camera-modal,
.shopify-store-shell,
.shopify-store-handoff {
  color: var(--white);
}

.presentation-overlay p,
.capture-camera-modal p,
.shopify-store-handoff p:not(.eyebrow) {
  color: rgba(255, 248, 236, 0.74);
}

@keyframes slow-drift {
  from {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }

  to {
    transform: translate3d(1.5%, 1%, 0) scale(1.04);
  }
}

@keyframes scan {
  from {
    transform: translateY(-38svh);
    opacity: 0;
  }

  12%,
  72% {
    opacity: 1;
  }

  to {
    transform: translateY(72svh);
    opacity: 0;
  }
}

@keyframes cue {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  75%,
  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

@keyframes shimmer {
  from {
    transform: translateX(-28%);
  }

  to {
    transform: translateX(28%);
  }
}

@media (min-width: 1181px) {
  #dressme,
  #animateme,
  #realiseme {
    grid-template-columns: 1fr;
    align-items: start;
  }

  #dressme .section-copy,
  #animateme .section-copy,
  #realiseme .section-copy {
    max-width: 820px;
  }

  #dressme .feature-carousel,
  #animateme .feature-carousel,
  #realiseme .feature-carousel {
    width: 100%;
  }

  #dressme .carousel-controls,
  #animateme .carousel-controls,
  #realiseme .carousel-controls,
  #dressme .carousel-dots,
  #animateme .carousel-dots,
  #realiseme .carousel-dots {
    display: none;
  }

  #dressme .feature-track,
  #animateme .feature-track,
  #realiseme .feature-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(1rem, 1.8vw, 1.4rem);
    overflow: visible;
    padding: 0;
    scroll-padding-inline: 0;
    scroll-snap-type: none;
    scrollbar-width: none;
    overscroll-behavior-x: auto;
  }

  #dressme .feature-card,
  #animateme .feature-card,
  #realiseme .feature-card {
    min-height: 0;
    flex: initial;
    scroll-snap-align: none;
  }

  #dressme .compare-frame,
  #dressme .dressme-input-view,
  #animateme .compare-frame,
  #realiseme .compare-frame {
    min-height: clamp(320px, 35vw, 460px);
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.1rem;
  }

  :root {
    --header-height: 116px;
  }

  .hero-section,
  .why-section,
  .feature-section,
  .split-feature,
  .commerce-section,
  .pilot-section,
  .about-section,
  .subpage-hero,
  .capture-hero-v2 {
    grid-template-columns: 1fr;
  }

  .carousel-controls {
    position: static;
    justify-content: flex-end;
    margin-bottom: 0.75rem;
  }

  .proof-grid,
  .assurance-grid,
  .store-demo-grid,
  .install-grid,
  .b2b-path-grid,
  .b2b-scenario-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shopify-example-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .shopify-example-actions {
    justify-content: flex-start;
  }

  .capture-form {
    max-width: none;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 0.8rem 1rem;
  }

  .mobile-menu-toggle {
    display: grid;
  }

  .brand-lockup {
    gap: 0.62rem;
    min-width: 0;
  }

  .brand-lockup small {
    display: none;
  }

  .brand-lockup strong {
    overflow: hidden;
    font-size: 0.98rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.2rem;
    max-height: calc(100svh - var(--header-height) - 1.5rem);
    padding: 0.65rem;
    overflow-y: auto;
    color: rgba(255, 255, 255, 0.82);
    background:
      linear-gradient(135deg, rgba(184, 200, 180, 0.12), transparent 34%),
      linear-gradient(225deg, rgba(184, 148, 136, 0.12), transparent 32%),
      rgba(0, 0, 20, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.52);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-header.is-mobile-menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.82rem 0.95rem;
    border-radius: 14px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover {
    background: rgba(184, 200, 180, 0.1);
  }

  .site-nav a[aria-current="true"]:not(.mobile-nav-direct):not(.mobile-nav-cta) {
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
  }

  .mobile-nav-direct,
  .mobile-nav-cta {
    display: flex;
    justify-content: center;
    margin-top: 0.25rem;
    font-weight: 900;
  }

  .mobile-nav-direct {
    color: var(--cyan-hot);
    border: 1px solid rgba(184, 200, 180, 0.28);
    background: rgba(184, 200, 180, 0.08);
  }

  .mobile-nav-cta {
    color: var(--black);
    background: linear-gradient(135deg, var(--cyan-hot), var(--cyan));
  }

  .header-actions {
    display: none;
  }

  .trifit-launcher {
    right: 0.75rem;
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    left: 0.75rem;
    justify-content: stretch;
    padding: 0.5rem;
    border-radius: 20px;
  }

  .trifit-launcher-copy {
    display: none;
  }

  .trifit-launcher .primary-button {
    width: 100%;
  }

  .brand-symbol {
    width: 38px;
    height: 38px;
    border-radius: 14px 14px 14px 4px;
  }

  .snap-section {
    min-height: auto;
    padding: calc(var(--header-height) + 2rem) 1rem 3.5rem;
  }

  .hero-section {
    min-height: 100svh;
    align-content: end;
  }

  h1,
  h2 {
    letter-spacing: 0;
  }

  .hero-actions {
    align-items: stretch;
  }

  .pilot-journey {
    position: relative;
    gap: 0.7rem;
  }

  .pilot-journey::before {
    position: absolute;
    top: 2.5rem;
    bottom: 2.5rem;
    left: 2.28rem;
    z-index: 0;
    width: 2px;
    content: "";
    background: linear-gradient(180deg, rgba(255, 248, 236, 0.3), rgba(152, 255, 152, 0.92));
  }

  .journey-card {
    position: relative;
    z-index: 1;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.85rem;
    padding: 1rem;
  }

  .journey-number {
    width: 42px;
    height: 42px;
    font-size: 0.85rem;
    border-radius: 14px 14px 14px 4px;
  }

  .shopify-handle-field {
    grid-template-columns: 1fr;
  }

  .shopify-handle-field > span {
    padding: 0.68rem 0.82rem 0;
    font-size: 0.7rem;
  }

  .contact-form .shopify-handle-field input {
    padding-top: 0.35rem;
  }

  .contact-form .compact {
    grid-template-columns: 1fr;
  }

  .contact-form .compact > * {
    white-space: normal;
  }

  .hero-actions a,
  .hero-actions button {
    flex: 1 1 100%;
  }

  .hero-video-fallback {
    background:
      linear-gradient(110deg, rgba(0, 0, 0, 0.68), rgba(0, 20, 46, 0.5)),
      url("https://velox-studio-shopify-cpbbbbhkdhctb4hd.ukwest-01.azurewebsites.net/landing-assets/media/velox-hero-mobile-poster-ccc8e7ea61.jpg") center / cover;
  }

  .scroll-cue {
    display: none;
  }

  .feature-track {
    padding-right: 1rem;
  }

  .feature-card {
    flex-basis: 86vw;
    min-height: 500px;
    border-radius: 24px;
  }

  .compare-frame,
  .video-placeholder {
    min-height: 350px;
  }

  .large-media-card {
    min-height: 390px;
  }

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

  .visual-story-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: auto;
  }

  .visual-story-card,
  .commerce-visual {
    aspect-ratio: 75 / 56;
  }

  .commerce-card .commerce-visual {
    aspect-ratio: 1600 / 924;
  }

  .visual-story-card-featured {
    grid-row: auto;
  }

  .mini-grid,
  .assurance-grid,
  .proof-grid,
  .store-demo-grid,
  .install-grid,
  .b2b-path-grid,
  .b2b-scenario-board {
    grid-template-columns: 1fr;
  }

  .b2b-anchor-visual {
    min-height: 260px;
  }

  .proof-grid article {
    min-height: 170px;
  }

  .capture-main {
    gap: 3rem;
  }

  .capture-hero-v2 {
    min-height: auto;
    padding-top: 1rem;
  }

  .capture-signal-grid,
  .contact-row,
  .capture-row,
  .capture-preview {
    grid-template-columns: 1fr;
  }

  .capture-wizard-progress {
    grid-template-columns: 1fr;
  }

  .capture-access-card {
    align-items: stretch;
    flex-direction: column;
  }

  .capture-signal-visual {
    min-height: 220px;
  }

  .capture-form {
    padding: 0.8rem;
    border-radius: 24px;
  }

  .capture-fieldset {
    padding: 1rem;
    border-radius: 20px;
  }

  .capture-preview figure {
    min-height: 220px;
  }

  .capture-preview img {
    height: 260px;
  }

  .capture-submit {
    justify-self: stretch;
  }

  .capture-status.show {
    align-items: stretch;
    flex-direction: column;
  }

  .capture-status-retry {
    width: 100%;
  }

  .capture-live-result-layout {
    grid-template-columns: minmax(0, 1fr) 68px;
  }

  .capture-result-compare {
    min-height: 68svh;
  }

  .capture-result-animate-panel,
  .capture-result-animate-panel video,
  .capture-result-animate-empty {
    min-height: 68svh;
  }

  .capture-result-actions {
    min-width: 68px;
  }

  .capture-result-action {
    min-height: 68px;
    padding: 0.45rem;
  }

  .capture-camera-modal {
    padding: 0.75rem;
  }

  .capture-camera-topbar,
  .capture-camera-actions {
    align-items: stretch;
  }

  .capture-camera-actions button {
    flex: 1 1 100%;
  }

  .capture-camera-stage {
    min-height: min(58svh, 520px);
  }

  .capture-camera-stage video {
    height: min(58svh, 520px);
  }

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

  .footer-legal {
    margin-right: 0;
  }

  .footer-socials {
    justify-content: flex-start;
  }

  .subpage-main {
    width: min(100% - 2rem, 1180px);
    padding-top: calc(var(--header-height) + 2rem);
  }

  .shopify-example-main {
    width: min(100% - 1rem, 1180px);
  }

  .shopify-example-intro,
  .shopify-store-shell {
    border-radius: 24px;
  }

  .shopify-example-intro,
  .shopify-demo-flow {
    grid-template-columns: 1fr;
  }

  .shopify-example-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .shopify-demo-flow {
    display: grid;
  }

  .shopify-flow-card {
    min-height: auto;
  }

  .shopify-example-actions,
  .shopify-example-actions a {
    width: 100%;
  }

  .shopify-store-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .shopify-store-frame {
    height: 980px;
  }

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

  .presentation-overlay {
    gap: 0.7rem;
    padding: 0.75rem;
  }

  .presentation-topbar {
    align-items: flex-start;
  }

  .presentation-heading small {
    max-width: 72vw;
  }

  .presentation-card {
    width: 100%;
  }

  .presentation-card .compare-frame {
    height: min(70svh, 660px);
    border-radius: 24px;
  }

  .presentation-card .compare-after img,
  .presentation-card .compare-after video {
    width: calc(100vw - 1.5rem);
    min-width: calc(100vw - 1.5rem);
  }

  .presentation-footer {
    gap: 0.55rem;
  }

  .presentation-footer p {
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .capture-cancel-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .capture-cancel-actions button {
    width: 100%;
  }

  .capture-live-result {
    margin-inline: -0.45rem;
    padding: 0.6rem;
    border-radius: 18px;
  }

  .capture-result-tabs {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .capture-result-tabs button {
    width: 100%;
    padding-inline: 0.65rem;
  }

  .capture-live-result-layout {
    grid-template-columns: minmax(0, 1fr) 58px;
    gap: 0.5rem;
  }

  .capture-result-actions {
    min-width: 58px;
    gap: 0.5rem;
  }

  .capture-result-action {
    min-height: 58px;
    padding: 0.35rem;
    border-radius: 14px;
  }

  .capture-result-action svg {
    width: 1.35rem;
    height: 1.35rem;
  }

  .capture-result-action span {
    font-size: 0.66rem;
  }
}

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

/* Keep the parent Velox brand visible beside Tri-Fit and route it home. */
.header-brand-cluster {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  min-width: max-content;
}

.velox-home-link {
  display: inline-flex;
  align-items: center;
  width: clamp(108px, 8.5vw, 128px);
  padding-right: 0.75rem;
  border-right: 1px solid rgba(94, 104, 83, 0.24);
  flex: 0 0 auto;
}

.velox-home-link picture,
.velox-home-logo {
  display: block;
  width: 100%;
}

.velox-home-logo {
  height: auto;
}

.velox-home-link:hover {
  opacity: 0.72;
}

.velox-home-link:focus-visible {
  outline: 2px solid #5e6853;
  outline-offset: 5px;
  border-radius: 3px;
}

@media (max-width: 760px) {
  .header-brand-cluster {
    gap: 0.5rem;
    min-width: 0;
  }

  .velox-home-link {
    width: 39px;
    height: 38px;
    padding-right: 0.55rem;
  }

  .velox-home-link picture,
  .velox-home-logo {
    width: 29px;
    height: 34px;
  }

  .velox-home-logo {
    object-fit: contain;
  }
}
