:root {
  --black: #000000;
  --ink: #050812;
  --navy: #000020;
  --navy-2: #00142e;
  --slate: #575756;
  --white: #ffffff;
  --mist: #d9f7ff;
  --cyan: #009fe3;
  --cyan-hot: #11d2ff;
  --magenta: #e6007e;
  --yellow: #ffed00;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-strong: rgba(255, 255, 255, 0.14);
  --line: rgba(17, 210, 255, 0.22);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --header-height: 78px;
  color-scheme: dark;
  font-family: "Quicksand", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 88% 6%, rgba(230, 0, 126, 0.22), transparent 28rem),
    radial-gradient(circle at 12% 12%, rgba(17, 210, 255, 0.24), transparent 24rem),
    linear-gradient(135deg, var(--black), var(--navy) 45%, #02040c);
  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(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 86%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.35;
  background:
    repeating-linear-gradient(115deg, transparent 0 18px, rgba(17, 210, 255, 0.07) 18px 19px, transparent 19px 46px),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.56));
}

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

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

button,
input,
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(255, 255, 255, 0.11);
  background: rgba(0, 0, 20, 0.66);
  backdrop-filter: blur(20px) saturate(1.35);
}

.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 {
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  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 {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 170ms ease, opacity 170ms ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) 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: translateY(-6px) 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(--cyan-hot), var(--cyan) 45%, var(--magenta));
  border-radius: 16px 16px 16px 5px;
  box-shadow: 0 0 34px rgba(17, 210, 255, 0.35);
}

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

.brand-lockup strong {
  font-size: 1.03rem;
  letter-spacing: 0.01em;
}

.brand-lockup small {
  margin-top: 0.18rem;
  color: rgba(255, 255, 255, 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(255, 255, 255, 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;
}

.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(--cyan-hot), var(--cyan));
  box-shadow: 0 12px 42px rgba(17, 210, 255, 0.22);
}

.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(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.18);
}

.ghost-button:hover,
.audio-toggle:hover,
.carousel-controls button:hover {
  border-color: rgba(17, 210, 255, 0.72);
  background: rgba(17, 210, 255, 0.1);
}

.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 {
  isolation: isolate;
}

.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(0, 0, 0, 0.72), rgba(0, 20, 46, 0.58)),
    url("https://v3lox-studio-media-b7hahug8f7faedhf.z03.azurefd.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(17, 210, 255, 0.2), transparent 18rem),
    radial-gradient(circle at 78% 55%, rgba(230, 0, 126, 0.18), 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(17, 210, 255, 0.72), transparent);
  box-shadow: 0 0 26px rgba(17, 210, 255, 0.5);
  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(0, 0, 0, 0.82), rgba(0, 0, 32, 0.52) 56%, rgba(0, 0, 0, 0.72)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), 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-size: clamp(0.76rem, 1.3vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  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 {
  margin-bottom: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

h1 {
  max-width: 920px;
  font-size: clamp(3.1rem, 9vw, 8.4rem);
}

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(255, 255, 255, 0.72);
  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(255, 255, 255, 0.78);
  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(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 32, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(1.25);
}

.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(230, 0, 126, 0.18), 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(17, 210, 255, 0.12), transparent 21rem),
    radial-gradient(circle at 16% 72%, rgba(255, 213, 89, 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(255, 255, 255, 0.16);
  border-radius: clamp(22px, 4vw, 36px);
  background: var(--black);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.62);
}

.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(17, 210, 255, 0.4);
  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(17, 210, 255, 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(17, 210, 255, 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(17, 210, 255, 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-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(230, 0, 126, 0.28), transparent 25rem),
    radial-gradient(circle at 15% 88%, rgba(17, 210, 255, 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(17, 210, 255, 0.25), rgba(230, 0, 126, 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(17, 210, 255, 0.18), rgba(0, 0, 0, 0.36));
}

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

.realise-video {
  background: linear-gradient(135deg, rgba(255, 237, 0, 0.12), rgba(0, 159, 227, 0.16));
}

.detail-card {
  align-content: end;
  min-height: 590px;
  padding: 1.2rem;
  background:
    linear-gradient(145deg, rgba(17, 210, 255, 0.18), rgba(230, 0, 126, 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;
}

.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(0, 0, 32, 0.22)),
    radial-gradient(circle at 18% 18%, rgba(17, 210, 255, 0.18), transparent 34%),
    radial-gradient(circle at 86% 86%, rgba(230, 0, 126, 0.16), transparent 34%);
}

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

.commerce-card {
  box-shadow: 0 26px 90px rgba(230, 0, 126, 0.13), 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(17, 210, 255, 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(17, 210, 255, 0.34), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(230, 0, 126, 0.2), 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.06em;
  line-height: 0.85;
}

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

.proof-grid article.is-live-loaded strong {
  transform-origin: left center;
  text-shadow: 0 0 30px rgba(17, 210, 255, 0.38);
  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(17, 210, 255, 0.72);
  box-shadow: 0 0 0 1px rgba(17, 210, 255, 0.22), 0 20px 70px rgba(17, 210, 255, 0.18);
  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(17, 210, 255, 0.92);
}

.live-signal-chart::before {
  position: absolute;
  top: 0.15rem;
  right: 0;
  color: rgba(255, 255, 255, 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(255, 255, 255, 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(17, 210, 255, 0.64));
}

.live-signal-chart .live-signal-line-flow {
  fill: none;
  stroke: rgba(255, 255, 255, 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(17, 210, 255, 0.86));
  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(17, 210, 255, 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(17, 210, 255, 0.3);
    box-shadow: 0 0 0 1px rgba(17, 210, 255, 0.08), 0 16px 46px rgba(17, 210, 255, 0.08);
  }

  70% {
    border-color: rgba(17, 210, 255, 0.62);
    box-shadow: 0 0 0 1px rgba(17, 210, 255, 0.2), 0 24px 78px rgba(17, 210, 255, 0.2);
  }

  82% {
    border-color: rgba(230, 0, 126, 0.48);
    box-shadow: 0 0 0 1px rgba(230, 0, 126, 0.16), 0 20px 64px rgba(230, 0, 126, 0.15);
  }
}

@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 30px rgba(17, 210, 255, 0.38);
  }

  68% {
    transform: scale(1.045);
    text-shadow: 0 0 42px rgba(17, 210, 255, 0.72), 0 0 18px rgba(230, 0, 126, 0.26);
  }

  74% {
    transform: scale(0.992);
    text-shadow: 0 0 25px rgba(17, 210, 255, 0.34);
  }

  82% {
    transform: scale(1.026);
    text-shadow: 0 0 38px rgba(17, 210, 255, 0.6), 0 0 14px rgba(230, 0, 126, 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(280px, 460px);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.contact-card {
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-xl);
}

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

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

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

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 0.66rem 0.82rem;
  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 textarea {
  min-height: 86px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(0, 0, 0, 0.38);
  border-color: rgba(17, 210, 255, 0.76);
  box-shadow: 0 0 0 4px rgba(17, 210, 255, 0.12);
}

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

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

.contact-form .compact {
  margin-top: 0.3rem;
}

.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(17, 210, 255, 0.14), rgba(255, 237, 0, 0.08)),
    rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(17, 210, 255, 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(230, 0, 126, 0.18), rgba(0, 0, 0, 0.2)),
    rgba(255, 255, 255, 0.075);
  border-color: rgba(230, 0, 126, 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.8rem, 7vw, 6.6rem);
}

.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(17, 210, 255, 0.18);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 0%, rgba(17, 210, 255, 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.4rem, 5vw, 5.2rem);
  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;
}

.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(17, 210, 255, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0% 0%, rgba(17, 210, 255, 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(17, 210, 255, 0.22);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(17, 210, 255, 0.1), rgba(230, 0, 126, 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(230, 0, 126, 0.2), transparent 22rem),
    radial-gradient(circle at 18% 100%, rgba(17, 210, 255, 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(17, 210, 255, 0.32);
  background:
    linear-gradient(145deg, rgba(17, 210, 255, 0.15), rgba(230, 0, 126, 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(17, 210, 255, 0.14), rgba(255, 237, 0, 0.08)),
    rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(17, 210, 255, 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);
}

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

.capture-signal-card,
.capture-form {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(145deg, rgba(17, 210, 255, 0.13), rgba(230, 0, 126, 0.08)),
    rgba(0, 0, 32, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(1.3);
}

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

.capture-signal-visual {
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1200 / 896;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
}

.capture-signal-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capture-signal-copy h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 4vw, 3.4rem);
}

.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(255, 255, 255, 0.84);
  font-weight: 850;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

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

.capture-form {
  display: grid;
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 1.6rem);
  border-radius: var(--radius-xl);
}

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

.capture-wizard-progress span {
  min-height: 42px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
}

.capture-wizard-progress span.active {
  color: rgba(217, 247, 255, 0.92);
  border-color: rgba(17, 210, 255, 0.36);
  background:
    linear-gradient(135deg, rgba(17, 210, 255, 0.18), rgba(230, 0, 126, 0.08)),
    rgba(255, 255, 255, 0.08);
}

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

.capture-fieldset {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.35rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(230, 0, 126, 0.12), transparent 18rem),
    rgba(255, 255, 255, 0.055);
}

.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(17, 210, 255, 0.16), rgba(230, 0, 126, 0.08)),
    rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(17, 210, 255, 0.24);
  border-radius: 20px;
}

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

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

.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(230, 0, 126, 0.38);
  background:
    linear-gradient(135deg, rgba(230, 0, 126, 0.16), rgba(0, 0, 0, 0.18)),
    rgba(255, 255, 255, 0.06);
}

.capture-access-card.has-studio-access {
  border-color: rgba(255, 237, 0, 0.38);
  box-shadow: 0 0 0 4px rgba(255, 237, 0, 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(--cyan-hot);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.capture-form label {
  display: grid;
  gap: 0.48rem;
  color: rgba(255, 255, 255, 0.86);
  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(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;
}

.capture-form input:focus,
.capture-form textarea:focus {
  background: rgba(0, 0, 0, 0.38);
  border-color: rgba(17, 210, 255, 0.76);
  box-shadow: 0 0 0 4px rgba(17, 210, 255, 0.12);
}

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

.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;
}

.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(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
}

.capture-image-choices button.selected {
  border-color: var(--cyan-hot);
  box-shadow: 0 0 0 4px rgba(17, 210, 255, 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(17, 210, 255, 0.14), rgba(255, 237, 0, 0.08)),
    rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(17, 210, 255, 0.24);
  border-radius: 20px;
}

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

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

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

.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(230, 0, 126, 0.24), transparent 24rem),
    radial-gradient(circle at 12% 88%, rgba(17, 210, 255, 0.22), transparent 22rem),
    rgba(0, 0, 10, 0.92);
  backdrop-filter: blur(20px) saturate(1.25);
}

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

.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(17, 210, 255, 0.13), rgba(230, 0, 126, 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 {
  margin-top: 0;
}

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

.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(17, 210, 255, 0.1), transparent 30%, rgba(230, 0, 126, 0.08)),
    rgba(0, 0, 0, 0.42);
}

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

.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(17, 210, 255, 0.58);
  background: rgba(17, 210, 255, 0.1);
  transform: translateY(-2px);
}

@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 (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,
  .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,
  .store-demo-grid,
  .install-grid {
    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(17, 210, 255, 0.12), transparent 34%),
      linear-gradient(225deg, rgba(230, 0, 126, 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,
  .site-nav a[aria-current="true"] {
    background: rgba(17, 210, 255, 0.1);
  }

  .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(17, 210, 255, 0.28);
    background: rgba(17, 210, 255, 0.08);
  }

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

  .header-actions {
    display: none;
  }

  .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.06em;
  }

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

  .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://v3lox-studio-media-b7hahug8f7faedhf.z03.azurefd.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;
  }

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

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

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

  .mini-grid,
  .proof-grid,
  .store-demo-grid,
  .install-grid {
    grid-template-columns: 1fr;
  }

  .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-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-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 (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
