:root {
  color-scheme: light;
  --bg: #f6f1e8;
  --paper: #fffaf0;
  --ink: #151516;
  --muted: #65625d;
  --line: #d8cab8;
  --teal: #2f7d74;
  --amber: #d5a037;
  --coral: #d96a4f;
  --blue: #45658a;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(21, 21, 22, 0.16);
  --soft-shadow: 0 18px 44px rgba(21, 21, 22, 0.1);
  --motion-progress: 0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(21, 21, 22, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper), var(--bg) 46%, #ece7dc);
  background-size: 58px 58px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(47, 125, 116, 0.12), transparent 34%),
    linear-gradient(315deg, rgba(217, 106, 79, 0.1), transparent 36%);
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.02; letter-spacing: 0; }
h1 { max-width: 15ch; margin-bottom: 22px; font-size: clamp(3rem, 5.4vw, 5.3rem); }
h2 { max-width: 13ch; margin-bottom: 16px; font-size: clamp(2rem, 5vw, 4.5rem); }
h3 { margin-bottom: 10px; font-size: clamp(1.15rem, 2vw, 1.5rem); }
p { color: var(--muted); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: normal;
  overflow-wrap: anywhere;
  border: 0;
}

.motion-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(var(--motion-progress) * 100%);
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--coral));
  z-index: 100;
}

.entrance-sequence {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  display: grid;
  width: min(360px, calc(100vw - 32px));
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(110, 231, 249, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(110, 231, 249, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 50% 45%, rgba(110, 231, 249, 0.18), transparent 28%),
    #030407;
  background-size: 54px 54px, 54px 54px, auto, auto;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.4);
  animation: entranceFade 760ms ease 900ms forwards;
  overflow: hidden;
}

.entrance-sequence__grid {
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.entrance-sequence__grid span,
.entrance-sequence__grid em {
  color: rgba(255, 250, 240, 0.66);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.entrance-sequence__grid strong {
  max-width: 100%;
  color: var(--paper);
  font-size: clamp(1.25rem, 2.6vw, 1.9rem);
  line-height: 0.94;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.entrance-sequence__grid::after {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6ee7f9, #f7d26a, #d96a4f);
  transform-origin: left;
  animation: entranceLoad 1100ms ease forwards;
}

.entrance-complete .entrance-sequence {
  display: none;
}

.studio-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  display: none;
  width: 74px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.54);
  border-radius: 999px;
  color: #030407;
  background: rgba(110, 231, 249, 0.88);
  pointer-events: none;
  transform: translate3d(var(--cursor-x, -120px), var(--cursor-y, -120px), 0) translate(-50%, -50%) scale(var(--cursor-scale, 0.72));
  transition: width 180ms ease, background 180ms ease, opacity 180ms ease;
  opacity: 0;
  mix-blend-mode: screen;
}

.studio-cursor span {
  font-size: 0.64rem;
  font-weight: 950;
  text-transform: uppercase;
}

body.cursor-active .studio-cursor {
  opacity: 1;
}

body.cursor-hover .studio-cursor {
  width: 92px;
  background: rgba(247, 210, 106, 0.9);
  mix-blend-mode: normal;
}

@media (pointer: fine) {
  .studio-cursor {
    display: grid;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 22px;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 240, 0.84);
  border-bottom: 1px solid rgba(216, 202, 184, 0.78);
}

.brand, .site-nav, .hero-actions, .visual-composition__meta, .industry-tabs {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 38px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 8px;
  color: var(--paper);
  background: var(--ink);
  box-shadow: var(--soft-shadow);
  font-size: 0.78rem;
}

.site-nav {
  gap: 6px;
  color: rgba(21, 21, 22, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a, .industry-tabs button {
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.industry-tabs button:hover,
.industry-tabs button:focus-visible {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.site-nav .nav-cta {
  color: var(--paper);
  background: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.nav-toggle span[aria-hidden="true"] {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px 34px;
}

.section-band {
  margin-top: 18px;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(216, 202, 184, 0.92);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.82);
  box-shadow: var(--soft-shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  min-height: calc(100svh - 112px);
  padding-bottom: clamp(34px, 5vw, 70px);
  overflow: hidden;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 44rem;
  margin-bottom: 24px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover, .button:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--soft-shadow);
}

.button.primary {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.66);
}

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

.hero-proof div, .motion-card, .panel, .preview-card, .contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--soft-shadow);
}

.hero-proof div {
  padding: 14px;
}

.hero-proof dt {
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 950;
}

.hero-proof dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-demo {
  perspective: 1200px;
}

.showcase-object {
  position: relative;
  min-height: 460px;
  transform-style: preserve-3d;
  transition: transform 220ms ease;
}

.showcase-object__screen {
  position: absolute;
  inset: 36px 44px 70px 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 34px 90px rgba(21, 21, 22, 0.28);
  transform: rotateY(-13deg) rotateX(7deg) translateZ(32px);
}

.mini-nav, .mini-grid {
  display: grid;
  gap: 10px;
}

.mini-nav {
  grid-template-columns: 0.35fr 1fr 0.5fr;
  margin-bottom: 22px;
}

.mini-nav span,
.mini-grid span,
.mini-hero,
.mini-wave {
  display: block;
  border-radius: 8px;
  background: rgba(21, 21, 22, 0.16);
}

.mini-nav span { height: 14px; }
.mini-hero {
  height: 150px;
  margin-bottom: 18px;
  background:
    linear-gradient(90deg, var(--ink) 0 42%, transparent 42%),
    linear-gradient(135deg, rgba(213, 160, 55, 0.7), rgba(47, 125, 116, 0.28));
}

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

.mini-grid span { height: 76px; }
.mini-wave {
  height: 58px;
  margin-top: 18px;
  background: linear-gradient(90deg, rgba(217, 106, 79, 0.34), rgba(69, 101, 138, 0.32));
}

.showcase-object__card {
  position: absolute;
  display: grid;
  min-width: 92px;
  min-height: 92px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(21, 21, 22, 0.9);
  box-shadow: var(--shadow);
  font-weight: 950;
}

.showcase-object__card--seo { top: 42px; right: 8px; transform: translateZ(90px) rotate(5deg); }
.showcase-object__card--motion { left: 2px; bottom: 126px; background: var(--teal); transform: translateZ(70px) rotate(-6deg); }
.showcase-object__card--cta { right: 38px; bottom: 42px; background: var(--coral); transform: translateZ(110px) rotate(8deg); }

.demo-caption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: -38px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.86);
  box-shadow: var(--soft-shadow);
  font-size: 0.9rem;
}

.demo-caption strong { color: var(--teal); }

.capability-strip,
.content-grid,
.lookbook-grid,
.website-type-grid,
.consultation-path,
.pattern-grid,
.offer-grid,
.process-list,
.faq-grid {
  display: grid;
  gap: 14px;
}

.capability-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.capability-strip article,
.website-type-grid article,
.lookbook-card,
.service-tile,
.panel,
.consultation-path article,
.pattern-card,
.offer-card,
.process-list li,
.faq-grid details {
  padding: 20px;
}

.capability-strip span,
.lookbook-card span,
.service-tile span,
.consultation-path span,
.pattern-card span,
.offer-card span,
.process-list span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.reference-patterns {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(255, 255, 255, 0.68)),
    linear-gradient(135deg, rgba(69, 101, 138, 0.12), rgba(213, 160, 55, 0.14));
}

.pattern-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pattern-card {
  min-height: 230px;
  position: relative;
  overflow: hidden;
}

.pattern-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 72px;
  aspect-ratio: 1;
  border: 1px solid rgba(21, 21, 22, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(47, 125, 116, 0.18), rgba(217, 106, 79, 0.16)),
    repeating-linear-gradient(90deg, transparent 0 10px, rgba(21, 21, 22, 0.08) 10px 11px);
}

.visual-signature {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(47, 125, 116, 0.78), rgba(21, 21, 22, 0.96) 42%, rgba(69, 101, 138, 0.88));
}

.visual-signature p { color: rgba(255, 250, 240, 0.76); }
.visual-signature .eyebrow { color: var(--amber); }

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

.service-tile {
  min-height: 190px;
  background: rgba(255, 250, 240, 0.1);
  border-color: rgba(255, 250, 240, 0.22);
}

.service-tile h3 { color: var(--paper); }

.animation-lab {
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(239, 235, 225, 0.88));
}

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

.lookbook-card {
  min-height: 230px;
  overflow: hidden;
}

.lookbook-card::before {
  content: "";
  display: block;
  height: 86px;
  margin: -4px -4px 16px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(21, 21, 22, 0.92) 0 35%, rgba(47, 125, 116, 0.72) 35% 68%, rgba(213, 160, 55, 0.74) 68%),
    linear-gradient(135deg, rgba(217, 106, 79, 0.32), transparent);
}

.motion-demo-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
}

.motion-demo-panel p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 250, 240, 0.82);
}

.loading-demo {
  display: inline-flex;
  gap: 8px;
}

.loading-demo span {
  width: 14px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--amber);
  animation: pulse 900ms ease-in-out infinite;
}

.loading-demo span:nth-child(2) { animation-delay: 120ms; background: var(--teal); }
.loading-demo span:nth-child(3) { animation-delay: 240ms; background: var(--coral); }

.visual-composition__shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.visual-composition__meta {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.visual-composition__meta span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.52);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-hero-scene {
  display: grid;
  min-height: 360px;
  place-items: center;
  border: 1px solid rgba(21, 21, 22, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(21, 21, 22, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 21, 22, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, rgba(47, 125, 116, 0.14), rgba(213, 160, 55, 0.16));
  background-size: 44px 44px, 44px 44px, auto;
  overflow: hidden;
}

.floating-stack {
  position: relative;
  width: min(72vw, 360px);
  height: 260px;
  transform: rotateX(58deg) rotateZ(-24deg);
  transform-style: preserve-3d;
}

.stack-layer {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stack-layer--one { background: var(--ink); transform: translateZ(0); }
.stack-layer--two { background: var(--teal); transform: translate(24px, -22px) translateZ(48px); }
.stack-layer--three { background: var(--amber); transform: translate(48px, -44px) translateZ(96px); }

.stack-label {
  position: absolute;
  left: 44px;
  bottom: 8px;
  z-index: 4;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--paper);
  background: rgba(21, 21, 22, 0.88);
  transform: rotateZ(24deg) rotateX(-58deg);
  font-size: 0.78rem;
  font-weight: 900;
}

.component-showroom {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #090909, #17202b 48%, #06080d);
  background-size: 48px 48px, 48px 48px, auto;
  border-color: rgba(255, 250, 240, 0.16);
}

.component-showroom p {
  color: rgba(255, 250, 240, 0.74);
}

.component-showroom__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.component-tile {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 210px;
  padding: 14px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}

.component-tile:hover,
.component-tile:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(110, 231, 249, 0.6);
}

.component-tile span {
  color: rgba(255, 250, 240, 0.62);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.component-tile strong {
  position: relative;
  z-index: 2;
  max-width: 10ch;
  font-size: 1.1rem;
  line-height: 1;
}

.component-tile i {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: block;
  width: 58%;
  height: 42%;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(110, 231, 249, 0.78), rgba(247, 210, 106, 0.72));
}

.component-tile--pricing i { background: repeating-linear-gradient(90deg, rgba(255, 250, 240, 0.8) 0 30%, rgba(110, 231, 249, 0.65) 30% 62%, rgba(247, 210, 106, 0.7) 62%); }
.component-tile--testimonials i { border-radius: 999px; height: 34%; }
.component-tile--faq i { background: repeating-linear-gradient(180deg, rgba(255, 250, 240, 0.78) 0 14px, rgba(110, 231, 249, 0.54) 14px 28px); }
.component-tile--booking i { background: linear-gradient(135deg, #d96a4f, #f7d26a); }
.component-tile--product i { transform: rotate(-8deg); }
.component-tile--mobile i { width: 34%; height: 64%; border-radius: 18px; }

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

.style-selector {
  color: var(--paper);
  background: linear-gradient(135deg, var(--ink), #24303a);
}

.style-selector p { color: rgba(255, 250, 240, 0.74); }
.style-selector .eyebrow { color: var(--amber); }

.industry-tabs {
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.industry-tabs button {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-weight: 900;
}

.industry-tabs button[aria-selected="true"] {
  color: var(--ink);
  background: var(--amber);
  border-color: var(--amber);
}

.industry-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.industry-preview h2,
.industry-preview h3 { max-width: 16ch; font-size: clamp(1.8rem, 4vw, 3.4rem); }
.industry-preview li { margin-bottom: 8px; color: rgba(255, 250, 240, 0.82); }

.preview-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  padding: 18px;
  color: var(--ink);
  background: var(--paper);
}

.preview-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-card a {
  align-self: flex-start;
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
  font-weight: 900;
}

.preview-swatches {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.preview-swatches i {
  display: block;
  height: 120px;
  border-radius: 8px;
  background: var(--teal);
}

.preview-swatches i:nth-child(2) { background: var(--amber); }
.preview-swatches i:nth-child(3) { background: var(--coral); }

.preview-details {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.preview-details div {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.preview-details dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.preview-details dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

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

.offers-section {
  background:
    linear-gradient(135deg, rgba(21, 21, 22, 0.94), rgba(36, 48, 58, 0.96)),
    linear-gradient(90deg, rgba(213, 160, 55, 0.16), transparent);
}

.offers-section .section-heading h2,
.offers-section .offer-card--featured h3,
.offers-section .offer-card--featured p,
.offers-section .offer-card--featured li {
  color: var(--paper);
}

.offers-section .section-heading p,
.offers-section .offer-card p,
.offers-section .offer-card li {
  color: rgba(255, 250, 240, 0.76);
}

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

.offer-card {
  min-height: 340px;
  background: rgba(255, 250, 240, 0.08);
  border-color: rgba(255, 250, 240, 0.18);
}

.offer-card span {
  color: var(--amber);
}

.offer-card h3 {
  color: var(--paper);
}

.offer-card--featured {
  background:
    linear-gradient(135deg, rgba(47, 125, 116, 0.88), rgba(217, 106, 79, 0.42)),
    rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 250, 240, 0.34);
}

.offer-card ul {
  padding-left: 18px;
}

.process-section {
  background: rgba(255, 255, 255, 0.58);
}

.process-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  min-height: 260px;
}

.process-list span {
  color: var(--coral);
}

.panel ul, .contact-form, .faq-grid {
  margin: 0;
}

.panel li,
.offer-card li {
  margin-bottom: 10px;
  color: var(--muted);
}

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

.consultation-path strong {
  display: block;
  margin-top: 12px;
  color: var(--teal);
}

.responsive-proof {
  background: rgba(255, 255, 255, 0.6);
}

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

.faq-grid details {
  background: rgba(255, 255, 255, 0.62);
}

.faq-grid summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 950;
}

.faq-grid summary::marker {
  color: var(--teal);
}

.faq-grid p {
  margin: 12px 0 0;
}

.device-row {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.42fr;
  gap: 16px;
  align-items: end;
}

.device {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
}

.device span {
  display: block;
  margin-bottom: 10px;
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.device div {
  min-height: 190px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, var(--paper) 0 38%, transparent 38%),
    linear-gradient(135deg, var(--teal), var(--amber));
}

.device--tablet div { min-height: 250px; }
.device--mobile div { min-height: 320px; }

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(240px, 0.48fr) minmax(320px, 0.66fr);
  gap: 22px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--teal), var(--ink) 52%, #2b2530);
}

.contact-section p { color: rgba(255, 250, 240, 0.78); }
.contact-section .eyebrow { color: var(--amber); }

.flagship-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 18%, rgba(110, 231, 249, 0.16), transparent 30%),
    linear-gradient(135deg, #030407, #151516 48%, #24131a);
  border-color: rgba(255, 250, 240, 0.16);
}

.flagship-cta::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 250, 240, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.flagship-cta > * {
  position: relative;
  z-index: 1;
}

.flagship-cta h2 {
  max-width: 12ch;
  font-size: clamp(2.3rem, 5vw, 5.2rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.flagship-cta__console {
  align-self: stretch;
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: 320px;
  padding: 18px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(110, 231, 249, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
}

.flagship-cta__console span,
.flagship-cta__console em {
  color: rgba(255, 250, 240, 0.64);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flagship-cta__console strong {
  color: var(--paper);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: 18px;
  color: var(--ink);
  background: var(--paper);
}

.contact-form label {
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.contact-form textarea { resize: vertical; }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.button:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(213, 160, 55, 0.48);
  outline-offset: 2px;
}

.small-note, .form-status {
  font-size: 0.9rem;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--teal);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 22px 40px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 900;
}

.motion-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.motion-reveal.is-visible,
.motion-js .motion-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.motion-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 125, 116, 0.38);
  box-shadow: var(--shadow);
}

@keyframes pulse {
  0%, 100% { transform: translateY(0); opacity: 0.54; }
  50% { transform: translateY(-8px); opacity: 1; }
}

@keyframes entranceLoad {
  from { transform: scaleX(0); opacity: 0.46; }
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes entranceFade {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes vectorDash {
  to { stroke-dashoffset: -140; }
}

@keyframes heroFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

@media (max-width: 980px) {
  .hero,
  .visual-composition__shell,
  .industry-preview,
  .content-grid,
  .contact-section,
  .experience-universe,
  .universe-preview,
  .kinetic-scroll-gallery {
    grid-template-columns: 1fr;
  }

  .capability-strip,
  .capability-grid,
  .website-type-grid,
  .lookbook-grid,
  .consultation-path,
  .pattern-grid,
  .offer-grid,
  .process-list,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  main {
    padding-inline: 14px;
  }

  .site-header {
    align-items: center;
    padding: 12px 14px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    display: flex;
    align-items: center;
  }

  .section-band {
    padding: 24px 16px;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.25rem, 10.5vw, 3.35rem);
  }

  .entrance-sequence__grid strong {
    font-size: clamp(1.15rem, 8vw, 1.65rem);
  }

  .universe-controls {
    grid-template-columns: 1fr;
  }

  .universe-preview {
    min-height: auto;
  }

  .universe-preview__surface {
    min-height: 300px;
  }

  .hero-proof,
  .capability-strip,
  .capability-grid,
  .website-type-grid,
  .lookbook-grid,
  .consultation-path,
  .pattern-grid,
  .motion-demo-board,
  .component-showroom__grid,
  .offer-grid,
  .process-list,
  .faq-grid,
  .device-row {
    grid-template-columns: 1fr;
  }

  .showcase-object {
    min-height: 330px;
  }

  .showcase-object__screen {
    inset: 18px 18px 54px 8px;
    transform: rotateY(-8deg) rotateX(5deg) translateZ(18px);
  }

  .showcase-object__card {
    min-width: 72px;
    min-height: 72px;
    font-size: 0.82rem;
  }

  .demo-caption,
  .motion-demo-panel,
  .site-footer {
    flex-direction: column;
  }
}

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

  .motion-reveal {
    opacity: 1;
    transform: none;
  }

  .showcase-object,
  .showcase-object__screen,
  .showcase-object__card,
  .floating-stack,
  .premium-photo,
  .scroll-lane {
    transform: none !important;
  }

  .studio-cursor,
  .entrance-sequence {
    display: none !important;
  }
}

/* V2 capability showcase */
[data-clickable-card] {
  display: block;
  color: inherit;
}

.anchor-target {
  position: relative;
  display: block;
  top: -84px;
  height: 0;
}

button[data-clickable-card] {
  display: inline-flex;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.capability-engine {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  min-height: calc(100svh - 92px);
}

.capability-engine h1 {
  max-width: 14ch;
  font-size: clamp(2.75rem, 4.8vw, 4.7rem);
}

.clickable-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.clickable-proof a {
  padding: 14px;
}

.clickable-proof span,
.engine-caption span,
.stack-card span,
.proof-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clickable-proof strong {
  display: block;
  margin-bottom: 6px;
}

.clickable-proof small {
  display: block;
  color: var(--muted);
  line-height: 1.35;
}

.engine-panel {
  align-self: stretch;
  min-width: 0;
}

.engine-stage {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(216, 202, 184, 0.95);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
}

[data-hypercube-canvas] {
  display: block;
  width: 100%;
  height: 560px;
}

.template-marketplace {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(360px, 1.28fr);
  grid-template-rows: minmax(620px, auto) auto;
  gap: clamp(18px, 2.4vw, 34px);
  min-height: calc(100svh - 92px);
  color: var(--paper);
  overflow: hidden;
  border-color: rgba(255, 250, 240, 0.16);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(145deg, rgba(110, 231, 249, 0.14) 0 18%, transparent 18% 46%, rgba(247, 210, 106, 0.12) 46% 58%, transparent 58%),
    linear-gradient(135deg, #030407, #07111d 46%, #171017);
  background-size: 42px 42px, 42px 42px, auto, auto;
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.38);
}

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

.flagship-hero::before {
  left: -9%;
  top: 10%;
  width: min(430px, 34vw);
  aspect-ratio: 1;
  border: 1px solid rgba(110, 231, 249, 0.18);
  background:
    radial-gradient(circle at 42% 38%, rgba(110, 231, 249, 0.24), transparent 35%),
    conic-gradient(from 120deg, rgba(110, 231, 249, 0.18), transparent, rgba(247, 210, 106, 0.16), transparent);
  clip-path: polygon(10% 8%, 86% 0, 100% 54%, 68% 100%, 0 72%);
  filter: blur(0.2px) saturate(1.35);
  opacity: 0.82;
  transform: rotate(-14deg);
}

.flagship-hero::after {
  right: -7%;
  bottom: 10%;
  width: min(520px, 38vw);
  aspect-ratio: 1.45;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.13), transparent 38%),
    linear-gradient(45deg, transparent 16%, rgba(217, 106, 79, 0.2) 17% 29%, transparent 30%),
    linear-gradient(135deg, rgba(110, 231, 249, 0.11), transparent 62%);
  clip-path: polygon(0 20%, 84% 0, 100% 72%, 22% 100%);
  opacity: 0.66;
}

.template-marketplace p {
  color: rgba(255, 250, 240, 0.74);
}

.template-marketplace__intro {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  min-width: 0;
}

.template-marketplace__intro::before {
  content: "";
  position: absolute;
  left: 9%;
  top: 20%;
  z-index: 0;
  width: min(280px, 48vw);
  aspect-ratio: 0.78;
  border: 1px solid rgba(110, 231, 249, 0.18);
  background:
    linear-gradient(135deg, rgba(110, 231, 249, 0.28), transparent 44%),
    linear-gradient(315deg, rgba(247, 210, 106, 0.18), transparent 48%),
    rgba(255, 255, 255, 0.035);
  clip-path: polygon(8% 18%, 72% 0, 100% 42%, 68% 100%, 0 78%);
  filter: saturate(1.28);
  opacity: 0.66;
  transform: rotate(-16deg);
}

.template-marketplace__intro > * {
  position: relative;
  z-index: 1;
}

.template-marketplace__intro h1 {
  max-width: 10ch;
  margin-bottom: 20px;
  font-size: clamp(3.25rem, 5.45vw, 6rem);
  line-height: 0.86;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.hero-impact-line {
  max-width: 16ch;
  margin-bottom: 16px;
  color: var(--paper);
  font-size: clamp(1.32rem, 2.45vw, 2.6rem);
  font-weight: 950;
  line-height: 0.96;
  text-transform: uppercase;
}

.template-marketplace__intro .hero-lede {
  max-width: 39rem;
  margin-bottom: 20px;
  font-size: clamp(1.03rem, 1.45vw, 1.24rem);
}

.hero-signal-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.hero-signal-rail span {
  min-width: 0;
  padding: 11px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.hero-signal-rail strong,
.hero-signal-rail small {
  display: block;
}

.hero-signal-rail strong {
  color: #6ee7f9;
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  line-height: 1;
}

.hero-signal-rail small {
  margin-top: 4px;
  color: rgba(255, 250, 240, 0.68);
  font-size: 0.66rem;
  font-weight: 950;
  line-height: 1.15;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.template-marketplace .button.secondary {
  color: #030407;
  background: rgba(255, 250, 240, 0.78);
  border-color: rgba(255, 250, 240, 0.54);
}

.template-filter-row,
.template-feature-cloud,
.template-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.template-filter-row {
  margin-bottom: 14px;
}

.template-filter-row button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
}

.template-filter-row button[aria-selected="true"],
.template-filter-row button:hover,
.template-filter-row button:focus-visible {
  color: #030407;
  background: #6ee7f9;
  border-color: #6ee7f9;
}

.template-feature-cloud {
  margin-bottom: 18px;
}

.template-feature-cloud span,
.template-card__features em {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.78);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
}

.template-marketplace__engine {
  position: relative;
  z-index: 2;
  align-self: start;
  height: clamp(560px, 46vw, 620px);
  min-height: 620px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.template-marketplace__engine [data-hypercube-canvas] {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  opacity: 0.82;
}

.premium-experience-stage {
  --stage-x: 0;
  --stage-y: 0;
  isolation: isolate;
  transform-style: preserve-3d;
  background:
    radial-gradient(circle at calc(50% + (var(--stage-x) * 18%)) calc(45% + (var(--stage-y) * 16%)), rgba(110, 231, 249, 0.24), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    #06080f;
}

.premium-experience-stage::before {
  content: "";
  position: absolute;
  inset: 22px;
  z-index: -1;
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  transform: translate3d(calc(var(--stage-x) * -10px), calc(var(--stage-y) * -10px), 0);
}

.hero-vector-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.88;
  transform: translate3d(calc(var(--stage-x) * 10px), calc(var(--stage-y) * 8px), 0);
}

.hero-vector-field svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-vector-field path,
.hero-vector-field circle {
  fill: none;
  stroke: rgba(110, 231, 249, 0.62);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 10 18;
  animation: vectorDash 8s linear infinite;
  filter: drop-shadow(0 0 10px rgba(110, 231, 249, 0.22));
}

.hero-vector-field path:nth-child(2) {
  stroke: rgba(247, 210, 106, 0.56);
  animation-delay: -2s;
}

.hero-vector-field path:nth-child(3) {
  stroke: rgba(217, 106, 79, 0.5);
  animation-delay: -4s;
}

.hero-vector-field circle {
  fill: rgba(255, 250, 240, 0.9);
  stroke: rgba(3, 4, 7, 0.5);
  stroke-dasharray: none;
  animation: pulse 2.4s ease-in-out infinite;
}

.premium-photo-strip {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.premium-photo {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
  overflow: hidden;
  animation: heroFloat 8s ease-in-out infinite;
}

.premium-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 34%),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.08) 18px 19px);
}

.premium-photo--one {
  top: 8%;
  left: 7%;
  width: 32%;
  height: 28%;
  background: linear-gradient(135deg, #101827, #6ee7f9);
  transform: translate3d(calc(var(--stage-x) * 24px), calc(var(--stage-y) * 18px), 60px) rotate(-8deg);
}

.premium-photo--two {
  top: 16%;
  right: 7%;
  width: 28%;
  height: 44%;
  background: linear-gradient(145deg, #2d1511, #f7d26a);
  transform: translate3d(calc(var(--stage-x) * -32px), calc(var(--stage-y) * 22px), 80px) rotate(7deg);
  animation-delay: -1.5s;
}

.premium-photo--three {
  left: 17%;
  bottom: 13%;
  width: 42%;
  height: 27%;
  background: linear-gradient(135deg, #f6f1e8, #161616 52%, #15c8a8);
  transform: translate3d(calc(var(--stage-x) * 16px), calc(var(--stage-y) * -26px), 70px) rotate(3deg);
  animation-delay: -3s;
}

.premium-photo--four {
  right: 13%;
  bottom: 7%;
  width: 24%;
  height: 23%;
  background: linear-gradient(135deg, #090909, #6c5cff 56%, #ffffff);
  transform: translate3d(calc(var(--stage-x) * -18px), calc(var(--stage-y) * -18px), 110px) rotate(-12deg);
  animation-delay: -4s;
}

.premium-photo--five {
  top: 42%;
  left: 41%;
  width: 28%;
  height: 22%;
  background: linear-gradient(135deg, #fffaf0, #d96a4f 48%, #030407);
  transform: translate3d(calc(var(--stage-x) * 42px), calc(var(--stage-y) * -10px), 120px) rotate(10deg);
  animation-delay: -2.4s;
}

.hero-depth-stack {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  transform-style: preserve-3d;
}

.hero-depth-card {
  position: absolute;
  display: grid;
  gap: 6px;
  width: min(250px, 38%);
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(3, 4, 7, 0.66);
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.hero-depth-card strong,
.hero-depth-card small {
  display: block;
}

.hero-depth-card strong {
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-depth-card small {
  color: rgba(255, 250, 240, 0.62);
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1.25;
}

.hero-depth-card--one {
  left: 8%;
  top: 39%;
  transform: translate3d(calc(var(--stage-x) * 34px), calc(var(--stage-y) * -16px), 90px) rotate(-4deg);
}

.hero-depth-card--two {
  right: 7%;
  top: 55%;
  transform: translate3d(calc(var(--stage-x) * -28px), calc(var(--stage-y) * 18px), 120px) rotate(4deg);
}

.hero-depth-card--three {
  left: 33%;
  top: 72%;
  transform: translate3d(calc(var(--stage-x) * 18px), calc(var(--stage-y) * -24px), 140px) rotate(-2deg);
}

.premium-stage-copy {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 4;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(3, 4, 7, 0.72);
  backdrop-filter: blur(14px);
}

.premium-stage-copy span {
  color: #6ee7f9;
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.premium-stage-copy strong {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.premium-motion-meter {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 38px);
  gap: 6px;
}

.premium-motion-meter span {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.25);
  transform: scaleX(calc(0.42 + (var(--stage-x) + 1) * 0.22));
  transform-origin: left;
}

.premium-motion-meter span:nth-child(2) { background: rgba(110, 231, 249, 0.74); transform: scaleX(calc(0.38 + (var(--stage-y) + 1) * 0.24)); }
.premium-motion-meter span:nth-child(3) { background: rgba(247, 210, 106, 0.74); transform: scaleX(calc(0.5 + (var(--stage-x) + 1) * 0.17)); }
.premium-motion-meter span:nth-child(4) { background: rgba(217, 106, 79, 0.74); transform: scaleX(calc(0.46 + (var(--stage-y) + 1) * 0.19)); }

.capability-orbit {
  position: absolute;
  inset: 0;
}

.template-marketplace__engine .capability-node {
  min-height: 28px;
  padding: 0 8px;
  border-color: rgba(255, 250, 240, 0.16);
  color: var(--paper);
  background: rgba(3, 4, 7, 0.68);
  box-shadow: none;
  font-size: 0.66rem;
}

.template-card-wall {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(6, minmax(170px, 1fr));
  gap: 12px;
  align-content: start;
  max-height: none;
  padding: 2px 4px 12px 2px;
  overflow: visible;
  scrollbar-color: rgba(110, 231, 249, 0.55) rgba(255, 255, 255, 0.08);
}

.template-card {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 10px;
  min-height: 320px;
  align-content: start;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.055);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.template-card:hover,
.template-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(110, 231, 249, 0.56);
  background:
    linear-gradient(135deg, rgba(110, 231, 249, 0.14), rgba(247, 210, 106, 0.08)),
    rgba(255, 255, 255, 0.07);
}

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

.template-card__visual {
  position: relative;
  display: block;
  min-height: 112px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    #080b12;
  background-size: 18px 18px, 18px 18px, auto;
}

.template-card__visual i {
  position: absolute;
  display: block;
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.82);
}

.template-card__visual i:nth-child(1) { top: 10px; left: 10px; width: 42%; height: 8px; opacity: 0.62; }
.template-card__visual i:nth-child(2) { top: 28px; left: 10px; width: 48%; height: 34px; }
.template-card__visual i:nth-child(3) { top: 26px; right: 14px; width: 34%; height: 54px; background: #6ee7f9; transform: rotate(-8deg); }
.template-card__visual i:nth-child(4) { left: 10px; bottom: 34px; width: 36%; height: 22px; background: rgba(255, 250, 240, 0.52); }
.template-card__visual i:nth-child(5) { left: 50%; bottom: 34px; width: 28%; height: 22px; background: rgba(110, 231, 249, 0.34); }
.template-card__visual i:nth-child(6) { left: 10px; bottom: 12px; width: 34%; height: 12px; background: #f7d26a; }
.template-card__visual i:nth-child(7) { right: 14px; top: 10px; width: 24%; height: 8px; opacity: 0.42; }
.template-card__visual i:nth-child(8) { right: 14px; bottom: 12px; width: 26%; height: 12px; opacity: 0.42; }

.template-card--plumber .template-card__visual,
.template-card--clinic .template-card__visual,
.template-card--realestate .template-card__visual {
  background: linear-gradient(135deg, #eef8f5, #dbe9ff);
}

.template-card--plumber .template-card__visual i,
.template-card--clinic .template-card__visual i,
.template-card--realestate .template-card__visual i,
.template-card--shop .template-card__visual i {
  background: #111111;
}

.template-card--restaurant .template-card__visual {
  background: linear-gradient(135deg, #2a130b, #7a3e24);
}

.template-card--restaurant .template-card__visual i:nth-child(3),
.template-card--event .template-card__visual i:nth-child(3) {
  background: linear-gradient(135deg, #bc6c25, #f7d26a);
}

.template-card--luxury .template-card__visual,
.template-card--fashion .template-card__visual {
  background: linear-gradient(135deg, #110d0a, #26161d);
}

.template-card--luxury .template-card__visual i:nth-child(3),
.template-card--fashion .template-card__visual i:nth-child(3) {
  background: linear-gradient(135deg, #fff5cf, #d6b76a);
}

.template-card--platform .template-card__visual i:nth-child(3),
.template-card--dashboard .template-card__visual i:nth-child(4) {
  width: 54%;
  height: 62px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86) 0 34%, transparent 34%),
    linear-gradient(135deg, #6c5cff, #15c8a8);
  transform: none;
}

.template-card--portfolio .template-card__visual {
  background: linear-gradient(135deg, #f6f1e8, #ffffff);
}

.template-card--portfolio .template-card__visual i {
  background: #111111;
}

.template-card__meta strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.template-card__meta small {
  color: rgba(255, 250, 240, 0.66);
  line-height: 1.35;
}

.animation-gallery .lookbook-card::before {
  background:
    linear-gradient(90deg, rgba(110, 231, 249, 0.82) 0 30%, rgba(255, 255, 255, 0.12) 30% 54%, rgba(247, 210, 106, 0.72) 54%),
    repeating-linear-gradient(90deg, transparent 0 12px, rgba(255, 255, 255, 0.08) 12px 13px);
}

.motion-demo-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.motion-demo-board button {
  --motion-x: 0;
  --motion-y: 0;
  position: relative;
  min-height: 150px;
  padding: 12px;
  border: 1px solid rgba(21, 21, 22, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font: inherit;
  text-align: left;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.motion-demo-board button:hover,
.motion-demo-board button:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--soft-shadow);
}

.motion-demo-board button.motion-demo-live {
  transform:
    translateY(-4px)
    rotateX(calc(var(--motion-y) * -5deg))
    rotateY(calc(var(--motion-x) * 5deg));
}

.motion-demo-board span {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 100%;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.motion-demo-board i {
  position: absolute;
  inset: auto 14px 14px;
  height: 56px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, var(--teal), var(--amber), var(--coral));
  transition: transform 240ms ease, clip-path 240ms ease;
}

.motion-demo-board button:hover i,
.motion-demo-board button:focus-visible i {
  transform: translateY(-8px) rotate(-3deg) scale(1.04);
}

.motion-demo-board button.motion-demo-live i {
  transform:
    translate(calc(var(--motion-x) * 12px), calc(var(--motion-y) * 10px))
    rotate(calc(var(--motion-x) * -5deg))
    scale(1.06);
}

[data-motion-demo="cursor-states"] i { border-radius: 999px; width: 66px; height: 66px; right: 18px; left: auto; }
[data-motion-demo="text-reveal"] i { clip-path: inset(0 38% 0 0); }
[data-motion-demo="image-mask"] i { clip-path: circle(42% at 68% 42%); }
[data-motion-demo="parallax-cards"] i { box-shadow: -18px -16px 0 rgba(21, 21, 22, 0.16), 18px -8px 0 rgba(69, 101, 138, 0.22); }
[data-motion-demo="scroll-panels"] i { background: repeating-linear-gradient(90deg, var(--teal) 0 26px, var(--amber) 26px 52px); }
[data-motion-demo="horizontal-gallery"] i { width: 160%; }
[data-motion-demo="hover-distortion"] i { border-radius: 28px 8px 32px 10px; }
[data-motion-demo="floating-objects"] i { width: 64px; height: 64px; left: auto; right: 22px; transform: rotate(12deg); }
[data-motion-demo="sticky-sections"] i { height: 88px; }
[data-motion-demo="animated-vectors"] i { clip-path: polygon(0 60%, 30% 0, 58% 68%, 100% 16%, 100% 100%, 0 100%); }
[data-motion-demo="loading-states"] i { width: 92px; height: 22px; border-radius: 999px; }

.kinetic-scroll-gallery {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 4vw, 64px);
  align-items: center;
  min-height: 680px;
  overflow: hidden;
  color: var(--paper);
  border-color: rgba(255, 250, 240, 0.16);
  background:
    radial-gradient(circle at 18% 24%, rgba(110, 231, 249, 0.14), transparent 28%),
    radial-gradient(circle at 78% 68%, rgba(247, 210, 106, 0.12), transparent 32%),
    linear-gradient(135deg, #06080d, #14181f 48%, #050506);
}

.kinetic-scroll-gallery p {
  color: rgba(255, 250, 240, 0.74);
}

.kinetic-gallery__intro {
  position: relative;
  z-index: 2;
}

.kinetic-gallery__intro h2 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 5.8vw, 6rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.kinetic-gallery__stage {
  position: relative;
  display: grid;
  gap: 16px;
  min-height: 520px;
  padding-block: 24px;
  transform: rotate(-3deg);
}

.scroll-lane {
  display: flex;
  gap: 16px;
  width: max-content;
  transform: translateX(var(--lane-shift, -8%));
  transition: transform 180ms linear;
}

.scroll-lane--two {
  transform: translateX(var(--lane-shift, -18%));
}

.gallery-frame {
  position: relative;
  display: block;
  width: clamp(220px, 25vw, 360px);
  height: clamp(260px, 34vw, 430px);
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.gallery-frame::before,
.gallery-frame::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 8px;
}

.gallery-frame::before {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 26%, transparent 26%),
    repeating-linear-gradient(180deg, transparent 0 24px, rgba(255, 255, 255, 0.08) 24px 25px);
}

.gallery-frame::after {
  inset: auto 22px 22px;
  height: 46px;
  background: rgba(3, 4, 7, 0.72);
}

.gallery-frame--saas { background: linear-gradient(135deg, #090e1c, #6c5cff 48%, #15c8a8); }
.gallery-frame--service { background: linear-gradient(135deg, #f7f4ec, #2f7d74 52%, #030407); }
.gallery-frame--luxury { background: linear-gradient(135deg, #0d0908, #d6b76a 48%, #28151b); }
.gallery-frame--restaurant { background: linear-gradient(135deg, #2a130b, #bc6c25 52%, #fff0c7); }
.gallery-frame--portfolio { background: linear-gradient(135deg, #fffaf0, #111111 46%, #6ee7f9); }
.gallery-frame--commerce { background: linear-gradient(135deg, #151516, #d96a4f 48%, #f6f1e8); }
.gallery-frame--clinic { background: linear-gradient(135deg, #e7f7ff, #45658a 52%, #ffffff); }
.gallery-frame--event { background: linear-gradient(135deg, #050506, #f7d26a 50%, #6c5cff); }

.experience-universe {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: stretch;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(135deg, #040406, #151516 52%, #0b1420);
  background-size: 46px 46px, 46px 46px, auto;
  border-color: rgba(255, 250, 240, 0.16);
}

.experience-universe p {
  color: rgba(255, 250, 240, 0.74);
}

.experience-universe__copy h2 {
  max-width: 15ch;
  font-size: clamp(2.4rem, 4.8vw, 5rem);
  line-height: 0.92;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.universe-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-self: start;
}

.universe-controls button {
  min-height: 74px;
  padding: 11px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  color: rgba(255, 250, 240, 0.82);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 950;
  text-align: left;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.universe-controls button:hover,
.universe-controls button:focus-visible,
.universe-controls button[aria-selected="true"] {
  color: #030407;
  background: var(--universe-accent, #6ee7f9);
  border-color: var(--universe-accent, #6ee7f9);
  transform: translateY(-2px);
}

.universe-preview {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(320px, 1fr);
  gap: 18px;
  min-height: 460px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 20%, color-mix(in srgb, var(--universe-accent, #6ee7f9) 28%, transparent), transparent 28%),
    linear-gradient(135deg, var(--universe-bg, #06111d), #050506);
  overflow: hidden;
}

.universe-preview__copy {
  align-self: end;
}

.universe-preview__copy h3 {
  max-width: 16ch;
  color: var(--paper);
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.92;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.universe-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.universe-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.76);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.universe-preview__surface {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    rgba(255, 255, 255, 0.04);
  background-size: 28px 28px, 28px 28px, auto;
}

.universe-preview__surface span {
  position: absolute;
  display: block;
  border-radius: 8px;
  background: var(--universe-accent, #6ee7f9);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.32);
  transition: inset 240ms ease, width 240ms ease, height 240ms ease, transform 240ms ease, background 240ms ease, opacity 240ms ease, border-radius 240ms ease;
}

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

.universe-preview__surface::before {
  inset: 14px;
  border: 1px solid rgba(255, 250, 240, 0.1);
  border-radius: 8px;
}

.universe-preview__surface::after {
  right: 18px;
  bottom: 18px;
  width: 32%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--universe-accent, #6ee7f9), var(--universe-accent-2, #f7d26a));
}

.universe-preview__surface em {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(3, 4, 7, 0.72);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.universe-preview__surface span:nth-child(1) { top: 18px; left: 18px; width: 42%; height: 12px; opacity: 0.66; }
.universe-preview__surface span:nth-child(2) { top: 58px; left: 18px; width: 46%; height: 106px; background: rgba(255, 250, 240, 0.82); }
.universe-preview__surface span:nth-child(3) { top: 40px; right: 34px; width: 34%; height: 190px; transform: rotate(-10deg); }
.universe-preview__surface span:nth-child(4) { left: 26px; bottom: 34px; width: 50%; height: 86px; background: var(--universe-accent-2, #f7d26a); }
.universe-preview__surface span:nth-child(5) { right: 38px; bottom: 48px; width: 24%; height: 38px; background: rgba(255, 250, 240, 0.82); }
.universe-preview__surface span:nth-child(6) { right: 26px; top: 22px; width: 22%; height: 10px; opacity: 0.6; }

.universe-preview[data-universe-scene="immersive-3d"] .universe-preview__surface span:nth-child(2) {
  left: 11%;
  top: 20%;
  width: 36%;
  height: 48%;
  background: linear-gradient(135deg, rgba(110, 231, 249, 0.92), rgba(255, 250, 240, 0.16));
  transform: rotateY(-24deg) rotateZ(-8deg);
}

.universe-preview[data-universe-scene="immersive-3d"] .universe-preview__surface span:nth-child(3) {
  right: 11%;
  top: 14%;
  width: 32%;
  height: 62%;
  background: linear-gradient(135deg, rgba(247, 210, 106, 0.86), rgba(217, 106, 79, 0.28));
  transform: rotateY(18deg) rotateZ(9deg);
}

.universe-preview[data-universe-scene="bw-editorial"] .universe-preview__surface,
.universe-preview[data-universe-scene="minimal-premium"] .universe-preview__surface {
  background: linear-gradient(135deg, #f6f1e8, #ffffff);
}

.universe-preview[data-universe-scene="bw-editorial"] .universe-preview__surface span {
  border-radius: 0;
  background: #111111;
  box-shadow: none;
}

.universe-preview[data-universe-scene="bw-editorial"] .universe-preview__surface span:nth-child(2) {
  left: 8%;
  top: 22%;
  width: 78%;
  height: 18%;
}

.universe-preview[data-universe-scene="bw-editorial"] .universe-preview__surface span:nth-child(3) {
  left: 8%;
  right: auto;
  top: 45%;
  width: 58%;
  height: 10%;
  transform: none;
}

.universe-preview[data-universe-scene="colorful-agency"] .universe-preview__surface {
  background:
    radial-gradient(circle at 18% 24%, #ff6b6b 0 16%, transparent 17%),
    radial-gradient(circle at 78% 32%, #6ee7f9 0 20%, transparent 21%),
    linear-gradient(135deg, #161116, #311c46);
}

.universe-preview[data-universe-scene="colorful-agency"] .universe-preview__surface span {
  border-radius: 28px 8px 34px 10px;
}

.universe-preview[data-universe-scene="colorful-agency"] .universe-preview__surface span:nth-child(2) {
  left: 9%;
  top: 36%;
  width: 40%;
  height: 22%;
  background: #ff6b6b;
  transform: rotate(-7deg);
}

.universe-preview[data-universe-scene="colorful-agency"] .universe-preview__surface span:nth-child(3) {
  right: 9%;
  top: 18%;
  width: 34%;
  height: 44%;
  background: #6ee7f9;
  transform: rotate(12deg);
}

.universe-preview[data-universe-scene="luxury-product"] .universe-preview__surface {
  background: linear-gradient(135deg, #080504, #24140e 56%, #0d0908);
}

.universe-preview[data-universe-scene="luxury-product"] .universe-preview__surface span:nth-child(2) {
  left: 10%;
  top: 12%;
  width: 30%;
  height: 76%;
  background: linear-gradient(135deg, #d6b76a, #fff5cf);
  border-radius: 999px 999px 18px 18px;
}

.universe-preview[data-universe-scene="luxury-product"] .universe-preview__surface span:nth-child(3) {
  right: 12%;
  top: 18%;
  width: 38%;
  height: 20%;
  background: #f6f1e8;
  transform: none;
}

.universe-preview[data-universe-scene="saas-startup"] .universe-preview__surface {
  background: linear-gradient(135deg, #050b18, #111827);
}

.universe-preview[data-universe-scene="saas-startup"] .universe-preview__surface span:nth-child(2) {
  left: 7%;
  top: 22%;
  width: 58%;
  height: 52%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0 22%, transparent 22%),
    linear-gradient(135deg, #6c5cff, #15c8a8);
}

.universe-preview[data-universe-scene="saas-startup"] .universe-preview__surface span:nth-child(3) {
  right: 8%;
  top: 28%;
  width: 22%;
  height: 18%;
  background: #15c8a8;
  transform: none;
}

.universe-preview[data-universe-scene="local-business"] .universe-preview__surface,
.universe-preview[data-universe-scene="real-estate"] .universe-preview__surface {
  background: linear-gradient(135deg, #eff7f5, #dce9ff);
}

.universe-preview[data-universe-scene="local-business"] .universe-preview__surface span,
.universe-preview[data-universe-scene="real-estate"] .universe-preview__surface span {
  background: #10201d;
  box-shadow: 0 16px 50px rgba(21, 21, 22, 0.16);
}

.universe-preview[data-universe-scene="local-business"] .universe-preview__surface span:nth-child(2) {
  left: 8%;
  top: 18%;
  width: 44%;
  height: 20%;
  background: #2f7d74;
}

.universe-preview[data-universe-scene="local-business"] .universe-preview__surface span:nth-child(3) {
  right: 8%;
  top: 20%;
  width: 32%;
  height: 54%;
  background: #ffffff;
  transform: none;
}

.universe-preview[data-universe-scene="restaurant"] .universe-preview__surface {
  background: linear-gradient(135deg, #1b0d07, #4b2011 62%, #2a130b);
}

.universe-preview[data-universe-scene="restaurant"] .universe-preview__surface span:nth-child(2) {
  left: 8%;
  top: 16%;
  width: 40%;
  height: 62%;
  background: linear-gradient(135deg, #bc6c25, #fff0c7);
}

.universe-preview[data-universe-scene="restaurant"] .universe-preview__surface span:nth-child(3) {
  right: 8%;
  top: 18%;
  width: 36%;
  height: 12%;
  background: #fff0c7;
  transform: none;
}

.universe-preview[data-universe-scene="real-estate"] .universe-preview__surface span:nth-child(2) {
  left: 8%;
  top: 14%;
  width: 46%;
  height: 68%;
  background: #ffffff;
}

.universe-preview[data-universe-scene="real-estate"] .universe-preview__surface span:nth-child(3) {
  right: 8%;
  top: 18%;
  width: 32%;
  height: 48%;
  background:
    linear-gradient(90deg, transparent 0 48%, #45658a 48% 52%, transparent 52%),
    linear-gradient(180deg, transparent 0 46%, #45658a 46% 50%, transparent 50%),
    #dce9ff;
  transform: none;
}

.universe-preview[data-universe-scene="personal-brand"] .universe-preview__surface {
  background: linear-gradient(135deg, #fffaf0, #161116 52%, #d96a4f);
}

.universe-preview[data-universe-scene="personal-brand"] .universe-preview__surface span:nth-child(2) {
  left: 9%;
  top: 14%;
  width: 34%;
  height: 62%;
  background: linear-gradient(135deg, #d96a4f, #f7d26a);
  border-radius: 999px 999px 8px 8px;
}

.universe-preview[data-universe-scene="personal-brand"] .universe-preview__surface span:nth-child(3) {
  right: 9%;
  top: 22%;
  width: 40%;
  height: 16%;
  background: #fffaf0;
  transform: none;
}

.universe-preview[data-universe-scene="ecommerce-launch"] .universe-preview__surface {
  background: linear-gradient(135deg, #061814, #f6f1e8 58%, #151516);
}

.universe-preview[data-universe-scene="ecommerce-launch"] .universe-preview__surface span:nth-child(2) {
  left: 8%;
  top: 14%;
  width: 36%;
  height: 66%;
  background: linear-gradient(135deg, #15c8a8, #f6f1e8);
}

.universe-preview[data-universe-scene="ecommerce-launch"] .universe-preview__surface span:nth-child(3) {
  right: 8%;
  top: 18%;
  width: 38%;
  height: 44%;
  background: #151516;
  transform: none;
}

.universe-preview[data-universe-scene="futuristic-dark"] .universe-preview__surface {
  background:
    radial-gradient(circle at 54% 42%, rgba(0, 245, 212, 0.2), transparent 28%),
    linear-gradient(135deg, #030712, #0a1020);
}

.universe-preview[data-universe-scene="futuristic-dark"] .universe-preview__surface span {
  border: 1px solid rgba(0, 245, 212, 0.32);
  background: rgba(0, 245, 212, 0.16);
  box-shadow: 0 0 34px rgba(0, 245, 212, 0.14);
}

.universe-preview[data-universe-scene="futuristic-dark"] .universe-preview__surface span:nth-child(2) {
  left: 12%;
  top: 24%;
  width: 34%;
  height: 34%;
  transform: rotate(-14deg);
}

.universe-preview[data-universe-scene="futuristic-dark"] .universe-preview__surface span:nth-child(3) {
  right: 13%;
  top: 22%;
  width: 28%;
  height: 50%;
  transform: rotate(10deg);
}

.universe-preview[data-universe-scene="minimal-premium"] .universe-preview__surface span {
  background: #111111;
  box-shadow: none;
}

.universe-preview[data-universe-scene="minimal-premium"] .universe-preview__surface span:nth-child(2) {
  left: 12%;
  top: 18%;
  width: 40%;
  height: 12%;
}

.universe-preview[data-universe-scene="minimal-premium"] .universe-preview__surface span:nth-child(3) {
  right: 12%;
  top: 18%;
  width: 22%;
  height: 50%;
  transform: none;
  background: #dad3c8;
}

.capability-node {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 11px;
  border: 1px solid rgba(21, 21, 22, 0.16);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.9);
  box-shadow: var(--soft-shadow);
  font-size: 0.78rem;
  font-weight: 950;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.capability-node:hover,
.capability-node:focus-visible {
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-2px);
}

.capability-node--landing { top: 8%; left: 8%; }
.capability-node--seo { top: 7%; right: 12%; }
.capability-node--analytics { top: 20%; left: 34%; }
.capability-node--cloudflare { top: 28%; right: 5%; }
.capability-node--github { top: 41%; left: 5%; }
.capability-node--motion { top: 53%; right: 8%; }
.capability-node--three { bottom: 24%; left: 14%; }
.capability-node--forms { bottom: 14%; right: 18%; }
.capability-node--booking { bottom: 8%; left: 36%; }
.capability-node--local { top: 19%; right: 32%; }
.capability-node--luxury { bottom: 37%; right: 31%; }
.capability-node--saas { bottom: 36%; left: 38%; }
.capability-node--commerce { bottom: 10%; right: 4%; }
.capability-node--speed { top: 39%; right: 40%; }

.engine-caption {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.88);
  box-shadow: var(--soft-shadow);
  font-size: 0.9rem;
}

.engine-caption strong {
  color: var(--teal);
}

.visual-signature .service-tile {
  color: var(--paper);
}

.visual-signature .service-tile p {
  color: rgba(255, 250, 240, 0.74);
}

.visual-composition__meta a {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.52);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.light-button {
  color: var(--ink);
  background: var(--paper);
}

.proof-lab {
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.92), rgba(255, 255, 255, 0.64)),
    linear-gradient(90deg, rgba(47, 125, 116, 0.12), rgba(217, 106, 79, 0.1));
}

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

.proof-card {
  min-height: 260px;
  padding: 20px;
}

.proof-card strong {
  display: block;
  margin-top: 14px;
  color: var(--teal);
}

.deployment-stack {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(21, 21, 22, 0.96), rgba(47, 125, 116, 0.82)),
    linear-gradient(90deg, rgba(213, 160, 55, 0.12), transparent);
}

.deployment-stack p {
  color: rgba(255, 250, 240, 0.76);
}

.deployment-stack .eyebrow,
.deployment-stack .stack-card span {
  color: var(--amber);
}

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

.stack-card {
  min-height: 230px;
  padding: 20px;
  color: var(--paper);
  background: rgba(255, 250, 240, 0.08);
  border-color: rgba(255, 250, 240, 0.2);
}

.stack-card p {
  color: rgba(255, 250, 240, 0.74);
}

.process-list li {
  padding: 0;
}

.process-list li > a {
  min-height: 260px;
  padding: 20px;
}

.device-row {
  color: inherit;
}

.contact-section .button.secondary {
  color: var(--ink);
}

.motion-card:focus-visible,
[data-clickable-card]:focus-visible,
.capability-node:focus-visible {
  outline: 3px solid rgba(213, 160, 55, 0.5);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .capability-engine {
    grid-template-columns: 1fr;
  }

  .template-marketplace {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .template-card-wall {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-height: none;
    overflow: visible;
  }

  .engine-stage,
  [data-hypercube-canvas] {
    min-height: 480px;
    height: 480px;
  }

  .template-marketplace__engine [data-hypercube-canvas] {
    height: 560px;
  }

  .kinetic-scroll-gallery {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .template-marketplace {
    padding: 20px 16px;
  }

  .template-marketplace__intro {
    order: 1;
  }

  .template-card-wall {
    order: 3;
  }

  .template-marketplace__engine {
    order: 2;
  }

  .template-marketplace__intro h1 {
    max-width: 10ch;
    font-size: clamp(2.8rem, 13vw, 4.1rem);
  }

  .template-marketplace__intro .hero-lede {
    margin-bottom: 14px;
  }

  .template-filter-row {
    flex-wrap: nowrap;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .template-filter-row button {
    flex: 0 0 auto;
  }

  .template-feature-cloud {
    display: none;
  }

  .template-marketplace__engine {
    height: 440px;
    min-height: 440px;
  }

  .template-marketplace__engine [data-hypercube-canvas] {
    height: 440px;
  }

  .template-card-wall {
    display: flex;
    max-width: 100%;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .template-card {
    min-width: 270px;
    scroll-snap-align: start;
  }

  .premium-stage-copy {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .premium-motion-meter {
    top: 16px;
    right: 16px;
    grid-template-columns: repeat(4, 24px);
  }

  .premium-photo--one { width: 45%; height: 24%; }
  .premium-photo--two { width: 38%; height: 34%; }
  .premium-photo--three { left: 10%; width: 54%; height: 24%; }
  .premium-photo--four { width: 32%; height: 20%; }
  .premium-photo--five { left: 34%; width: 38%; height: 18%; }

  .kinetic-scroll-gallery {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 30px 16px;
  }

  .kinetic-gallery__intro h2 {
    max-width: 10ch;
    font-size: clamp(2.2rem, 11vw, 3.7rem);
  }

  .kinetic-gallery__stage {
    min-height: 420px;
    transform: rotate(-2deg);
  }

  .gallery-frame {
    width: 220px;
    height: 290px;
  }

  .capability-engine h1 {
    max-width: 12ch;
    font-size: clamp(2.15rem, 10vw, 3.15rem);
  }

  .clickable-proof,
  .proof-grid,
  .stack-grid {
    grid-template-columns: 1fr;
  }

  .engine-stage,
  [data-hypercube-canvas] {
    min-height: 520px;
    height: 520px;
  }

  .capability-node {
    min-height: 32px;
    padding-inline: 9px;
    font-size: 0.68rem;
  }

  .capability-node--landing { top: 7%; left: 5%; }
  .capability-node--seo { top: 7%; right: 6%; }
  .capability-node--analytics { top: 18%; left: 31%; }
  .capability-node--cloudflare { top: 27%; right: 4%; }
  .capability-node--github { top: 38%; left: 4%; }
  .capability-node--motion { top: 51%; right: 5%; }
  .capability-node--three { bottom: 28%; left: 6%; }
  .capability-node--forms { bottom: 18%; right: 12%; }
  .capability-node--booking { bottom: 9%; left: 26%; }
  .capability-node--local { top: 18%; right: 30%; }
  .capability-node--luxury { bottom: 38%; right: 22%; }
  .capability-node--saas { bottom: 39%; left: 34%; }
  .capability-node--commerce { bottom: 7%; right: 4%; }
  .capability-node--speed { top: 39%; right: 32%; }

  .engine-caption {
    flex-direction: column;
  }
}

/* V3 multi-page studio showcase */
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: stretch;
  min-height: calc(100svh - 122px);
  overflow: hidden;
}

.page-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 5.2vw, 5.1rem);
}

.page-hero__copy {
  align-self: center;
}

.page-hero--services {
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(255, 255, 255, 0.72)),
    linear-gradient(120deg, rgba(47, 125, 116, 0.22), rgba(213, 160, 55, 0.16));
}

.page-hero--capabilities,
.page-hero--process {
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 18%, rgba(213, 160, 55, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(21, 21, 22, 0.98), rgba(36, 48, 58, 0.96));
}

.page-hero--capabilities p,
.page-hero--process p,
.page-hero--contact p {
  color: rgba(255, 250, 240, 0.78);
}

.page-hero--industries {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(47, 125, 116, 0.86), rgba(21, 21, 22, 0.96)),
    linear-gradient(90deg, rgba(217, 106, 79, 0.22), transparent);
}

.page-hero--industries p {
  color: rgba(255, 250, 240, 0.78);
}

.page-hero--work {
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.9), rgba(255, 255, 255, 0.7)),
    repeating-linear-gradient(90deg, rgba(47, 125, 116, 0.12) 0 1px, transparent 1px 46px);
}

.page-hero--contact {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(217, 106, 79, 0.82), rgba(21, 21, 22, 0.96) 54%, rgba(47, 125, 116, 0.86));
}

.route-showcase {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.94), rgba(255, 255, 255, 0.68)),
    linear-gradient(135deg, rgba(47, 125, 116, 0.12), rgba(217, 106, 79, 0.1));
}

.route-grid,
.signal-grid,
.lab-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.route-card,
.signal-card,
.lab-card {
  min-height: 230px;
  padding: 20px;
}

.route-card span,
.signal-card span,
.lab-card span,
.panel-kicker,
.brief-summary span,
.capability-stage span,
.process-stage-copy span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-command-center,
.capability-lab,
.industry-theater,
.transformation-lab,
.launch-system,
.project-brief-studio {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 420px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 240, 0.42)),
    linear-gradient(135deg, rgba(47, 125, 116, 0.16), rgba(213, 160, 55, 0.12));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-command-center::after,
.capability-lab::after,
.industry-theater::after,
.transformation-lab::after,
.launch-system::after,
.project-brief-studio::after {
  content: "";
  position: absolute;
  inset: auto -18% -28% auto;
  width: 260px;
  aspect-ratio: 1;
  border: 1px solid rgba(21, 21, 22, 0.12);
  border-radius: 50%;
  background:
    repeating-linear-gradient(45deg, rgba(21, 21, 22, 0.08) 0 1px, transparent 1px 14px),
    rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.page-hero--capabilities .capability-lab,
.page-hero--process .launch-system,
.page-hero--contact .project-brief-studio,
.page-hero--industries .industry-theater {
  color: var(--paper);
  border-color: rgba(255, 250, 240, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.12), rgba(255, 255, 255, 0.07)),
    rgba(21, 21, 22, 0.36);
}

.page-hero--capabilities .capability-lab p,
.page-hero--process .launch-system p,
.page-hero--contact .project-brief-studio p,
.page-hero--industries .industry-theater p {
  color: rgba(255, 250, 240, 0.78);
}

.service-command-center label,
.project-brief-studio label {
  font-weight: 950;
}

.service-command-center input,
.service-command-center select,
.project-brief-studio select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.estimator-output,
.brief-summary,
.capability-stage,
.process-stage-copy {
  position: relative;
  z-index: 1;
  padding: 18px;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.estimator-output strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.mode-buttons,
.process-controls {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mode-buttons button,
.process-controls button {
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 999px;
  color: inherit;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-weight: 950;
}

.mode-buttons button[aria-selected="true"],
.process-controls button[aria-selected="true"] {
  color: var(--ink);
  background: var(--amber);
  border-color: var(--amber);
}

.capability-stage h2,
.process-stage-copy h2 {
  max-width: 16ch;
  font-size: clamp(1.7rem, 3.8vw, 3.2rem);
}

.capability-stage li {
  margin-bottom: 8px;
  color: rgba(255, 250, 240, 0.84);
}

.industry-preview--stage {
  grid-template-columns: 1fr;
  padding: 0;
  border: 0;
  background: transparent;
}

.comparison-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: var(--split) 1fr;
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
}

.comparison-half {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px;
}

.comparison-half strong {
  font-size: 1.3rem;
}

.comparison-before {
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(21, 21, 22, 0.08), rgba(21, 21, 22, 0.03)),
    repeating-linear-gradient(0deg, transparent 0 16px, rgba(21, 21, 22, 0.06) 16px 17px);
}

.comparison-after {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(47, 125, 116, 0.95), rgba(21, 21, 22, 0.94));
}

.transformation-lab input[type="range"] {
  position: relative;
  z-index: 1;
  width: 100%;
}

.process-orbit {
  position: absolute;
  inset: 16px;
  pointer-events: none;
  opacity: 0.58;
}

.process-orbit span {
  position: absolute;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 50%;
  animation: orbitSpin 9s linear infinite;
}

.process-orbit span:nth-child(1) { inset: 4%; }
.process-orbit span:nth-child(2) { inset: 16%; animation-duration: 13s; animation-direction: reverse; }
.process-orbit span:nth-child(3) { inset: 28%; animation-duration: 17s; }
.process-orbit span:nth-child(4) { inset: 40%; animation-duration: 21s; animation-direction: reverse; }

.brief-summary a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin-top: 10px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--amber);
  font-weight: 950;
}

@keyframes orbitSpin {
  from { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.04); }
  to { transform: rotate(360deg) scale(1); }
}

@media (max-width: 980px) {
  .page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .route-grid,
  .signal-grid,
  .lab-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .page-hero h1 {
    max-width: 12ch;
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .route-grid,
  .signal-grid,
  .lab-grid {
    grid-template-columns: 1fr;
  }

  .service-command-center,
  .capability-lab,
  .industry-theater,
  .transformation-lab,
  .launch-system,
  .project-brief-studio {
    min-height: auto;
  }

  .comparison-stage {
    grid-template-columns: 1fr;
  }

  .page-hero--industries .industry-theater {
    padding: 16px;
  }

  .industry-preview--stage {
    gap: 12px;
  }

  .industry-preview--stage h2 {
    max-width: 100%;
    font-size: clamp(1.45rem, 7.4vw, 2.2rem);
  }

  .industry-preview--stage .preview-card {
    min-height: 220px;
  }

  .industry-preview--stage .preview-swatches i {
    height: 76px;
  }
}

/* V4 award-level style atlas */
.award-range {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 24px;
  align-items: stretch;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, #05070c, #151516 48%, #24303a);
  background-size: 44px 44px, 44px 44px, auto;
}

.award-range p {
  color: rgba(255, 250, 240, 0.78);
}

.award-range h2 {
  max-width: 14ch;
}

.award-range__scene {
  position: relative;
  display: block;
  min-height: 360px;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(110, 231, 249, 0.16), transparent 38%),
    linear-gradient(315deg, rgba(247, 210, 106, 0.12), transparent 42%),
    #080b12;
  perspective: 900px;
}

.award-range__scene::before,
.style-hero-object::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background:
    repeating-linear-gradient(90deg, transparent 0 20px, rgba(255, 255, 255, 0.08) 20px 21px),
    repeating-linear-gradient(0deg, transparent 0 20px, rgba(255, 255, 255, 0.06) 20px 21px);
  transform: rotateX(64deg) rotateZ(-18deg) translateY(42px);
  transform-origin: 50% 72%;
}

.award-range__plate {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.award-range__plate--one { top: 18%; left: 10%; }
.award-range__plate--two { top: 30%; right: 8%; }
.award-range__plate--three { bottom: 28%; left: 14%; }
.award-range__plate--four { bottom: 16%; right: 12%; }

.award-range__core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  width: min(74%, 320px);
  min-height: 132px;
  place-items: center;
  border: 1px solid rgba(110, 231, 249, 0.34);
  border-radius: 8px;
  color: var(--paper);
  background: linear-gradient(135deg, rgba(110, 231, 249, 0.18), rgba(247, 210, 106, 0.12)), rgba(5, 7, 12, 0.82);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  transform: translate(-50%, -50%) rotateX(12deg) rotateY(-16deg);
  font-weight: 950;
}

.page-hero--styles {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.044) 1px, transparent 1px),
    linear-gradient(135deg, #05070c, #121826 52%, #201827);
  background-size: 46px 46px, 46px 46px, auto;
}

.page-hero--styles p {
  color: rgba(255, 250, 240, 0.78);
}

.styles-page {
  color: var(--paper);
  background:
    linear-gradient(115deg, rgba(110, 231, 249, 0.1), transparent 32%),
    linear-gradient(245deg, rgba(247, 210, 106, 0.08), transparent 34%),
    #030407;
}

.styles-page::before {
  background:
    linear-gradient(135deg, rgba(110, 231, 249, 0.08), transparent 36%),
    linear-gradient(315deg, rgba(217, 106, 79, 0.08), transparent 42%);
}

.styles-page .site-header {
  max-width: 1440px;
  color: var(--paper);
  background: rgba(3, 4, 7, 0.78);
  border-color: rgba(255, 250, 240, 0.12);
}

.styles-page .brand-mark {
  color: #030407;
  background: var(--paper);
}

.styles-page .site-nav {
  color: rgba(255, 250, 240, 0.82);
}

.styles-page .site-nav a:hover,
.styles-page .site-nav a:focus-visible {
  border-color: rgba(255, 250, 240, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.styles-page .site-nav .nav-cta {
  color: #030407;
  background: var(--paper);
}

.styles-page .nav-toggle {
  border-color: rgba(255, 250, 240, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.styles-page .nav-toggle span[aria-hidden="true"] {
  background: var(--paper);
}

.styles-page main,
.styles-page .site-footer {
  max-width: 1440px;
}

.styles-page .site-footer {
  color: rgba(255, 250, 240, 0.86);
}

.styles-page .site-footer p {
  color: rgba(255, 250, 240, 0.66);
}

.style-hero-object {
  position: relative;
  display: block;
  min-height: 520px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(110, 231, 249, 0.14), transparent 36%),
    linear-gradient(315deg, rgba(155, 93, 229, 0.16), transparent 42%),
    #05070c;
  perspective: 1000px;
}

.style-hero-object__panel {
  position: absolute;
  z-index: 1;
  display: grid;
  min-height: 92px;
  padding: 16px;
  align-content: end;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  font-size: 0.9rem;
  font-weight: 950;
  text-transform: uppercase;
}

.style-hero-object__panel--one {
  width: 48%;
  left: 12%;
  top: 17%;
  transform: rotateY(-18deg) rotateX(10deg);
}

.style-hero-object__panel--two {
  width: 42%;
  right: 10%;
  top: 34%;
  background: rgba(247, 210, 106, 0.14);
  transform: rotateY(18deg) rotateX(8deg);
}

.style-hero-object__panel--three {
  width: 54%;
  left: 20%;
  bottom: 16%;
  background: rgba(110, 231, 249, 0.12);
  transform: rotateX(18deg);
}

.style-hero-object__label {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 10px 12px;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 999px;
  color: #05070c;
  background: #6ee7f9;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.style-atlas {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, #070a12, #151516 48%, #0d1720);
  background-size: 42px 42px, 42px 42px, auto;
  scroll-margin-top: 96px;
}

.style-atlas p {
  color: rgba(255, 250, 240, 0.76);
}

.style-experience-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.92fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  min-height: calc(100svh - 112px);
  padding: clamp(26px, 4.4vw, 62px);
  overflow: hidden;
  border-color: rgba(255, 250, 240, 0.16);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px),
    linear-gradient(155deg, transparent 0 54%, rgba(110, 231, 249, 0.14) 54% 68%, transparent 68%),
    linear-gradient(135deg, #030407, #080d16 48%, #170d18);
  background-size: 42px 42px, 42px 42px, auto, auto;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.42);
}

.style-experience-hero::before,
.style-experience-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: clamp(180px, 22vw, 360px);
  aspect-ratio: 1.2;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(110, 231, 249, 0.22) 28%, rgba(255, 255, 255, 0.06) 46%, rgba(247, 210, 106, 0.24) 72%, rgba(255, 255, 255, 0.78)),
    linear-gradient(45deg, rgba(255, 0, 110, 0.38), transparent 48%);
  clip-path: polygon(12% 22%, 72% 0, 100% 38%, 64% 92%, 0 78%);
  opacity: 0.48;
  filter: saturate(1.5) contrast(1.2);
  transform: rotate(-18deg);
  animation: glassDrift 8s ease-in-out infinite;
}

.style-experience-hero::before {
  right: -68px;
  top: 24px;
}

.style-experience-hero::after {
  left: -86px;
  bottom: 168px;
  width: clamp(150px, 18vw, 280px);
  opacity: 0.34;
  transform: rotate(18deg) scaleX(-1);
  animation-delay: -2s;
}

.style-experience__copy,
.style-preview-stage--hero,
.style-runway {
  position: relative;
  z-index: 1;
}

.style-experience__copy h1 {
  max-width: 9ch;
  margin-bottom: 12px;
  font-size: clamp(4rem, 7.2vw, 7rem);
  text-transform: uppercase;
}

.style-hero-statement {
  max-width: 12ch;
  margin-bottom: 16px;
  color: var(--paper);
  font-size: clamp(1.9rem, 4.2vw, 4.6rem);
  font-weight: 950;
  line-height: 0.98;
}

.style-experience__copy .hero-lede {
  max-width: 42rem;
  color: rgba(255, 250, 240, 0.74);
}

.style-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}

.style-hero-meta span,
.style-runway__label small {
  color: rgba(255, 250, 240, 0.7);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.style-hero-meta span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.style-experience-hero .button.primary {
  color: #030407;
  background: #6ee7f9;
  border-color: #6ee7f9;
  box-shadow: 0 0 34px rgba(110, 231, 249, 0.24);
}

.style-experience-hero .button.secondary {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 250, 240, 0.2);
}

.style-runway {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  min-width: 0;
}

.style-runway__label {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.style-runway__label span {
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.style-runway .style-card-grid {
  display: flex;
  max-width: 100%;
  gap: 12px;
  padding: 3px 2px 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(110, 231, 249, 0.52) rgba(255, 255, 255, 0.08);
}

.style-runway .style-card-grid .style-card {
  min-width: 264px;
  min-height: 190px;
  padding: 12px;
  scroll-snap-align: start;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
}

.style-atlas__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.82fr);
  gap: 18px;
  align-items: start;
}

.style-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.style-card-grid .style-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 276px;
  padding: 16px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.style-card:hover,
.style-card:focus-visible,
.style-card[aria-selected="true"] {
  transform: translateY(-3px);
  border-color: rgba(110, 231, 249, 0.52);
  background: linear-gradient(135deg, rgba(110, 231, 249, 0.14), rgba(247, 210, 106, 0.08));
}

.style-card__demo {
  position: relative;
  display: block;
  min-height: 126px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    rgba(5, 7, 12, 0.62);
  background-size: 18px 18px, 18px 18px, auto;
}

.style-card__demo i {
  position: absolute;
  display: block;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.68);
}

.style-card__demo i:nth-child(1) { top: 12px; left: 12px; width: 48%; height: 8px; opacity: 0.62; }
.style-card__demo i:nth-child(2) { top: 34px; left: 12px; width: 42%; height: 42px; }
.style-card__demo i:nth-child(3) { top: 28px; right: 16px; width: 34%; height: 58px; background: #6ee7f9; }
.style-card__demo i:nth-child(4) { right: 46px; bottom: 20px; width: 24%; height: 36px; background: #f7d26a; }
.style-card__demo i:nth-child(5) { left: 12px; bottom: 16px; width: 34%; height: 14px; background: #ffffff; }
.style-card__demo i:nth-child(6) { left: 52%; right: 14px; bottom: 14px; height: 10px; opacity: 0.42; }
.style-card__demo i:nth-child(7) { left: 12px; bottom: 42px; width: 18%; height: 18px; opacity: 0.74; }
.style-card__demo i:nth-child(8) { right: 14px; top: 12px; width: 22%; height: 8px; opacity: 0.48; }

.style-card__demo--immersive i:nth-child(3),
.style-card__demo--immersive i:nth-child(4),
.style-card__demo--future i:nth-child(3),
.style-card__demo--future i:nth-child(4) {
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: rotate(-12deg);
  box-shadow: 0 18px 42px rgba(110, 231, 249, 0.22);
}

.style-card__demo--luxury {
  background: linear-gradient(135deg, #120e09, #2b2114);
}

.style-card__demo--luxury i:nth-child(3),
.style-card__demo--commerce i:nth-child(3),
.style-card__demo--fashion i:nth-child(2),
.style-card__demo--fashion i:nth-child(3) {
  height: 76px;
  background: linear-gradient(135deg, #d6b76a, #fff5cf);
}

.style-card__demo--editorial {
  background: #f4efe6;
}

.style-card__demo--editorial i,
.style-card__demo--local-seo i,
.style-card__demo--corporate i,
.style-card__demo--real-estate i,
.style-card__demo--dashboard i {
  background: #1b1b1c;
}

.style-card__demo--saas i:nth-child(3),
.style-card__demo--app i:nth-child(2),
.style-card__demo--dashboard i:nth-child(4) {
  width: 54%;
  height: 72px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0 36%, transparent 36%),
    linear-gradient(135deg, #6c5cff, #15c8a8);
}

.style-card__demo--hospitality i:nth-child(2),
.style-card__demo--real-estate i:nth-child(4),
.style-card__demo--personal i:nth-child(2) {
  width: 38%;
  height: 72px;
  background: linear-gradient(135deg, #bc6c25, #386641);
}

.style-card__demo--local-service i:nth-child(2),
.style-card__demo--local-seo i:nth-child(6) {
  background: #ffb703;
}

.style-card__demo--scroll i:nth-child(1),
.style-card__demo--scroll i:nth-child(2),
.style-card__demo--scroll i:nth-child(3) {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff006e;
}

.style-card__demo--scroll i:nth-child(3) {
  top: 72px;
  left: 42%;
  background: #3a86ff;
}

.style-card__demo--scroll i:nth-child(4) {
  left: 56%;
  top: 20px;
  width: 34%;
  height: 74px;
  transform: skewY(-10deg);
}

.style-card__meta > span {
  margin-bottom: 10px;
  color: #6ee7f9;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.style-card__meta strong {
  display: block;
  margin-bottom: 8px;
}

.style-card__meta small {
  color: rgba(255, 250, 240, 0.68);
  line-height: 1.42;
}

.style-preview-stage {
  --style-accent: #6ee7f9;
  --style-accent-2: #f7d26a;
  --style-bg: #05070c;
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
  min-height: 620px;
  padding: 22px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--style-accent) 18%, transparent), transparent 48%),
    linear-gradient(315deg, color-mix(in srgb, var(--style-accent-2) 16%, transparent), transparent 48%),
    var(--style-bg);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.style-preview-stage__copy {
  position: relative;
  z-index: 1;
}

.style-preview-stage h2,
.style-preview-stage h3 {
  max-width: 12ch;
  color: var(--paper);
  font-size: 2.7rem;
}

.style-preview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.style-preview-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.style-preview-mockup {
  position: relative;
  z-index: 1;
  min-height: 300px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  background:
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(255, 255, 255, 0.08) 22px 23px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
  overflow: hidden;
}

.style-preview-stage--hero {
  position: relative;
  top: auto;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 1fr);
  align-items: stretch;
  min-height: 450px;
  align-content: space-between;
  padding: clamp(16px, 2vw, 24px);
}

.style-preview-stage--hero::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -54px;
  width: 220px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 250, 240, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(110, 231, 249, 0.12) 38%, rgba(247, 210, 106, 0.2) 74%, rgba(255, 255, 255, 0.68));
  clip-path: polygon(12% 12%, 88% 0, 100% 72%, 28% 100%, 0 42%);
  opacity: 0.42;
  transform: rotate(18deg);
}

.style-demo-browser {
  min-height: 300px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent),
    rgba(5, 7, 12, 0.72);
  background-size: 28px 28px, 28px 28px, auto, auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.style-demo-browser span {
  position: absolute;
  display: block;
  border-radius: 8px;
}

.demo-browser-bar {
  left: 18px;
  right: 18px;
  top: 16px;
  height: 18px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  background:
    linear-gradient(90deg, var(--style-accent) 0 14%, transparent 14% 19%, rgba(255, 255, 255, 0.36) 19% 33%, transparent 33%),
    rgba(255, 255, 255, 0.08);
}

.demo-wordmark {
  left: 24px;
  top: 58px;
  width: 82px;
  height: 16px;
  background: var(--paper);
}

.demo-headline {
  left: 24px;
  height: 28px;
  background: var(--paper);
}

.demo-headline--one {
  top: 96px;
  width: 42%;
}

.demo-headline--two {
  top: 132px;
  width: 31%;
  opacity: 0.68;
}

.demo-product {
  right: 13%;
  top: 72px;
  width: 34%;
  min-width: 118px;
  height: 150px;
  border: 1px solid rgba(255, 250, 240, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), color-mix(in srgb, var(--style-accent) 45%, transparent) 28%, rgba(255, 255, 255, 0.12) 52%, color-mix(in srgb, var(--style-accent-2) 44%, transparent)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  transform: rotate(-10deg);
  animation: demoFloat 5s ease-in-out infinite;
}

.demo-product--two {
  right: 5%;
  top: 176px;
  width: 21%;
  min-width: 86px;
  height: 104px;
  background: linear-gradient(135deg, var(--style-accent-2), rgba(255, 255, 255, 0.12));
  transform: rotate(14deg);
  animation-delay: -1.6s;
}

.demo-content-card {
  left: 24px;
  width: 22%;
  min-width: 86px;
  height: 74px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  background: rgba(255, 255, 255, 0.12);
}

.demo-content-card--one {
  bottom: 72px;
}

.demo-content-card--two {
  left: calc(24px + 24%);
  bottom: 72px;
  background: color-mix(in srgb, var(--style-accent) 22%, transparent);
}

.demo-cta {
  left: 24px;
  bottom: 28px;
  width: 154px;
  height: 28px;
  background: linear-gradient(90deg, var(--style-accent), var(--style-accent-2));
  box-shadow: 0 0 28px color-mix(in srgb, var(--style-accent) 35%, transparent);
}

.demo-footer-strip {
  right: 24px;
  bottom: 28px;
  width: 30%;
  height: 28px;
  background: rgba(255, 255, 255, 0.16);
}

.style-demo-scene {
  transform-style: preserve-3d;
}

.style-demo-scene[data-demo-scene="luxury-product"],
.style-demo-scene[data-demo-scene="fashion"],
.style-demo-scene[data-demo-scene="ecommerce-product"] {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, rgba(214, 183, 106, 0.2), transparent 48%),
    #120e09;
  background-size: 28px 28px, auto, auto;
}

.style-demo-scene[data-demo-scene="minimal-editorial"],
.style-demo-scene[data-demo-scene="corporate"],
.style-demo-scene[data-demo-scene="clean-local-seo"],
.style-demo-scene[data-demo-scene="real-estate"],
.style-demo-scene[data-demo-scene="dashboard"] {
  background:
    repeating-linear-gradient(0deg, rgba(21, 21, 22, 0.08) 0 1px, transparent 1px 26px),
    rgba(255, 255, 255, 0.82);
}

.style-demo-scene[data-demo-scene="minimal-editorial"] .demo-wordmark,
.style-demo-scene[data-demo-scene="minimal-editorial"] .demo-headline,
.style-demo-scene[data-demo-scene="corporate"] .demo-wordmark,
.style-demo-scene[data-demo-scene="corporate"] .demo-headline,
.style-demo-scene[data-demo-scene="clean-local-seo"] .demo-wordmark,
.style-demo-scene[data-demo-scene="clean-local-seo"] .demo-headline,
.style-demo-scene[data-demo-scene="real-estate"] .demo-wordmark,
.style-demo-scene[data-demo-scene="real-estate"] .demo-headline,
.style-demo-scene[data-demo-scene="dashboard"] .demo-wordmark,
.style-demo-scene[data-demo-scene="dashboard"] .demo-headline {
  background: #111111;
}

.style-demo-scene[data-demo-scene="minimal-editorial"] .demo-browser-bar,
.style-demo-scene[data-demo-scene="corporate"] .demo-browser-bar,
.style-demo-scene[data-demo-scene="clean-local-seo"] .demo-browser-bar,
.style-demo-scene[data-demo-scene="real-estate"] .demo-browser-bar,
.style-demo-scene[data-demo-scene="dashboard"] .demo-browser-bar {
  border-color: rgba(21, 21, 22, 0.14);
  background:
    linear-gradient(90deg, var(--style-accent) 0 18%, transparent 18% 24%, rgba(21, 21, 22, 0.18) 24% 42%, transparent 42%),
    rgba(255, 255, 255, 0.8);
}

.style-demo-scene[data-demo-scene="minimal-editorial"] .demo-content-card,
.style-demo-scene[data-demo-scene="corporate"] .demo-content-card,
.style-demo-scene[data-demo-scene="clean-local-seo"] .demo-content-card,
.style-demo-scene[data-demo-scene="real-estate"] .demo-content-card,
.style-demo-scene[data-demo-scene="dashboard"] .demo-content-card,
.style-demo-scene[data-demo-scene="minimal-editorial"] .demo-footer-strip,
.style-demo-scene[data-demo-scene="corporate"] .demo-footer-strip,
.style-demo-scene[data-demo-scene="clean-local-seo"] .demo-footer-strip,
.style-demo-scene[data-demo-scene="real-estate"] .demo-footer-strip,
.style-demo-scene[data-demo-scene="dashboard"] .demo-footer-strip {
  border-color: rgba(21, 21, 22, 0.12);
  background: rgba(21, 21, 22, 0.08);
}

.style-demo-scene[data-demo-scene="bold-saas"],
.style-demo-scene[data-demo-scene="app-ui"] {
  background:
    linear-gradient(135deg, rgba(108, 92, 255, 0.2), rgba(21, 200, 168, 0.12)),
    #08111f;
}

.style-demo-scene[data-demo-scene="bold-saas"] .demo-product,
.style-demo-scene[data-demo-scene="app-ui"] .demo-product,
.style-demo-scene[data-demo-scene="dashboard"] .demo-product {
  width: 48%;
  height: 170px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0 30%, transparent 30%),
    linear-gradient(135deg, var(--style-accent), var(--style-accent-2));
  transform: rotate(0deg);
}

.style-demo-scene[data-demo-scene="luxury-product"] .demo-product,
.style-demo-scene[data-demo-scene="ecommerce-product"] .demo-product,
.style-demo-scene[data-demo-scene="fashion"] .demo-product {
  width: 28%;
  height: 206px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(214, 183, 106, 0.48) 42%, rgba(255, 255, 255, 0.08)),
    #2b2114;
}

.style-demo-scene[data-demo-scene="hospitality"] .demo-product,
.style-demo-scene[data-demo-scene="real-estate"] .demo-product,
.style-demo-scene[data-demo-scene="personal-brand"] .demo-product {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--style-accent) 74%, #ffffff), color-mix(in srgb, var(--style-accent-2) 64%, #111111)),
    rgba(255, 255, 255, 0.1);
}

.style-demo-scene[data-demo-scene="experimental-scroll"],
.style-demo-scene[data-demo-scene="dark-futuristic"] {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    #030712;
  background-size: 22px 22px, 22px 22px, auto;
}

.mockup-nav,
.mockup-title,
.mockup-strip,
.mockup-object {
  position: absolute;
  display: block;
  border-radius: 8px;
  background: var(--style-accent);
}

.mockup-nav {
  left: 18px;
  right: 18px;
  top: 18px;
  height: 16px;
  opacity: 0.68;
}

.mockup-title {
  left: 22px;
  top: 58px;
  width: 54%;
  height: 74px;
  background: var(--paper);
}

.mockup-object {
  width: 118px;
  height: 118px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.mockup-object--one {
  right: 14%;
  top: 36%;
  transform: rotate(14deg);
}

.mockup-object--two {
  right: 30%;
  bottom: 16%;
  width: 82px;
  height: 82px;
  background: var(--style-accent-2);
  transform: rotate(-18deg);
}

.mockup-strip {
  left: 22px;
  right: 22px;
  bottom: 24px;
  height: 54px;
  background: linear-gradient(90deg, var(--style-accent), var(--style-accent-2));
}

.style-preview-mockup[data-style-mockup="minimal-editorial"],
.style-preview-mockup[data-style-mockup="clean-local-seo"],
.style-preview-mockup[data-style-mockup="corporate"],
.style-preview-mockup[data-style-mockup="real-estate"],
.style-preview-mockup[data-style-mockup="dashboard"] {
  background:
    repeating-linear-gradient(0deg, rgba(21, 21, 22, 0.08) 0 1px, transparent 1px 26px),
    rgba(255, 255, 255, 0.78);
}

.style-preview-mockup[data-style-mockup="luxury-product"] .mockup-object,
.style-preview-mockup[data-style-mockup="fashion"] .mockup-object,
.style-preview-mockup[data-style-mockup="ecommerce-product"] .mockup-object {
  width: 160px;
  height: 210px;
}

.style-preview-mockup[data-style-mockup="app-ui"] .mockup-title,
.style-preview-mockup[data-style-mockup="dashboard"] .mockup-title,
.style-preview-mockup[data-style-mockup="bold-saas"] .mockup-title {
  width: 64%;
  height: 110px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86) 0 42%, transparent 42%),
    linear-gradient(135deg, var(--style-accent), var(--style-accent-2));
}

.style-preview-mockup[data-style-mockup="experimental-scroll"] .mockup-strip,
.style-preview-mockup[data-style-mockup="dark-futuristic"] .mockup-strip,
.style-preview-mockup[data-style-mockup="immersive-3d"] .mockup-strip {
  height: 96px;
  transform: skewY(-7deg);
}

.style-proof {
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.92), rgba(255, 255, 255, 0.72)),
    linear-gradient(90deg, rgba(110, 231, 249, 0.1), rgba(213, 160, 55, 0.1));
}

@keyframes glassDrift {
  0%, 100% { transform: translateY(0) rotate(-18deg); }
  50% { transform: translateY(18px) rotate(-9deg); }
}

@keyframes demoFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

@media (max-width: 1100px) {
  .award-range,
  .style-atlas__layout {
    grid-template-columns: 1fr;
  }

  .style-experience-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .style-preview-stage {
    position: relative;
    top: auto;
    min-height: 520px;
  }

  .style-preview-stage--hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .styles-page .site-header {
    padding: 14px;
  }

  .styles-page .brand {
    max-width: calc(100% - 58px);
  }

  .style-experience-hero {
    padding: 20px 16px;
  }

  .style-experience-hero::before {
    right: -80px;
    top: 32px;
    opacity: 0.34;
  }

  .style-experience-hero::after {
    display: none;
  }

  .style-experience__copy h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .style-hero-statement {
    max-width: 11ch;
    font-size: clamp(1.8rem, 10vw, 3rem);
  }

  .style-experience__copy .hero-lede {
    font-size: 1rem;
  }

  .style-runway {
    order: 2;
  }

  .style-preview-stage--hero {
    order: 3;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .award-range__scene,
  .style-hero-object {
    min-height: 420px;
  }

  .style-card-grid {
    display: flex;
    max-width: 100%;
    gap: 10px;
    padding-bottom: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .style-card-grid .style-card {
    min-width: 232px;
    min-height: 202px;
    scroll-snap-align: start;
  }

  .style-preview-stage {
    min-height: auto;
    padding: 16px;
  }

  .style-preview-stage h2,
  .style-preview-stage h3 {
    max-width: 100%;
    font-size: 2rem;
  }

  .style-preview-mockup {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .style-experience-hero::before,
  .style-experience-hero::after,
  .demo-product {
    animation: none;
  }
}

@media (max-width: 760px) {
  .entrance-sequence {
    width: min(320px, calc(100vw - 32px));
  }

  .entrance-sequence__grid {
    gap: 6px;
    padding: 14px;
  }

  .entrance-sequence__grid strong {
    font-size: clamp(1rem, 6vw, 1.35rem);
  }

  .entrance-sequence__grid::after {
    height: 5px;
    margin-top: 6px;
  }

  .universe-controls,
  .motion-demo-board,
  .component-showroom__grid {
    grid-template-columns: 1fr;
  }

  .hero-impact-line {
    max-width: 12ch;
    font-size: clamp(1.3rem, 8vw, 2.3rem);
  }

  .hero-signal-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-vector-field {
    opacity: 0.52;
  }

  .hero-depth-stack {
    display: none;
  }

  .universe-controls button {
    width: 100%;
    min-height: 54px;
    overflow-wrap: anywhere;
  }

  .motion-demo-board button {
    min-height: 128px;
  }

  .universe-preview__surface em {
    max-width: calc(100% - 36px);
    white-space: normal;
  }

  .studio-cursor {
    display: none;
  }
}
