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

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: nowrap;
  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;
}

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

.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.9fr) minmax(320px, 0.7fr);
  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); }

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

@media (max-width: 980px) {
  .hero,
  .visual-composition__shell,
  .industry-preview,
  .content-grid,
  .contact-section {
    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);
  }

  .hero-proof,
  .capability-strip,
  .capability-grid,
  .website-type-grid,
  .lookbook-grid,
  .consultation-path,
  .pattern-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 {
    transform: 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;
}

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

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

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

@media (max-width: 760px) {
  .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;
  }
}
