:root {
  --ink: #1a1a1a;
  --ink-2: #171717;
  --ink-3: #202020;
  --paper: #f4f1ea;
  --muted: #9d988f;
  --line: rgba(244, 241, 234, 0.13);
  --accent: #8be0ff;
  --acid: #8be0ff;
  --hot: #ff6548;
  --ice: #8be0ff;
  --shadow: 0 42px 130px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: "Segoe UI Variable Text", "Segoe UI", Arial, ui-sans-serif, system-ui, sans-serif;
  font-synthesis: none;
  font-kerning: normal;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

main,
section,
article,
figure {
  min-width: 0;
}

h1, h2, h3, dt, strong, b,
button, .primary, .secondary, .header-action {
  font-family: "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
}

button, a, summary { -webkit-tap-highlight-color: transparent; }
button, summary { touch-action: manipulation; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

.skip-link {
  position: fixed; top: 10px; left: 12px; z-index: 1000;
  padding: 12px 16px; border-radius: 999px; color: var(--ink);
  background: var(--paper); font-weight: 850;
  transform: translateY(-160%); transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }
.anchor-target { position: absolute; top: 0; }
.touch-hint { display: none; }

body.modal-open {
  overflow: hidden;
}

section {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.hero,
.intro-landing,
.pricing-modal {
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

.intro-landing {
  --intro-progress: 0;
  position: relative;
  z-index: 4;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
}

.intro-landing::before {
  content: "";
  position: absolute;
  width: min(64vw, 820px);
  aspect-ratio: 1;
  border: 1px solid rgba(139,224,255,0.14);
  opacity: calc(0.62 - var(--intro-progress) * 0.5);
  transform: scale(calc(0.72 + var(--intro-progress) * 0.18));
  animation: introFrame 5.2s ease-in-out infinite;
}

.intro-mark {
  position: relative;
  isolation: isolate;
  width: min(52vw, 520px);
  opacity: calc(1 - var(--intro-progress) * 0.78);
  transform: translateY(calc(var(--intro-progress) * -24px)) scale(calc(1 - var(--intro-progress) * 0.06));
  will-change: transform, opacity;
}

.intro-mark::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: 54%;
  aspect-ratio: 1;
  border: 1px solid rgba(244,241,234,0.3);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.58) rotate(42deg);
  animation: introFrameResolve 2.9s cubic-bezier(.16,.72,.18,1) 260ms both;
}

.intro-mark img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 24px rgba(139,224,255,0.08));
  animation: introLogoIn 2.25s cubic-bezier(.16,.72,.18,1) both;
}

.intro-scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(28px, 5svh, 54px);
  display: grid;
  justify-items: center;
  gap: 12px;
  color: rgba(244,241,234,0.52);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  opacity: calc(1 - var(--intro-progress) * 1.35);
  transform: translateX(-50%);
  transition: color 180ms ease;
  animation: introCueIn 850ms ease 2.15s both;
}

.intro-scroll:hover,
.intro-scroll:focus-visible { color: var(--accent); }

.intro-scroll i {
  position: relative;
  width: 1px;
  height: 42px;
  overflow: hidden;
  background: rgba(244,241,234,0.15);
}

.intro-scroll i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  transform: translateY(-110%);
  animation: introScrollLine 1.9s ease-in-out 2.7s infinite;
}

body.intro-active .site-header {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-110%);
}

.site-header {
  transition: opacity 260ms ease, transform 340ms cubic-bezier(.2,.8,.2,1), background 180ms ease;
}

@keyframes introLogoIn {
  0% { opacity: 0; transform: translateY(18px) scale(0.91); filter: blur(15px) brightness(0.5); }
  42% { opacity: 0.38; filter: blur(7px) brightness(0.92); }
  78% { opacity: 0.92; transform: translateY(1px) scale(0.995); filter: blur(1px) brightness(1.12); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0) brightness(1) drop-shadow(0 0 24px rgba(139,224,255,0.08)); }
}

@keyframes introFrame {
  0%, 100% { transform: scale(0.7) rotate(-1deg); opacity: 0.2; }
  50% { transform: scale(0.79) rotate(1deg); opacity: 0.58; }
}

@keyframes introFrameResolve {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.58) rotate(42deg); }
  34% { opacity: 0.42; }
  72% { opacity: 0.18; transform: translate(-50%, -50%) scale(1.06) rotate(-2deg); }
  100% { opacity: 0.11; transform: translate(-50%, -50%) scale(1) rotate(0); }
}

@keyframes introCueIn {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes introScrollLine {
  0% { transform: translateY(-110%); }
  58%, 100% { transform: translateY(110%); }
}

/* Einheitlicher nahezu schwarzer Seitenhintergrund ohne Abschnittsverläufe. */
body,
body::before,
main,
main > section,
.site-footer {
  background: #050505 !important;
}

main > section:not(.intro-landing) {
  border-top: 1px solid rgba(244,241,234,0.11);
}

main > section.scroll-section {
  opacity: 0.76;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 600ms cubic-bezier(.2,.75,.2,1);
}

main > section.scroll-section.in-view {
  opacity: 1;
  transform: translateY(0);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 80% 8%, rgba(255,255,255,0.045), transparent 28%),
    radial-gradient(circle at 12% 82%, rgba(255,255,255,0.035), transparent 31%),
    linear-gradient(145deg, #121212 0%, #1a1a1a 48%, #202020 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, rgba(0,0,0,0.72), transparent 88%);
}

.field {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.32;
  mix-blend-mode: screen;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(244,241,234,0.11);
  background: rgba(15, 16, 16, 0.76);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.24);
}

.brand img,
.cta img {
  display: block;
  object-fit: contain;
  width: 214px;
  height: auto;
  max-height: none;
  filter: none;
  image-rendering: auto;
  transform: none;
  backface-visibility: hidden;
}

.cta img {
  width: min(320px, 72vw);
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

a { color: inherit; text-decoration: none; }
nav a,
.nav-link {
  color: rgba(244,241,234,0.58);
}

.nav-link {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(244,241,234,0.58);
  font: inherit;
  text-transform: inherit;
  cursor: pointer;
}

nav a:hover,
.nav-link:hover,
.nav-link:focus-visible {
  color: var(--paper);
}
.header-action { justify-self: end; }

.menu-toggle {
  display: none; width: 46px; height: 46px; align-items: center;
  justify-content: center; flex-direction: column; gap: 5px; padding: 0;
  border: 1px solid var(--line); border-radius: 50%; color: var(--paper);
  background: rgba(255,255,255,0.06); cursor: pointer;
}
.menu-toggle span {
  width: 18px; height: 2px; border-radius: 99px; background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}
.site-header.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header-action,
.primary,
.secondary {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  border: 0;
  font-family: inherit;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.header-action,
.primary {
  color: var(--ink);
  background: linear-gradient(135deg, #f4f1ea, #bdb7ad);
  box-shadow: 0 18px 48px rgba(0,0,0,0.34);
}

.secondary {
  border: 1px solid var(--line);
  color: var(--paper);
  background: rgba(255,255,255,0.055);
}

.primary:hover,
.secondary:hover,
.header-action:hover { transform: translateY(-2px); }

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

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

.imprint-modal {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: grid;
  place-items: center;
  padding: 24px;
}

.imprint-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,8,8,0.78);
  backdrop-filter: blur(16px);
}

.imprint-window {
  position: relative;
  width: min(900px, 100%);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  padding: clamp(34px, 5vw, 60px);
  border: 1px solid rgba(139,224,255,0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(139,224,255,0.07), transparent 42%),
    #171818;
  box-shadow: 0 36px 110px rgba(0,0,0,0.62);
}

.imprint-window h2 {
  margin: 8px 0 34px;
  font-size: clamp(42px, 6vw, 72px);
}

.legal-copy {
  color: rgba(244,241,234,0.78);
  font-size: 16px;
  line-height: 1.7;
}

.legal-copy h2 {
  margin: 52px 0 18px;
  font-size: clamp(30px, 4vw, 48px);
}

.legal-copy h3 {
  margin: 34px 0 10px;
  color: var(--paper);
  font-size: 20px;
}

.legal-copy p {
  margin: 0 0 18px;
}

.legal-copy a {
  color: var(--accent);
}

.imprint-window address {
  display: grid;
  gap: 10px;
  color: rgba(244,241,234,0.76);
  font-size: clamp(17px, 2vw, 20px);
  font-style: normal;
  line-height: 1.5;
}

.imprint-window address strong {
  margin-bottom: 8px;
  color: var(--paper);
  font-size: 1.2em;
}

.imprint-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(244,241,234,0.16);
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: var(--paper);
  font: 300 28px/1 inherit;
  cursor: pointer;
}

.imprint-close:hover,
.imprint-close:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.pricing-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
}

.pricing-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,8,8,0.72);
  backdrop-filter: blur(16px);
}

.pricing-window {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(760px, calc(100svh - 48px));
  overflow: auto;
  border: 1px solid rgba(244,241,234,0.18);
  border-radius: 12px;
  padding: clamp(26px, 4vw, 44px);
  color: var(--paper);
  background:
    radial-gradient(circle at 86% 8%, rgba(255,255,255,0.08), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.032)),
    #1a1a1a;
  box-shadow: 0 44px 140px rgba(0,0,0,0.62);
}

.pricing-window h2 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.35em;
  max-width: 860px;
  margin-bottom: 28px;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 760;
  line-height: 1.05;
}

.pricing-release {
  display: inline-block;
  color: var(--accent);
  font-size: 0.38em;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.pricing-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(244,241,234,0.14);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(255,255,255,0.06);
  font: inherit;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

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

.price-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(244,241,234,0.16);
  border-radius: 10px;
  padding: 24px;
  color: inherit;
  background: rgba(255,255,255,0.055);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244,241,234,0.34);
  background: rgba(255,255,255,0.075);
  box-shadow: 0 24px 70px rgba(0,0,0,0.34);
}

.price-card.featured {
  position: relative;
  z-index: 1;
  min-height: 350px;
  padding: 28px;
  border-color: rgba(139,224,255,0.72);
  background:
    linear-gradient(135deg, rgba(139,224,255,0.16), transparent 52%),
    rgba(255,255,255,0.065);
  box-shadow: 0 24px 70px rgba(139,224,255,0.12);
}

.price-card.featured:hover {
  border-color: var(--accent);
  box-shadow: 0 28px 80px rgba(139,224,255,0.18);
}

.price-popular {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: #050505;
  background: var(--accent);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.price-card span {
  display: block;
  margin-bottom: 18px;
  color: rgba(244,241,234,0.82);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.06;
}

.price-card sup {
  font-size: 0.45em;
  vertical-align: super;
}

.price-card del,
.price-card strong s {
  display: inline-block;
  margin-left: 10px;
  color: rgba(244,241,234,0.42);
  font-size: 0.58em;
  text-decoration-thickness: 3px;
  text-decoration-color: rgba(255,101,72,0.9);
}

.price-card p,
.pricing-note {
  color: rgba(244,241,234,0.84);
  font-size: 16px;
  line-height: 1.5;
}

.price-card .price-total {
  display: block;
  margin: -8px 0 18px;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
}

.price-card .price-tax {
  display: block;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(244,241,234,0.14);
  color: rgba(244,241,234,0.88);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
}

.price-card .price-bonus {
  margin-bottom: 12px;
  color: var(--accent);
  font-weight: 700;
}

.price-card .price-cancel {
  display: block;
  margin: 4px 0 18px;
  color: rgba(244,241,234,0.72);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.pricing-note {
  margin: 20px 0 0;
  color: rgba(244,241,234,0.86);
  font-size: 14px;
  font-weight: 600;
}

.pricing-mail {
  margin-top: 24px;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(520px, 0.86fr) minmax(660px, 1.14fr);
  gap: clamp(22px, 3vw, 54px);
  align-items: center;
  padding: 136px clamp(20px, 3vw, 56px) 56px;
}

.hero-copy { max-width: 760px; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--hot);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 24px;
  font-size: clamp(64px, 4.9vw, 96px);
  font-weight: 700;
  line-height: 1.01;
  letter-spacing: 0;
  max-width: 880px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(48px, 4.3vw, 66px);
  font-weight: 760;
  line-height: 1.04;
  letter-spacing: 0;
}

.lead {
  max-width: 710px;
  color: rgba(244,241,234,0.76);
  font-size: clamp(20px, 1.35vw, 24px);
  line-height: 1.48;
}

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

.hero-proof span {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(244,241,234,0.13);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--accent);
  background: rgba(255,255,255,0.035);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.22;
  box-shadow: none;
  transition: background-color 720ms cubic-bezier(.2,.75,.25,1), color 520ms ease, border-color 720ms ease;
}

.hero-proof b {
  flex: 0 0 auto;
  min-width: 58px;
  color: inherit;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-proof .hero-proof-long {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
}

.hero-proof-long small {
  color: rgba(139,224,255,0.78);
  font-size: 0.76em;
  font-weight: 600;
  line-height: 1.25;
  transition: color 520ms ease;
  transition-delay: inherit;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 42px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 34px 0 0;
}

.metrics div {
  min-height: 118px;
  min-width: 0;
  container-type: inline-size;
  display: grid;
  grid-template-rows: 38px auto;
  align-content: start;
  overflow: hidden;
  border: 1px solid rgba(244,241,234,0.11);
  border-radius: 10px;
  padding: 19px 14px 14px;
  background: rgba(255,255,255,0.025);
  box-shadow: none;
  transition: background-color 720ms cubic-bezier(.2,.75,.25,1), color 520ms ease, border-color 720ms ease;
}

.metrics dt {
  max-width: 100%;
  font-size: clamp(28px, 2.2vw, 38px);
  font-weight: 760;
  line-height: 1;
}

.metrics dt.metric-brand {
  max-width: 100%;
  color: var(--paper);
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1;
  overflow-wrap: anywhere;
}

.metrics dd {
  margin: 10px 0 0;
  color: rgba(244,241,234,0.58);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.metrics dt,
.metrics dd {
  transition: color 520ms ease;
  transition-delay: inherit;
}

.metrics > div > dt,
.metrics > div > dt.metric-brand {
  width: 100%;
  max-width: 100%;
  height: 38px;
  display: flex;
  align-items: flex-start;
  color: var(--paper);
  font-size: clamp(20px, 13cqw, 34px);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1;
  overflow-wrap: normal;
  white-space: nowrap;
}

.metrics > div > dd {
  align-self: start;
  margin: 8px 0 0;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.aha-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  max-width: 720px;
  margin-top: 18px;
  color: rgba(244,241,234,0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.aha-flow span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(244,241,234,0.12);
  border-radius: 999px;
  padding: 0 12px;
  color: rgba(244,241,234,0.72);
  background: rgba(255,255,255,0.035);
  transition: background-color 620ms cubic-bezier(.2,.75,.25,1), color 440ms ease, border-color 620ms ease;
}

.hero.color-reveal .hero-proof span,
.hero.color-reveal .metrics div,
.hero.color-reveal .aha-flow span {
  border-color: var(--accent);
  color: #050505;
  background-color: var(--accent);
}

.hero.color-reveal .hero-proof-long small,
.hero.color-reveal .metrics dd,
.hero.color-reveal .metrics dt,
.hero.color-reveal .metrics dt.metric-brand {
  color: rgba(5,5,5,0.78);
}

.hero .hero-proof span:nth-child(1) { transition-delay: 600ms; }
.hero .hero-proof span:nth-child(2) { transition-delay: 850ms; }
.hero .hero-proof span:nth-child(3) { transition-delay: 1100ms; }
.hero .hero-proof span:nth-child(4) { transition-delay: 1350ms; }
.hero .metrics div:nth-child(1) { transition-delay: 1700ms; }
.hero .metrics div:nth-child(2) { transition-delay: 1950ms; }
.hero .metrics div:nth-child(3) { transition-delay: 2200ms; }
.hero .aha-flow span:nth-of-type(1) { transition-delay: 2600ms; }
.hero .aha-flow span:nth-of-type(2) { transition-delay: 2800ms; }
.hero .aha-flow span:nth-of-type(3) { transition-delay: 3000ms; }
.hero .aha-flow span:nth-of-type(4) { transition-delay: 3200ms; }

.aha-flow i {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(244,241,234,0.18), var(--accent));
}

.product-stage {
  position: relative;
  min-height: 700px;
  display: grid;
  place-items: center;
  perspective: 1200px;
  overflow: clip;
}

.aura {
  display: none;
}

.quader-hero-device {
  position: relative;
  width: min(100%, 820px);
  transform-style: preserve-3d;
  transform: rotateX(5deg) rotateY(-9deg) translateZ(0);
  border: 1px solid rgba(244,241,234,0.22);
  border-radius: 8px;
  overflow: hidden;
  background: #151716;
  box-shadow:
    0 42px 140px rgba(0,0,0,0.62),
    0 0 0 1px rgba(255,255,255,0.055) inset;
  animation: float 6s ease-in-out infinite;
}

.quader-hero-device::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(255,255,255,0.2), transparent 18%, transparent 74%, rgba(139,224,255,0.1)),
    radial-gradient(circle at 72% 25%, rgba(139,224,255,0.16), transparent 30%);
  mix-blend-mode: screen;
}

.quader-hero-device::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -30px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.65);
  filter: blur(22px);
}

.quader-hero-device img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  aspect-ratio: 1918 / 920;
  object-fit: cover;
  object-position: center;
}

.hero-glass-panel {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 6px;
  max-width: 310px;
  padding: 14px 16px;
  border: 1px solid rgba(244,241,234,0.2);
  border-radius: 8px;
  background: rgba(25,27,27,0.72);
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
  backdrop-filter: blur(14px);
}

.hero-glass-panel b {
  font-size: 14px;
  letter-spacing: 0.01em;
}

.hero-glass-panel span {
  color: rgba(244,241,234,0.7);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.hero-panel-left {
  left: 20px;
  bottom: 20px;
}

.hero-panel-right {
  right: 20px;
  top: 20px;
}

.hero-azul-stage {
  --rx: -15deg;
  --ry: -32deg;
  --scale: 1;
  position: relative;
  width: min(100%, 1140px);
  min-height: 780px;
  transform-style: preserve-3d;
  cursor: grab;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-azul-stage:active {
  cursor: grabbing;
}

.hero-azul-stage * {
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.hero-azul-stage::before {
  display: none;
}

.hero-stone-block {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 570px;
  height: 365px;
  transform-style: preserve-3d;
  translate: -50% -50%;
  transform: scale(var(--scale)) rotateX(var(--rx)) rotateY(var(--ry));
  pointer-events: none;
  will-change: transform;
}

.hero-stone-block i {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  background: var(--stone);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: none;
  filter: none;
  backface-visibility: hidden;
  transform-origin: center center;
}

.hero-stone-block i:nth-child(1) {
  width: 570px;
  height: 365px;
  transform: translateZ(164px);
}

.hero-stone-block i:nth-child(2) {
  width: 570px;
  height: 365px;
  transform: rotateY(180deg) translateZ(164px);
}

.hero-stone-block i:nth-child(3) {
  left: 121px;
  width: 328px;
  height: 365px;
  transform: rotateY(90deg) translateZ(285px);
}

.hero-stone-block i:nth-child(4) {
  left: 121px;
  width: 328px;
  height: 365px;
  transform: rotateY(-90deg) translateZ(285px);
}

.hero-stone-block i:nth-child(5) {
  width: 570px;
  height: 328px;
  top: 18px;
  background-size: 570px 328px;
  background-position: center center;
  filter: saturate(0.98) contrast(1.03);
  transform: rotateX(90deg) translateZ(182px);
}

.hero-stone-block i:nth-child(6) {
  width: 570px;
  height: 328px;
  top: 18px;
  background-size: 570px 328px;
  background-position: center center;
  filter: saturate(0.98) contrast(1.03);
  transform: rotateX(-90deg) translateZ(182px);
}

.hero-rotate-cue {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 6px;
  width: 118px;
  height: 118px;
  margin: -59px 0 0 -59px;
  border: 1px solid rgba(244,241,234,0.32);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(13,16,17,0.54);
  box-shadow: 0 18px 54px rgba(0,0,0,0.28);
  backdrop-filter: blur(10px);
  pointer-events: none;
  opacity: 0.92;
  transform: translateZ(0);
  transition: opacity 180ms ease, transform 180ms ease;
  animation: rotateCuePulse 2.4s ease-in-out infinite;
}

.hero-rotate-cue svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-rotate-cue span {
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-azul-stage:hover .hero-rotate-cue,
.hero-azul-stage.cue-hidden .hero-rotate-cue {
  opacity: 0;
  transform: scale(0.88);
}

.hero-stone-shadow {
  display: none;
}

.hero-stone-label {
  position: absolute;
  left: 3%;
  right: 3%;
  bottom: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(244,241,234,0.16);
  border-radius: 999px;
  padding: 13px 17px;
  background: rgba(10,12,12,0.68);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.hero-material-switch {
  position: absolute;
  left: 3%;
  right: 3%;
  top: 24px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(244,241,234,0.09);
  border-radius: 999px;
  background: rgba(10,12,12,0.38);
  backdrop-filter: blur(16px);
  width: fit-content;
  max-width: calc(100% - 6%);
}

.hero-material-switch button {
  min-height: 38px;
  border: 1px solid rgba(244,241,234,0.14);
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(244,241,234,0.72);
  background: rgba(13,16,17,0.54);
  box-shadow: none;
  backdrop-filter: blur(14px);
  font: inherit;
  font-size: 11px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.hero-material-switch button:hover,
.hero-material-switch button.active {
  color: #061721;
  border-color: rgba(139,224,255,0.82);
  background: var(--accent);
  transform: translateY(-1px);
}

.hero-stone-label b {
  font-size: 22px;
  font-weight: 760;
}

.hero-stone-label span {
  color: rgba(244,241,234,0.62);
  font-size: 12px;
  font-weight: 900;
  text-align: right;
}

.app-shell {
  position: relative;
  width: min(100%, 650px);
  transform-style: preserve-3d;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  overflow: hidden;
  color: #f9f9f6;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.075), transparent 28%),
    linear-gradient(145deg, rgba(43,42,41,0.98), rgba(10,10,10,0.98));
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}

.configurator-shell {
  width: min(100%, 760px);
}

.app-topbar {
  display: flex;
  gap: 8px;
  align-items: center;
  height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.035);
}

.app-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.24);
}

.app-topbar strong {
  margin-left: auto;
  font-size: 12px;
  color: rgba(255,255,255,0.56);
}

.app-grid {
  display: grid;
  grid-template-columns: 154px 1fr;
  min-height: 470px;
}

.configurator-grid {
  grid-template-columns: 132px minmax(270px, 1fr) 178px;
  min-height: 520px;
}

.app-grid aside {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 14px;
  border-right: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
}

.app-grid aside b {
  margin-bottom: 12px;
  font-size: 12px;
  text-transform: uppercase;
}

.app-grid aside span {
  border-radius: 6px;
  padding: 10px;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  font-weight: 700;
}

.app-grid aside .active {
  color: var(--ink);
  background: linear-gradient(135deg, var(--accent), #d9f6ff);
}

.dashboard {
  position: relative;
  padding: 24px;
  overflow: hidden;
}

.configurator-preview,
.configurator-controls {
  position: relative;
  overflow: hidden;
}

.configurator-preview {
  display: grid;
  grid-template-rows: auto 1fr;
  border-right: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(180deg, rgba(207,230,247,0.16), rgba(17,17,17,0.03)),
    #151715;
}

.preview-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  padding: 14px;
}

.preview-toolbar button {
  height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  color: rgba(244,241,234,0.72);
  background: rgba(255,255,255,0.055);
  font: inherit;
  font-size: 11px;
  font-weight: 900;
}

.preview-toolbar .selected {
  color: #111;
  background: var(--accent);
}

.scene-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 440px;
  perspective: 1100px;
  background:
    radial-gradient(circle at 50% 34%, rgba(244,241,234,0.16), transparent 23%),
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: auto, 36px 36px, 36px 36px;
}

.stone-stage {
  position: relative;
  width: 270px;
  height: 330px;
  transform-style: preserve-3d;
  animation: showroom 7s ease-in-out infinite;
}

.stone-shadow {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  filter: blur(18px);
  transform: rotateX(72deg);
}

.stone-body {
  position: absolute;
  left: 52px;
  top: 14px;
  width: 168px;
  height: 236px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 34px 34px 10px 10px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.17), transparent 23%),
    radial-gradient(circle at 64% 22%, rgba(255,255,255,0.22), transparent 14%),
    repeating-linear-gradient(112deg, rgba(255,255,255,0.032) 0 4px, transparent 4px 11px),
    linear-gradient(145deg, #424448, #171819 64%, #070707);
  box-shadow:
    inset 12px 0 28px rgba(255,255,255,0.07),
    inset -18px -22px 46px rgba(0,0,0,0.55),
    0 24px 72px rgba(0,0,0,0.52);
  transform: translateZ(72px) rotateX(-4deg);
}

.stone-body::before,
.stone-body::after {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  width: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
}

.stone-body::before { left: 12px; }
.stone-body::after { right: 12px; }

.stone-body strong {
  position: relative;
  z-index: 2;
  color: #c6a34a;
  font-size: 30px;
  font-weight: 800;
}

.stone-body em {
  position: relative;
  z-index: 2;
  color: rgba(244,241,234,0.58);
  font-style: normal;
  font-size: 12px;
}

.golden-guide,
.center-guide {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  background: rgba(139,224,255,0.28);
  box-shadow: 0 0 18px rgba(139,224,255,0.18);
}

.golden-guide {
  left: 0;
  right: 0;
  top: 38.2%;
  height: 1px;
}

.center-guide {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.grave-plate {
  position: absolute;
  transform-style: preserve-3d;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.15), transparent 25%),
    linear-gradient(145deg, #313338, #111213);
  box-shadow: 0 18px 36px rgba(0,0,0,0.42);
}

.plate-main {
  left: 26px;
  bottom: 30px;
  width: 220px;
  height: 72px;
  border-radius: 8px;
  transform: rotateX(68deg) rotateZ(-2deg) translateZ(10px);
}

.plate-side {
  right: 26px;
  bottom: 112px;
  width: 64px;
  height: 56px;
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(14deg) translateZ(34px);
}

.dimension-line {
  position: absolute;
  z-index: 2;
  color: rgba(244,241,234,0.74);
  font-size: 11px;
  font-weight: 900;
}

.dimension-line::before {
  content: "";
  position: absolute;
  background: rgba(244,241,234,0.42);
}

.line-width {
  left: 28%;
  right: 20%;
  bottom: 68px;
  text-align: center;
}

.line-width::before {
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
}

.line-height {
  top: 30%;
  right: 24px;
  writing-mode: vertical-rl;
}

.line-height::before {
  top: -72px;
  bottom: -72px;
  left: 50%;
  width: 1px;
}

.camera-pill {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 10px 18px;
  color: rgba(244,241,234,0.84);
  background: rgba(17,17,17,0.72);
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.configurator-controls {
  padding: 20px 14px;
  background: rgba(255,255,255,0.035);
}

.material-stack {
  display: grid;
  gap: 8px;
  margin: 22px 0;
}

.quick-presets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 16px;
}

.quick-presets button {
  min-height: 34px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: rgba(244,241,234,0.76);
  background: rgba(255,255,255,0.045);
  font: inherit;
  font-size: 10px;
  font-weight: 900;
}

.material {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 7px;
  color: rgba(244,241,234,0.72);
  background: rgba(255,255,255,0.045);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.material.active {
  border-color: rgba(139,224,255,0.72);
  color: var(--paper);
  box-shadow: 0 0 0 2px rgba(139,224,255,0.12);
}

.material i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.34), transparent 22%),
    var(--swatch);
  background-size: cover;
  background-position: center;
}

.dash-head p {
  margin-bottom: 4px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  text-transform: uppercase;
}

.dash-head strong {
  font-size: 40px;
}

.quader-cube {
  position: relative;
  width: 168px;
  height: 168px;
  margin: 54px auto 46px;
  transform-style: preserve-3d;
  animation: spin 9s linear infinite;
}

.quader-cube i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(215,255,95,0.62);
  background: linear-gradient(135deg, rgba(139,224,255,0.24), rgba(139,224,255,0.11));
  box-shadow: inset 0 0 44px rgba(215,255,95,0.14);
}

.quader-cube i:nth-child(1) { transform: translateZ(84px); }
.quader-cube i:nth-child(2) { transform: rotateY(180deg) translateZ(84px); }
.quader-cube i:nth-child(3) { transform: rotateY(90deg) translateZ(84px); }
.quader-cube i:nth-child(4) { transform: rotateY(-90deg) translateZ(84px); }
.quader-cube i:nth-child(5) { transform: rotateX(90deg) translateZ(84px); }
.quader-cube i:nth-child(6) { transform: rotateX(-90deg) translateZ(84px); }

.status-row,
.insights {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.status-row { font-size: 13px; color: rgba(255,255,255,0.62); }
.progress {
  height: 10px;
  border-radius: 999px;
  margin: 12px 0 18px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.progress span {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--ice));
  animation: load 3.8s ease-in-out infinite;
}

.insights article {
  flex: 1;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255,255,255,0.04);
}

.insights small {
  display: block;
  color: rgba(255,255,255,0.48);
  font-size: 11px;
}

.insights b { font-size: 22px; }

.configurator-controls .insights {
  align-items: stretch;
  flex-direction: column;
}

.configurator-controls .insights article {
  width: 100%;
}

.configurator-controls .insights b {
  font-size: 13px;
}

.interface-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(139,224,255,0.12), rgba(139,224,255,0.08), rgba(244,241,234,0.08)),
    rgba(244,241,234,0.12);
}

.interface-card {
  min-height: 138px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: clamp(20px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.065), rgba(255,255,255,0.018)),
    rgba(17,18,18,0.94);
  transition: background 180ms ease, transform 180ms ease;
}

.interface-card:hover {
  background:
    linear-gradient(145deg, rgba(139,224,255,0.11), rgba(255,255,255,0.026)),
    rgba(19,21,20,0.96);
}

.interface-card b {
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
}

.interface-card span {
  max-width: 260px;
  color: var(--paper);
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 850;
  line-height: 1.16;
}

.product-native {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(24px, 3.5vw, 52px);
  align-items: center;
  padding: clamp(52px, 6.5vw, 88px) clamp(20px, 5vw, 78px);
  background:
    radial-gradient(circle at 76% 34%, rgba(244,241,234,0.08), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,0.04), transparent 42%),
    #0f1010;
}

.flyer-benefits {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.74fr);
  gap: clamp(24px, 3.5vw, 52px);
  align-items: center;
  padding: clamp(52px, 6.5vw, 88px) clamp(20px, 5vw, 78px);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(139,224,255,0.07), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.045), transparent 42%),
    #151515;
}

.flyer-benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent, black 22%, black 78%, transparent);
}

.flyer-copy {
  position: relative;
  z-index: 1;
}

.flyer-copy p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(244,241,234,0.7);
  font-size: 18px;
  line-height: 1.52;
}

.flyer-card {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  justify-self: center;
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid rgba(244,241,234,0.28);
  border-radius: 4px;
  color: rgba(255,255,255,0.92);
  background:
    radial-gradient(circle at 72% 6%, rgba(255,255,255,0.34), transparent 22%),
    radial-gradient(circle at 10% 92%, rgba(0,0,0,0.3), transparent 26%),
    linear-gradient(110deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05) 38%, rgba(255,255,255,0.14)),
    #77766e;
  box-shadow:
    0 44px 110px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.22);
  transform: rotate(-1.2deg);
}

.flyer-card::before,
.flyer-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 28px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.28), transparent 68%);
}

.flyer-card::before {
  top: -13px;
}

.flyer-card::after {
  bottom: -15px;
}

.flyer-card img {
  display: block;
  width: min(154px, 46%);
  height: auto;
  margin: 0 auto 16px;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.22));
}

.flyer-card ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flyer-card li {
  position: relative;
  padding-left: 30px;
  color: rgba(255,255,255,0.9);
  font-size: clamp(13px, 0.88vw, 16px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0,0,0,0.28);
}

.flyer-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--accent);
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 18px rgba(139,224,255,0.55);
}

.flyer-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-top: 18px;
  padding-top: 13px;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.flyer-footer b {
  color: var(--accent);
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 780;
  letter-spacing: 0.01em;
}

.flyer-footer span {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.3;
  text-align: right;
  text-transform: uppercase;
}

.suite-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
  padding: clamp(84px, 11vw, 156px) clamp(20px, 5vw, 78px);
  background:
    radial-gradient(circle at 82% 14%, rgba(255,255,255,0.045), transparent 28%),
    radial-gradient(circle at 12% 82%, rgba(255,255,255,0.035), transparent 28%),
    #111211;
}

.suite-copy {
  position: sticky;
  top: 138px;
}

.suite-copy p:not(.eyebrow) {
  color: rgba(244,241,234,0.68);
  font-size: 19px;
  line-height: 1.58;
}

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

.suite-card {
  min-height: 238px;
  border: 1px solid rgba(244,241,234,0.14);
  border-radius: 12px;
  padding: clamp(22px, 2.5vw, 30px);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.026)),
    rgba(28,30,29,0.86);
  box-shadow: 0 26px 90px rgba(0,0,0,0.24);
  contain: layout paint;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.suite-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139,224,255,0.34);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.09), rgba(139,224,255,0.045)),
    rgba(29,31,30,0.92);
}

.suite-card.wide {
  grid-column: 1 / -1;
  min-height: 220px;
  background:
    linear-gradient(135deg, rgba(139,224,255,0.14), transparent 46%),
    linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03)),
    rgba(28,30,29,0.92);
}

.suite-card span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(139,224,255,0.28);
  border-radius: 999px;
  padding: 0 11px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.suite-card h3 {
  margin: 22px 0 12px;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.08;
  font-weight: 760;
}

.suite-card p {
  color: rgba(244,241,234,0.66);
  font-size: 16px;
  line-height: 1.55;
}

.suite-section .suite-card,
.suite-section .suite-card.wide {
  color: var(--paper);
  background: rgba(255,255,255,0.035);
  transition: transform 200ms ease, border-color 580ms ease, background-color 580ms cubic-bezier(.2,.75,.25,1), color 460ms ease;
}

.suite-section .suite-card h3,
.suite-section .suite-card p,
.suite-section .suite-card span {
  transition: color 460ms ease, border-color 460ms ease;
  transition-delay: inherit;
}

.suite-section.suite-color-reveal .suite-card,
.suite-section.suite-color-reveal .suite-card.wide {
  border-color: var(--accent);
  color: #050505;
  background-color: var(--accent);
}

.suite-section.suite-color-reveal .suite-card h3,
.suite-section.suite-color-reveal .suite-card p,
.suite-section.suite-color-reveal .suite-card span {
  color: rgba(5,5,5,0.8);
}

.suite-section.suite-color-reveal .suite-card span {
  border-color: rgba(5,5,5,0.34);
}

.suite-section .suite-card:nth-child(1) { transition-delay: 280ms; }
.suite-section .suite-card:nth-child(2) { transition-delay: 520ms; }
.suite-section .suite-card:nth-child(3) { transition-delay: 760ms; }
.suite-section .suite-card:nth-child(4) { transition-delay: 1000ms; }
.suite-section .suite-card:nth-child(5) { transition-delay: 1240ms; }

.document-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
  padding: clamp(84px, 11vw, 156px) clamp(20px, 5vw, 78px);
  background:
    radial-gradient(circle at 74% 24%, rgba(244,241,234,0.11), transparent 30%),
    radial-gradient(circle at 12% 86%, rgba(255,255,255,0.04), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,0.045), transparent 48%),
    #0f1010;
}

.document-copy {
  max-width: 860px;
}

.document-copy p:not(.eyebrow) {
  color: rgba(244,241,234,0.68);
  font-size: 19px;
  line-height: 1.58;
}

.document-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.document-pills span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(244,241,234,0.14);
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(244,241,234,0.78);
  background: rgba(255,255,255,0.055);
  font-size: 12px;
  font-weight: 900;
}

.document-showcase {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  gap: clamp(18px, 2.2vw, 32px);
  align-items: stretch;
}

.doc-preview {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(244,241,234,0.18);
  border-radius: 14px;
  background: #f7f5ed;
  box-shadow:
    0 34px 110px rgba(0,0,0,0.46),
    0 0 0 1px rgba(255,255,255,0.46) inset;
  contain: layout paint;
}

.pdf-document {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  background: #fff;
  pointer-events: none;
}

.document-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.doc-preview.projection {
  inset: auto;
  width: 100%;
  height: clamp(620px, 50vw, 820px);
  transform: none;
}

.doc-preview.contract {
  inset: auto;
  width: 100%;
  height: clamp(620px, 50vw, 820px);
  transform: none;
}

.doc-preview div {
  position: static;
  pointer-events: none;
  display: grid;
  gap: 5px;
  border: 0;
  border-top: 1px solid rgba(17,19,19,0.1);
  border-radius: 0;
  padding: 16px 18px;
  color: #121615;
  background: #fff;
  backdrop-filter: none;
}

.doc-preview b {
  font-size: 20px;
  line-height: 1.1;
}

.doc-preview span {
  color: rgba(18,22,21,0.64);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.native-copy p:not(.eyebrow) {
  color: rgba(244,241,234,0.68);
  font-size: 18px;
  line-height: 1.52;
}

.native-copy h2 {
  max-width: 640px;
  font-size: clamp(42px, 3.7vw, 58px);
  font-weight: 720;
  line-height: 1.08;
}

.quader-lite-demo {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(244,241,234,0.2);
  border-radius: 10px;
  background: #111;
  box-shadow:
    0 44px 140px rgba(0,0,0,0.46),
    0 0 0 1px rgba(255,255,255,0.5) inset;
}

.lite-stage {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
}

.lite-stage img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center center;
  opacity: 1;
  background: #0f1010;
  transform: none;
  transition: filter 260ms ease, transform 420ms ease;
}

.lite-stage figcaption {
  position: absolute;
  left: 22px;
  right: auto;
  bottom: 22px;
  display: grid;
  gap: 6px;
  width: min(520px, calc(100% - 44px));
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 12px;
  padding: 18px 20px;
  color: #1d2422;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 16px 46px rgba(32,36,34,0.14);
  backdrop-filter: blur(16px);
}

.lite-stage figcaption b {
  font-size: 24px;
  font-weight: 850;
}

.lite-stage figcaption span {
  color: rgba(29,36,34,0.68);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.42;
}

.model-studio {
  scroll-margin-top: 130px;
  padding: clamp(52px, 6.5vw, 90px) clamp(20px, 5vw, 78px);
  background:
    radial-gradient(circle at 50% 10%, rgba(255,255,255,0.045), transparent 30%),
    radial-gradient(circle at 80% 82%, rgba(255,255,255,0.035), transparent 30%),
    #0d0e0e;
}

.model-studio .section-heading p:not(.eyebrow) {
  color: rgba(244,241,234,0.66);
  font-size: 18px;
  line-height: 1.5;
}

.original-config {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 34px);
  align-items: stretch;
  margin-top: 24px;
  border: 1px solid rgba(244,241,234,0.15);
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    rgba(18,21,20,0.94);
  box-shadow: 0 34px 110px rgba(0,0,0,0.45);
  contain: layout paint;
}

.original-config-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  padding: clamp(22px, 2.6vw, 38px);
  background:
    linear-gradient(180deg, rgba(211,255,77,0.10), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02));
}

.original-config-copy span {
  color: var(--acid);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.original-config-copy h3 {
  margin: 12px 0 12px;
  color: var(--paper);
  font-size: clamp(29px, 2.8vw, 46px);
  font-weight: 780;
  line-height: 1.04;
  max-width: 12ch;
}

.original-config-copy p {
  margin: 0;
  color: rgba(244,241,234,0.68);
  font-size: clamp(15px, 1.12vw, 19px);
  font-weight: 650;
  line-height: 1.48;
  max-width: 560px;
}

.original-config-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.original-config-tabs button {
  border: 1px solid rgba(244,241,234,0.18);
  border-radius: 999px;
  padding: 13px 18px;
  color: rgba(244,241,234,0.78);
  background: rgba(255,255,255,0.04);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.original-config-tabs button:hover,
.original-config-tabs button.active {
  color: #121411;
  border-color: var(--acid);
  background: var(--acid);
  transform: translateY(-1px);
}

.original-config-frame {
  position: relative;
  min-height: 460px;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(10,12,12,0.34), transparent 18%),
    #141615;
}

.original-config-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
  filter: none;
  transform: none;
}

.original-config-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: 38px;
}

.model-demo {
  overflow: hidden;
  border: 1px solid rgba(244,241,234,0.14);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03)),
    #171918;
  box-shadow: 0 28px 90px rgba(0,0,0,0.36);
  contain: layout paint;
}

.model-scene {
  --demo-stone: url("qvader-assets/textures/orion-current.jpg");
  --stone-scale: 1;
  --base-scale: 1;
  --rx: -13deg;
  --ry: -34deg;
  position: relative;
  min-height: 410px;
  overflow: hidden;
  perspective: 1100px;
  cursor: grab;
  touch-action: none;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,0.28), transparent 18%),
    radial-gradient(circle at 50% 88%, rgba(0,0,0,0.55), transparent 34%),
    linear-gradient(180deg, #292d2f, #101212 74%);
}

.model-scene:active {
  cursor: grabbing;
}

.model-light {
  position: absolute;
  left: 50%;
  top: 8%;
  width: 70%;
  height: 55%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,245,0.28), transparent 64%);
  transform: translateX(-50%);
  pointer-events: none;
}

.model-grave {
  position: absolute;
  left: 50%;
  top: 53%;
  width: 230px;
  height: 260px;
  transform: translate(-50%, -50%) perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 120ms ease-out;
}

.model-stone,
.model-sockel {
  position: absolute;
  left: 50%;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.2), transparent 36%, rgba(0,0,0,0.12)),
    var(--demo-stone);
  background-size: cover;
  background-position: center;
  box-shadow:
    0 20px 38px rgba(0,0,0,0.34),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}

.model-stone {
  top: 18px;
  width: 112px;
  height: 150px;
  transform: translateX(-50%) scale(var(--stone-scale));
  border-radius: 18px 18px 4px 4px;
  clip-path: polygon(13% 100%, 87% 100%, 80% 22%, 50% 7%, 20% 22%);
}

.model-sockel {
  top: 172px;
  width: 190px;
  height: 46px;
  transform: translateX(-50%) scale(var(--base-scale));
  border-radius: 4px;
}

.model-stone::before,
.model-stone::after,
.model-sockel::before,
.model-sockel::after {
  content: "";
  position: absolute;
  display: block;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.14), transparent 42%, rgba(0,0,0,0.14)),
    var(--demo-stone);
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.model-stone::before {
  left: 100%;
  top: 12px;
  width: 24px;
  height: calc(100% - 12px);
  transform: skewY(18deg);
  transform-origin: left top;
  filter: brightness(0.92);
  clip-path: inherit;
}

.model-stone::after {
  left: 10px;
  right: -18px;
  top: -18px;
  height: 32px;
  transform: skewX(-52deg);
  transform-origin: left bottom;
  filter: brightness(1.05);
  border-radius: 5px;
}

.model-sockel::before {
  left: 100%;
  top: 9px;
  width: 28px;
  height: 100%;
  transform: skewY(18deg);
  transform-origin: left top;
  filter: brightness(0.92);
}

.model-sockel::after {
  left: 12px;
  right: -20px;
  top: -18px;
  height: 26px;
  transform: skewX(-54deg);
  transform-origin: left bottom;
  filter: brightness(1.08);
  border-radius: 4px;
}

.model-stone i,
.model-sockel i {
  display: none;
}

.model-grave.stele .model-stone,
.model-grave[data-shape="stele"] .model-stone {
  width: 88px;
  height: 178px;
  clip-path: polygon(8% 100%, 92% 100%, 88% 20%, 72% 7%, 50% 3%, 28% 7%, 12% 20%);
}

.model-grave.round .model-stone,
.model-grave[data-shape="round"] .model-stone {
  width: 106px;
  height: 152px;
  border-radius: 999px 999px 5px 5px / 55px 55px 5px 5px;
  clip-path: none;
}

.model-grave.wave .model-stone,
.model-grave[data-shape="wave"] .model-stone {
  width: 132px;
  height: 132px;
  border-radius: 20px 22px 5px 5px;
  clip-path: polygon(0 28%, 19% 24%, 34% 12%, 52% 9%, 70% 21%, 100% 18%, 100% 100%, 0 100%);
}

.model-grave.heart .model-stone,
.model-grave[data-shape="heart"] .model-stone {
  width: 132px;
  height: 124px;
  border-radius: 34px 34px 8px 8px;
  clip-path: path("M66 118 C24 86 4 63 12 35 C18 13 45 9 66 32 C87 9 114 13 120 35 C128 63 108 86 66 118 Z");
}

.model-panel {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.model-panel h3 {
  margin: 0;
  font-size: 28px;
}

.model-materials,
.model-shapes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.model-materials button,
.model-shapes button {
  min-height: 34px;
  border: 1px solid rgba(244,241,234,0.14);
  border-radius: 999px;
  padding: 0 12px;
  color: rgba(244,241,234,0.72);
  background: rgba(255,255,255,0.055);
  font: inherit;
  font-size: 11px;
  font-weight: 950;
  cursor: pointer;
}

.model-materials button.active,
.model-shapes button.active {
  color: #141a16;
  border-color: rgba(139,224,255,0.86);
  background: var(--accent);
}

.model-panel label {
  display: grid;
  gap: 8px;
  color: rgba(244,241,234,0.68);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.model-panel input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}

.workbench {
  position: relative;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(244,241,234,0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.075), transparent 30%),
    #101312;
  box-shadow:
    0 44px 140px rgba(0,0,0,0.54),
    0 0 0 1px rgba(255,255,255,0.045) inset;
}

.workbench::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 20%, rgba(139,224,255,0.055), transparent 58%),
    radial-gradient(circle at 84% 10%, rgba(139,224,255,0.11), transparent 28%);
  opacity: 0.92;
}

.wb-sidebar {
  border-right: 1px solid rgba(244,241,234,0.12);
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.065), transparent 34%),
    rgba(55,61,60,0.76);
}

.wb-brand {
  display: grid;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(244,241,234,0.12);
}

.wb-brand img {
  width: 148px;
  height: auto;
  filter: none;
}

.wb-brand span {
  color: rgba(244,241,234,0.64);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.wb-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0;
}

.wb-tabs button {
  min-height: 44px;
  border: 1px solid rgba(244,241,234,0.1);
  border-radius: 7px;
  color: rgba(244,241,234,0.62);
  background: rgba(20,22,22,0.44);
  font: inherit;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.wb-tabs button:hover {
  color: var(--paper);
  border-color: rgba(244,241,234,0.24);
  transform: translateY(-1px);
}

.wb-tabs .active {
  color: #162018;
  border-color: rgba(139,224,255,0.88);
  background: linear-gradient(135deg, var(--accent), #c9f1ff);
  box-shadow: 0 14px 34px rgba(139,224,255,0.16);
}

.wb-panel {
  border: 1px solid rgba(244,241,234,0.14);
  border-radius: 8px;
  padding: 14px;
  margin-top: 12px;
  background: rgba(20,23,23,0.38);
  box-shadow: 0 14px 36px rgba(0,0,0,0.14);
}

.wb-panel strong {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
}

.wb-panel p {
  margin: 10px 0 0;
  color: rgba(244,241,234,0.58);
  font-size: 12px;
  line-height: 1.45;
}

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

.chip-grid span,
.ai-action {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244,241,234,0.12);
  border-radius: 6px;
  color: rgba(244,241,234,0.76);
  background: rgba(255,255,255,0.055);
  font-size: 11px;
  font-weight: 900;
}

.ai-action {
  width: 100%;
  color: #111;
  background: linear-gradient(135deg, var(--accent), #d9f6ff);
  font-family: inherit;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.ai-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(139,224,255,0.22);
}

.wb-compact {
  opacity: 0.9;
}

.wb-main {
  position: relative;
  z-index: 1;
  padding: 30px;
  background:
    radial-gradient(circle at 72% 18%, rgba(139,224,255,0.1), transparent 28%),
    linear-gradient(rgba(244,241,234,0.048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,241,234,0.048) 1px, transparent 1px),
    #0f1211;
  background-size: auto, 42px 42px, 42px 42px;
}

.wb-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 26px;
}

.wb-head small,
.wb-head span {
  color: rgba(244,241,234,0.52);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.wb-head h3 {
  margin: 6px 0 0;
  font-size: 36px;
}

.wb-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.wb-actions button {
  min-height: 38px;
  border: 1px solid rgba(244,241,234,0.13);
  border-radius: 7px;
  padding: 0 14px;
  color: rgba(244,241,234,0.75);
  background: rgba(255,255,255,0.055);
  font: inherit;
  font-size: 11px;
  font-weight: 950;
  cursor: pointer;
}

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

.shape-tile {
  position: relative;
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 190px;
  border: 1px solid rgba(244,241,234,0.12);
  border-radius: 8px;
  padding: 14px;
  background: rgba(15,17,17,0.55);
  cursor: pointer;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.shape-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 18%, rgba(139,224,255,0.14), transparent 64%);
  opacity: 0;
  transform: translateX(-40%);
  transition: opacity 220ms ease, transform 640ms ease;
}

.shape-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(244,241,234,0.24);
}

.shape-tile.active {
  border-color: rgba(139,224,255,0.72);
  background: rgba(25,29,27,0.72);
  box-shadow:
    0 0 0 2px rgba(139,224,255,0.12),
    0 24px 54px rgba(0,0,0,0.28);
}

.shape-tile.active::before,
.shape-tile:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.shape-tile svg {
  position: relative;
  z-index: 1;
  width: 96px;
  height: 96px;
  fill: #d9ddd2;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.42));
  transition: transform 220ms ease;
}

.shape-tile:hover svg,
.shape-tile.active svg {
  transform: translateY(-4px) scale(1.04);
}

.shape-tile b {
  position: relative;
  z-index: 1;
  font-size: 13px;
  text-align: center;
}

.control-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.control-row label {
  border: 1px solid rgba(244,241,234,0.11);
  border-radius: 8px;
  padding: 15px;
  background: rgba(15,17,17,0.58);
  transition: border-color 180ms ease, transform 180ms ease;
}

.control-row label:hover {
  border-color: rgba(139,224,255,0.42);
  transform: translateY(-2px);
}

.control-row span {
  display: block;
  color: rgba(244,241,234,0.5);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.control-row b {
  display: block;
  margin-top: 7px;
  font-size: 18px;
}

.wb-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  border: 1px solid rgba(244,241,234,0.12);
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
  padding: 10px 14px;
  color: rgba(244,241,234,0.72);
  background: rgba(17,20,19,0.72);
  font-size: 12px;
  font-weight: 900;
}

.wb-status span {
  color: var(--accent);
  text-transform: uppercase;
}

.wb-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(139,224,255,0.7);
  animation: pulse 1.8s ease-in-out infinite;
}

.qsim {
  --qsim-stone: url("qvader-assets/textures/indian-black-deep.jpg");
  position: relative;
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  min-height: 700px;
  overflow: hidden;
  border: 1px solid rgba(244,241,234,0.18);
  border-radius: 8px;
  background: #111413;
  box-shadow: 0 44px 140px rgba(0,0,0,0.5);
}

.qsim-sidebar {
  position: relative;
  z-index: 2;
  padding: 18px;
  border-right: 1px solid rgba(244,241,234,0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025)),
    #3c4240;
}

.qsim-brand {
  display: grid;
  gap: 12px;
  padding: 8px 0 20px;
  border-bottom: 1px solid rgba(244,241,234,0.16);
}

.qsim-brand img {
  width: 150px;
  height: auto;
}

.qsim-brand span {
  color: rgba(244,241,234,0.72);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.qsim-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 18px 0;
}

.qsim-tabs button,
.qsim-chip-grid button,
.qsim-card-grid button,
.qsim-material-grid button,
.qsim-docs button {
  border: 1px solid rgba(244,241,234,0.12);
  border-radius: 7px;
  color: rgba(244,241,234,0.72);
  background: rgba(21,24,23,0.55);
  font: inherit;
  font-size: 11px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.qsim-tabs button {
  min-height: 46px;
  text-transform: uppercase;
}

.qsim-tabs button:hover,
.qsim-chip-grid button:hover,
.qsim-card-grid button:hover,
.qsim-material-grid button:hover,
.qsim-docs button:hover {
  transform: translateY(-1px);
  border-color: rgba(139,224,255,0.42);
  color: var(--paper);
}

.qsim-tabs .active,
.qsim-chip-grid .active,
.qsim-card-grid .active,
.qsim-material-grid .active,
.qsim-docs .active {
  color: #111812;
  border-color: rgba(139,224,255,0.96);
  background: linear-gradient(135deg, var(--accent), #d5f5ff);
}

.qsim-panel {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(244,241,234,0.14);
  border-radius: 8px;
  background: rgba(20,23,23,0.34);
}

.qsim-panel strong {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
}

.qsim-panel p {
  margin: 10px 0 0;
  color: rgba(244,241,234,0.6);
  font-size: 12px;
  line-height: 1.45;
}

.qsim-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.qsim-chip-grid button {
  min-height: 36px;
}

.qsim-order {
  display: grid;
  gap: 9px;
  margin: 0;
}

.qsim-order div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(244,241,234,0.68);
  font-size: 12px;
}

.qsim-order dt,
.qsim-order dd {
  margin: 0;
}

.qsim-order dd {
  color: var(--paper);
  font-weight: 900;
  text-align: right;
}

.qsim-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  padding: 26px 28px 24px;
  background:
    linear-gradient(rgba(244,241,234,0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,241,234,0.052) 1px, transparent 1px),
    #0e1110;
  background-size: 42px 42px;
}

.qsim-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.qsim-title small {
  color: rgba(244,241,234,0.54);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.qsim-title h3 {
  margin: 6px 0 0;
  font-size: clamp(30px, 3vw, 46px);
}

.qsim-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.qsim-actions button {
  min-height: 38px;
  border: 1px solid rgba(244,241,234,0.16);
  border-radius: 7px;
  padding: 0 14px;
  color: rgba(244,241,234,0.78);
  background: rgba(255,255,255,0.06);
  font: inherit;
  font-size: 11px;
  font-weight: 950;
}

.qsim-workarea {
  display: grid;
  grid-template-columns: minmax(290px, 0.62fr) minmax(360px, 1fr);
  gap: 22px;
  min-height: 500px;
}

.qsim-controls {
  min-width: 0;
}

.qsim-pane {
  display: none;
}

.qsim-pane.active {
  display: block;
  animation: paneIn 280ms ease both;
}

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

.qsim-card-grid button {
  min-height: 145px;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 14px;
  background: rgba(13,16,16,0.72);
}

.qsim-card-grid svg {
  width: 82px;
  height: 82px;
  fill: #dfe3d8;
}

.qsim-material-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.qsim-material-grid button {
  min-height: 118px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 12px;
  overflow: hidden;
  text-align: left;
}

.qsim-material-grid i {
  display: block;
  min-height: 64px;
  border-radius: 6px;
  background-image: var(--qsim-swatch);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}

.qsim-material-grid [data-qsim-material="indian-black"] { --qsim-swatch: url("qvader-assets/textures/indian-black-deep.jpg"); }
.qsim-material-grid [data-qsim-material="azul"] { --qsim-swatch: url("qvader-assets/textures/azul-macaubas-optimized.jpg"); }
.qsim-material-grid [data-qsim-material="orion"] { --qsim-swatch: url("qvader-assets/textures/orion-current.jpg"); }
.qsim-material-grid [data-qsim-material="himalaya"] { --qsim-swatch: url("qvader-assets/textures/himalaya-neu.jpg"); }
.qsim-material-grid [data-qsim-material="atlantis"] { --qsim-swatch: url("qvader-assets/textures/atlantis.jpg"); }
.qsim-material-grid [data-qsim-material="iron"] { --qsim-swatch: url("qvader-assets/textures/iron-red-optimized.jpg"); }

.qsim-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.qsim-form-grid label {
  display: grid;
  gap: 7px;
  padding: 13px;
  border: 1px solid rgba(244,241,234,0.13);
  border-radius: 8px;
  background: rgba(13,16,16,0.66);
}

.qsim-form-grid span {
  color: rgba(244,241,234,0.56);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.qsim-form-grid input,
.qsim-form-grid select {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(244,241,234,0.14);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--paper);
  background: rgba(255,255,255,0.06);
  font: inherit;
  font-weight: 900;
}

.qsim-docs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.qsim-docs button {
  min-height: 78px;
  padding: 12px;
}

.qsim-preview {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(244,241,234,0.18);
  border-radius: 8px;
  background: #d9ded4;
}

.qsim-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  perspective: 980px;
}

.qsim-wall {
  position: absolute;
  inset: 0 0 45%;
  background:
    radial-gradient(circle at 66% 18%, rgba(255,255,255,0.34), transparent 24%),
    linear-gradient(135deg, #f2f0e6, #c9d0c7);
}

.qsim-floor {
  position: absolute;
  left: -16%;
  right: -16%;
  bottom: -10%;
  height: 62%;
  transform: rotateX(63deg);
  transform-origin: center top;
  background:
    linear-gradient(rgba(55,61,60,0.13) 2px, transparent 2px),
    linear-gradient(90deg, rgba(55,61,60,0.13) 2px, transparent 2px),
    #e7e5da;
  background-size: 120px 120px;
}

.qsim-grave {
  --grave-ry: -18deg;
  --grave-rx: 58deg;
  position: absolute;
  left: 50%;
  top: 58%;
  width: 330px;
  height: 300px;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%) rotateX(var(--grave-rx)) rotateZ(var(--grave-ry));
  transition: transform 120ms ease-out;
  cursor: grab;
}

.qsim-grave:active {
  cursor: grabbing;
}

.qsim-frame,
.qsim-cover,
.qsim-base,
.qsim-stone {
  background-image: var(--qsim-stone);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16);
}

.qsim-frame {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  height: 180px;
  border: 18px solid transparent;
  border-image: var(--qsim-stone) 24 round;
}

.qsim-soil {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 36px;
  height: 116px;
  background: #23150d;
}

.qsim-cover {
  position: absolute;
  left: 46px;
  right: 46px;
  bottom: -3px;
  height: 94px;
  transform: translateZ(18px);
}

.qsim-base {
  position: absolute;
  left: 98px;
  top: 84px;
  width: 134px;
  height: 24px;
  transform: translateZ(52px);
}

.qsim-stone {
  position: absolute;
  left: 116px;
  top: -16px;
  width: 98px;
  height: 112px;
  display: grid;
  place-items: center;
  transform: translateZ(76px) rotateX(-58deg);
  color: rgba(255,255,255,0.74);
  text-align: center;
  font-family: inherit;
  font-size: 13px;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
  clip-path: polygon(14% 100%, 86% 100%, 79% 22%, 50% 6%, 21% 22%);
}

.qsim-stone[data-shape="schweif"] {
  clip-path: polygon(14% 100%, 88% 100%, 82% 30%, 62% 14%, 32% 23%, 18% 46%);
}

.qsim-stone[data-shape="welle"] {
  width: 145px;
  left: 92px;
  clip-path: polygon(4% 100%, 96% 100%, 96% 36%, 72% 24%, 52% 38%, 32% 28%, 4% 42%);
}

.qsim-stone[data-shape="herz"] {
  clip-path: polygon(50% 12%, 72% 0, 92% 15%, 92% 43%, 50% 84%, 8% 43%, 8% 15%, 28% 0);
}

.qsim-preview.indian-black,
.qsim .indian-black { --qsim-stone: url("qvader-assets/textures/indian-black-deep.jpg"); }
.qsim-preview.azul,
.qsim .azul { --qsim-stone: url("qvader-assets/textures/azul-macaubas-optimized.jpg"); }
.qsim-preview.orion,
.qsim .orion { --qsim-stone: url("qvader-assets/textures/orion-current.jpg"); }
.qsim-preview.himalaya,
.qsim .himalaya { --qsim-stone: url("qvader-assets/textures/himalaya-neu.jpg"); }
.qsim-preview.atlantis,
.qsim .atlantis { --qsim-stone: url("qvader-assets/textures/atlantis.jpg"); }
.qsim-preview.iron,
.qsim .iron { --qsim-stone: url("qvader-assets/textures/iron-red-optimized.jpg"); }

.qsim-help {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 36px);
  border-radius: 999px;
  padding: 12px 22px;
  color: #fff;
  background: rgba(20,24,17,0.9);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.qsim-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(244,241,234,0.14);
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(244,241,234,0.74);
  background: rgba(17,20,19,0.74);
  font-size: 12px;
  font-weight: 900;
}

.qsim-status span {
  color: var(--accent);
  text-transform: uppercase;
}

.qsim-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(139,224,255,0.7);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes paneIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.interface-card {
  min-height: 118px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 22px clamp(18px, 3vw, 38px);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.075), transparent),
    #111;
}

.interface-card b {
  color: var(--hot);
  font-size: 13px;
}

.interface-card span {
  font-size: 18px;
  font-weight: 900;
}

.marquee {
  display: flex;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #0c0c0c;
  color: var(--paper);
}

.marquee div {
  display: flex;
  min-width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee span {
  padding: 20px 34px;
  font-size: 44px;
  font-weight: 950;
  text-transform: uppercase;
}

.section {
  padding: clamp(62px, 8vw, 112px) clamp(20px, 5vw, 78px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 92px);
}

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

.feature-list article,
.benefits article {
  border: 1px solid rgba(244,241,234,0.12);
  border-radius: 12px;
  padding: clamp(22px, 2.4vw, 30px);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.022)),
    rgba(255,255,255,0.025);
  contain: layout paint;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.feature-list article:hover,
.benefits article:hover {
  transform: translateY(-3px);
  border-color: rgba(244,241,234,0.23);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(139,224,255,0.035)),
    rgba(255,255,255,0.03);
}

.feature-list span {
  color: var(--hot);
  font-size: 12px;
  font-weight: 950;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.08;
  font-weight: 760;
}

.feature-list p,
.benefits p,
.material-showcase p {
  color: rgba(244,241,234,0.68);
  font-size: 18px;
  line-height: 1.55;
}

#plattform .feature-list article {
  color: var(--paper);
  background: rgba(255,255,255,0.025);
  transition: transform 200ms ease, border-color 580ms ease, background-color 580ms cubic-bezier(.2,.75,.25,1), color 460ms ease;
}

#plattform .feature-list article h3,
#plattform .feature-list article p,
#plattform .feature-list article span {
  transition: color 460ms ease;
  transition-delay: inherit;
}

#plattform.platform-color-reveal .feature-list article {
  border-color: var(--accent);
  color: #050505;
  background-color: var(--accent);
}

#plattform.platform-color-reveal .feature-list article h3,
#plattform.platform-color-reveal .feature-list article p,
#plattform.platform-color-reveal .feature-list article span {
  color: rgba(5,5,5,0.8);
}

#plattform .feature-list article:nth-child(1) { transition-delay: 280ms; }
#plattform .feature-list article:nth-child(2) { transition-delay: 520ms; }
#plattform .feature-list article:nth-child(3) { transition-delay: 760ms; }
#plattform .feature-list article:nth-child(4) { transition-delay: 1000ms; }
#plattform .feature-list article:nth-child(5) { transition-delay: 1240ms; }
#plattform .feature-list article:nth-child(6) { transition-delay: 1480ms; }

.material-showcase {
  scroll-margin-top: 138px;
  padding: clamp(62px, 8vw, 112px) clamp(20px, 5vw, 78px);
  background:
    radial-gradient(circle at 74% 0%, rgba(255,255,255,0.045), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.055), transparent 36%),
    #101010;
}

.material-toolbar {
  position: sticky;
  top: 126px;
  z-index: 9;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 38px 0 24px;
  padding: 12px;
  border: 1px solid rgba(244,241,234,0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(244,241,234,0.11), rgba(244,241,234,0.04)),
    rgba(35,38,38,0.92);
  box-shadow:
    0 22px 70px rgba(0,0,0,0.42),
    0 0 0 1px rgba(255,255,255,0.035) inset;
  backdrop-filter: blur(18px);
}

.material-toolbar button {
  min-height: 44px;
  border: 1px solid rgba(244,241,234,0.15);
  border-radius: 8px;
  padding: 0 16px;
  color: rgba(244,241,234,0.72);
  background: rgba(255,255,255,0.055);
  font: inherit;
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.material-toolbar button:hover,
.material-toolbar button.active {
  color: #263030;
  border-color: rgba(244,241,234,0.72);
  background: var(--paper);
  transform: translateY(-2px);
}

.stone-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(72px, 8vw, 120px);
  row-gap: clamp(22px, 3vw, 38px);
  margin-top: 0;
}

.stone-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(244,241,234,0.16);
  border-radius: 14px;
  padding: 24px;
  background:
    radial-gradient(circle at 45% 18%, rgba(255,255,255,0.14), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    #242631;
  box-shadow: 0 26px 90px rgba(0,0,0,0.34);
  isolation: isolate;
  cursor: default;
  touch-action: pan-y;
  perspective: 1100px;
  contain: layout paint;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.stone-card:active {
  cursor: default;
}

.stone-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, transparent 10%, rgba(255,255,255,0.12) 48%, transparent 78%),
    radial-gradient(circle at 72% 22%, rgba(139,224,255,0.11), transparent 32%);
  opacity: 0;
  transform: translateX(-24%);
  transition: opacity 240ms ease, transform 680ms ease;
}

.stone-card.active {
  border-color: rgba(244,241,234,0.72);
  box-shadow:
    0 0 0 2px rgba(244,241,234,0.22),
    0 34px 90px rgba(0,0,0,0.36);
}

.stone-card:hover::before,
.stone-card.active::before {
  opacity: 1;
  transform: translateX(0);
}

.stone-card h3 {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 84px;
  margin: 0;
  font-size: 32px;
  line-height: 1.05;
  text-shadow: 0 3px 14px rgba(0,0,0,0.55);
}

.stone-card p {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  margin: 0;
  color: rgba(244,241,234,0.8);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.stone-card p::after {
  content: "Ziehen dreht frei um 360 Grad · Strg + Scrollen zoomt";
  display: block;
  margin-top: 7px;
  color: rgba(244,241,234,0.52);
  font-size: 11px;
}

.material-block {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 318px;
  height: 202px;
  transform-style: preserve-3d;
  transform-origin: center center;
  transform: translate(-50%, -50%) scale(0.9) rotateX(-14deg) rotateY(-32deg) rotateZ(0deg);
  will-change: transform;
  transition: transform 90ms linear;
  cursor: grab;
  touch-action: pan-y;
}

.material-block:active {
  cursor: grabbing;
}

.stone-card:nth-child(even) .material-block {
  animation-delay: 0s;
}

.material-block i {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  background: var(--stone);
  background-size: cover;
  background-position: center;
  box-shadow: none;
  filter: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  pointer-events: none;
}

.material-block i:nth-child(1) {
  width: 342px;
  height: 218px;
  transform: translateZ(109px);
}

.material-block i:nth-child(2) {
  width: 342px;
  height: 218px;
  transform: rotateY(180deg) translateZ(109px);
}

.material-block i:nth-child(3) {
  left: 62px;
  width: 218px;
  height: 218px;
  transform: rotateY(90deg) translateZ(171px);
}

.material-block i:nth-child(4) {
  left: 62px;
  width: 218px;
  height: 218px;
  transform: rotateY(-90deg) translateZ(171px);
}

.material-block i:nth-child(5) {
  width: 342px;
  height: 218px;
  transform: rotateX(90deg) translateZ(109px);
}

.material-block i:nth-child(6) {
  width: 342px;
  height: 218px;
  transform: rotateX(-90deg) translateZ(109px);
}

.atlantis {
  --stone: url("qvader-assets/textures/atlantis.jpg");
}

.anroechter {
  --stone: url("qvader-assets/textures/anroechter.jpg");
}

.iron {
  --stone: url("qvader-assets/textures/iron-red-optimized.jpg");
}

.indian-black {
  --stone: url("qvader-assets/textures/indian-black-deep.jpg");
}

.orion {
  --stone: url("qvader-assets/textures/orion-current.jpg");
}

.azul {
  --stone: url("qvader-assets/textures/azul-macaubas-optimized.jpg");
}

.blaustein {
  --stone: url("qvader-assets/textures/blaustein-geschliffen-optimized.jpg");
}

.wonder-grey {
  --stone: url("qvader-assets/textures/wonder-grey-original.jpg?v=119");
}

.himalaya {
  --stone: url("qvader-assets/textures/himalaya-neu.jpg");
}

.viscount {
  --stone: url("qvader-assets/textures/viscount-white-neu.jpg");
}

.material-block.indian-black i {
  filter: brightness(0.48) contrast(1.16) saturate(0.72);
}

.material-block.indian-black i:nth-child(2),
.material-block.indian-black i:nth-child(6) {
  filter: brightness(0.48) contrast(1.16) saturate(0.72);
}

.stone-card[data-material-card="indian-black"] {
  background: #191a1f;
}

.stone-card[data-material-card="indian-black"]::before {
  display: none;
}

.render-gallery {
  padding: clamp(76px, 10vw, 150px) clamp(20px, 5vw, 78px);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), transparent 34%),
    #0d0d0d;
}

.render-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.92fr 0.92fr;
  gap: 18px;
  margin-top: 38px;
}

.render-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(244,241,234,0.14);
  border-radius: 10px;
  background: #191a1f;
  box-shadow: 0 28px 86px rgba(0,0,0,0.34);
}

.render-card.current-ui {
  grid-column: 1 / -1;
  min-height: min(52vw, 680px);
}

.render-card.current-ui img {
  object-fit: cover;
  object-position: top center;
}

.render-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
}

.render-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(transparent, rgba(0,0,0,0.78));
}

.render-card figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
}

.render-card figcaption b {
  display: block;
  font-size: 26px;
}

.render-card figcaption span {
  display: block;
  margin-top: 8px;
  color: rgba(244,241,234,0.74);
  font-size: 14px;
  line-height: 1.45;
}

.dark-band {
  color: var(--paper);
  background:
    radial-gradient(circle at 80% 15%, rgba(139,224,255,0.09), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.055), transparent 32%),
    #0c0c0c;
}

.section-heading { max-width: 860px; }

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(244,241,234,0.66);
  font-size: 19px;
  line-height: 1.55;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.benefits article {
  border-color: rgba(255,255,255,0.16);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)),
    rgba(19,20,20,0.82);
}
.benefits b { font-size: 30px; }
.benefits p { color: rgba(245,242,237,0.68); }

.cta {
  min-height: 68svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 20px 110px;
}

.cta h2 {
  max-width: 980px;
  margin: 28px auto;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 28px clamp(20px, 4vw, 64px);
  border-top: 1px solid rgba(244,241,234,0.12);
  background: #171818;
  color: rgba(244,241,234,0.58);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.footer-brand {
  color: var(--paper);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.site-footer button {
  padding: 6px 0;
  border: 0;
  border-bottom: 1px solid rgba(139,224,255,0.44);
  background: transparent;
  color: var(--paper);
  font: 750 13px/1.2 inherit;
  cursor: pointer;
}

.site-footer button:hover,
.site-footer button:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 500ms ease, transform 540ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes morph {
  0%, 100% { transform: rotate(0deg) scale(0.92); border-radius: 30% 70% 45% 55%; }
  50% { transform: rotate(18deg) scale(1.06); border-radius: 58% 42% 70% 30%; }
}

@keyframes float {
  0%, 100% { transform: rotateX(6deg) rotateY(-8deg) translateY(0); }
  50% { transform: rotateX(2deg) rotateY(7deg) translateY(-18px); }
}

@keyframes spin {
  to { transform: rotateX(360deg) rotateY(360deg); }
}

@keyframes load {
  0%, 100% { width: 72%; }
  50% { width: 98%; }
}

@keyframes pulse {
  0%, 100% { transform: scale(0.82); opacity: 0.65; }
  50% { transform: scale(1.18); opacity: 1; }
}

@keyframes rotateCuePulse {
  0%, 100% {
    box-shadow: 0 18px 54px rgba(0,0,0,0.28), 0 0 0 0 rgba(139,224,255,0.22);
  }
  50% {
    box-shadow: 0 18px 54px rgba(0,0,0,0.28), 0 0 0 14px rgba(139,224,255,0);
  }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes showroom {
  0%, 100% { transform: rotateX(58deg) rotateZ(-8deg) rotateY(-12deg) translateY(0); }
  50% { transform: rotateX(58deg) rotateZ(5deg) rotateY(15deg) translateY(-10px); }
}

@keyframes heroScan {
  0%, 24% {
    opacity: 0;
    transform: translateX(-72%);
  }
  38%, 48% {
    opacity: 0.36;
  }
  66%, 100% {
    opacity: 0;
    transform: translateX(72%);
  }
}

@keyframes blockFloat {
  0%, 100% { transform: translate(-50%, -50%) rotateX(-14deg) rotateY(-32deg) rotateZ(0deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotateX(-11deg) rotateY(-22deg) rotateZ(-1deg) translateY(-16px); }
}

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

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

  nav { display: none; }

  .hero,
  .split,
  .suite-section,
  .flyer-benefits,
  .document-section {
    grid-template-columns: 1fr;
  }

  .suite-copy {
    position: static;
  }

  .document-showcase {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .doc-preview,
  .doc-preview.projection,
  .doc-preview.contract {
    position: relative;
    inset: auto;
    width: 100%;
    height: 460px;
    transform: none;
  }

  .suite-grid,
  .model-grid,
  .feature-list,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .original-config {
    grid-template-columns: 1fr;
  }

  .original-config-copy {
    min-height: auto;
  }

  .original-config-copy h3 {
    max-width: 12ch;
  }

  .original-config-frame,
  .original-config-frame img {
    min-height: 440px;
  }

  .hero {
    padding-top: 104px;
  }

  h1 { font-size: 78px; }
  h2 { font-size: 56px; }
  .lead { font-size: 20px; }
  .metrics dt { font-size: 34px; }
  .dash-head strong { font-size: 34px; }
  .marquee span { font-size: 34px; }
  h3 { font-size: 30px; }

  .product-stage {
    min-height: 520px;
  }

  .flyer-card {
    justify-self: start;
    transform: none;
  }

  .material-toolbar {
    top: 96px;
  }

  .hero-azul-stage {
    min-height: 500px;
  }

  .hero-stone-block {
    width: 320px;
    height: 205px;
  }

  .hero-rotate-cue {
    width: 92px;
    height: 92px;
    margin: -46px 0 0 -46px;
  }

  .hero-rotate-cue svg {
    width: 30px;
    height: 30px;
  }

  .hero-stone-block i:nth-child(1),
  .hero-stone-block i:nth-child(2) {
    width: 320px;
    height: 205px;
  }

  .hero-stone-block i:nth-child(1) { transform: translateZ(96px); }
  .hero-stone-block i:nth-child(2) { transform: rotateY(180deg) translateZ(96px); }

  .hero-stone-block i:nth-child(3),
  .hero-stone-block i:nth-child(4) {
    left: 64px;
    width: 192px;
    height: 205px;
  }

  .hero-stone-block i:nth-child(3) { transform: rotateY(90deg) translateZ(160px); }
  .hero-stone-block i:nth-child(4) { transform: rotateY(-90deg) translateZ(160px); }

  .hero-stone-block i:nth-child(5),
  .hero-stone-block i:nth-child(6) {
    width: 320px;
    height: 192px;
    top: 6px;
  }

  .hero-stone-block i:nth-child(5) {
    background-size: 320px 192px;
    background-position: center center;
    transform: rotateX(90deg) translateZ(102px);
  }
  .hero-stone-block i:nth-child(6) {
    background-size: 320px 192px;
    background-position: center center;
    transform: rotateX(-90deg) translateZ(102px);
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .stone-cards {
    grid-template-columns: 1fr;
  }

  .product-native,
  .workbench,
  .qsim,
  .qsim-workarea {
    grid-template-columns: 1fr;
  }

  .render-grid {
    grid-template-columns: 1fr;
  }

  .render-card,
  .render-card.current-ui {
    min-height: 420px;
    grid-column: auto;
  }

  .workbench {
    min-height: 0;
  }

  .qsim {
    min-height: 0;
  }

  .wb-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(244,241,234,0.12);
  }

  .qsim-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(244,241,234,0.12);
  }

  .qsim-preview {
    min-height: 460px;
  }

  .lite-stage,
  .lite-stage img { min-height: 0; }

  .shape-grid,
  .control-row,
  .qsim-card-grid,
  .qsim-material-grid,
  .qsim-form-grid,
  .qsim-docs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .configurator-grid {
    grid-template-columns: 110px 1fr;
  }

  .configurator-controls {
    grid-column: 1 / -1;
  }

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

@media (max-width: 560px) {
  .intro-mark { width: min(72vw, 360px); }
  .intro-landing::before { width: 92vw; }
  h1 { font-size: 54px; }
  h2 { font-size: 38px; }
  .lead { font-size: 18px; }
  .metrics dt { font-size: 28px; }
  .dash-head strong { font-size: 28px; }
  .marquee span { font-size: 24px; }
  h3 { font-size: 25px; }
  .hero-proof { grid-template-columns: 1fr; }
  .flyer-card {
    padding: 26px 22px;
  }
  .flyer-card li {
    font-size: 13px;
    padding-left: 30px;
  }
  .flyer-footer {
    display: grid;
    gap: 14px;
  }
  .flyer-footer span {
    text-align: left;
  }
  .brand img { width: 156px; height: auto; }
  .header-action { padding: 0 16px; min-height: 40px; }
  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 12px 20px;
  }
  .site-footer p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .metrics { grid-template-columns: 1fr; }
  .metrics dt.metric-brand { font-size: 22px; }
  .material-toolbar {
    top: 86px;
    max-height: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }
  .material-toolbar::-webkit-scrollbar { display: none; }
  .material-toolbar button { flex: 0 0 auto; }
  .app-grid { grid-template-columns: 1fr; }
  .app-grid aside { display: none; }
  .app-shell { width: 100%; }
  .configurator-grid { grid-template-columns: 1fr; }
  .configurator-preview { border-right: 0; }
  .scene-card { min-height: 380px; }
  .stone-stage { transform: scale(0.86); }
  .hero-azul-stage { min-height: 410px; }
  .hero-stone-block {
    translate: -50% -50%;
    transform: scale(calc(var(--scale) * 0.76)) rotateX(var(--rx)) rotateY(var(--ry));
  }
  .hero-stone-label {
    left: 4%;
    right: 4%;
    bottom: 22px;
    align-items: flex-start;
    border-radius: 8px;
    flex-direction: column;
  }
  .hero-stone-label span { text-align: left; }
  .interface-strip { grid-template-columns: 1fr; }
  .interface-card { min-height: 120px; }
  .suite-card,
  .suite-card.wide {
    min-height: 0;
  }
  .model-scene {
    min-height: 340px;
  }
  .original-config-frame,
  .original-config-frame img {
    min-height: 380px;
  }
  .doc-preview,
  .doc-preview.projection,
  .doc-preview.contract {
    height: clamp(440px, 125vw, 620px);
  }
  .stone-card { min-height: 320px; }
  .material-block { transform: translate(-50%, -50%) scale(0.7) rotateX(-14deg) rotateY(-32deg) rotateZ(0deg); }
  .shape-grid,
  .control-row,
  .qsim-card-grid,
  .qsim-material-grid,
  .qsim-form-grid,
  .qsim-docs,
  .quick-presets {
    grid-template-columns: 1fr;
  }
  .qsim-main {
    padding: 20px;
  }
  .qsim-toolbar {
    display: grid;
  }
  .qsim-actions {
    justify-content: flex-start;
  }
  .qsim-preview {
    min-height: 420px;
  }
  .qsim-grave {
    transform: translate(-50%, -50%) scale(0.78) rotateX(var(--grave-rx)) rotateZ(var(--grave-ry));
  }
  .qsim-help {
    white-space: normal;
    text-align: center;
  }
  .lite-stage,
  .lite-stage img { min-height: 0; }
  .lite-stage figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
  }
  .quader-cube { width: 128px; height: 128px; }
  .quader-cube i:nth-child(1) { transform: translateZ(64px); }
  .quader-cube i:nth-child(2) { transform: rotateY(180deg) translateZ(64px); }
  .quader-cube i:nth-child(3) { transform: rotateY(90deg) translateZ(64px); }
  .quader-cube i:nth-child(4) { transform: rotateY(-90deg) translateZ(64px); }
  .quader-cube i:nth-child(5) { transform: rotateX(90deg) translateZ(64px); }
  .quader-cube i:nth-child(6) { transform: rotateX(-90deg) translateZ(64px); }
  .insights { flex-direction: column; }
.insights article { width: 100%; }
}

/* Responsive navigation, touch ergonomics and answer-focused FAQ */
.faq-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(92px, 10vw, 150px) 0;
}
.faq-section .section-heading { max-width: 820px; }
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
  overflow: clip;
}
.faq-item summary {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 20px 60px 20px 24px;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 850;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  transform: translateY(-50%);
  transition: transform 180ms ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: rgba(244,241,234,0.7);
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 920px) {
  .site-header { grid-template-columns: 1fr auto auto; gap: 12px; }
  .hero > *, .split > *, .suite-section > *, .document-section > * { min-width: 0; }
  .menu-toggle { display: inline-flex; }
  .site-header nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(244,241,234,0.15);
    border-radius: 18px;
    background: rgba(17,18,18,0.98);
    box-shadow: 0 28px 70px rgba(0,0,0,0.48);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
  }
  .site-header.menu-open nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-header nav a,
  .site-header nav .nav-link {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    border-radius: 12px;
    color: rgba(244,241,234,0.82);
    text-align: left;
  }
  .site-header nav a:hover,
  .site-header nav .nav-link:hover,
  .site-header nav a:focus-visible,
  .site-header nav .nav-link:focus-visible { color: var(--paper); background: rgba(255,255,255,0.07); }
  h1 { font-size: clamp(54px, 9vw, 78px); }
  h2 { font-size: clamp(42px, 7vw, 56px); }
  .faq-list { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body::after { background-size: 44px 44px; }
  .site-header {
    padding: 12px max(14px, env(safe-area-inset-right)) 12px max(14px, env(safe-area-inset-left));
    gap: 9px;
  }
  h1 { max-width: 100%; font-size: clamp(38px, 10.5vw, 46px); line-height: 0.98; overflow-wrap: normal; hyphens: auto; }
  h2 { font-size: clamp(34px, 10vw, 42px); line-height: 1; overflow-wrap: anywhere; }
  .brand img { width: 132px; }
  .header-action { padding: 0 13px; min-height: 44px; font-size: 11px; }
  .menu-toggle { width: 44px; height: 44px; }
  .hero,
  .section,
  .suite-section,
  .document-section,
  .flyer-benefits,
  .product-native,
  .model-studio,
  .material-showcase,
  .dark-band,
  .cta { padding-left: 18px; padding-right: 18px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .hero-actions .primary,
  .hero-actions .secondary,
  .cta .primary { width: 100%; min-height: 52px; }
  .hero-proof span { min-height: 58px; }
  .aha-flow { flex-wrap: wrap; justify-content: flex-start; gap: 8px 10px; }
  .aha-flow i { width: 18px; }
  .hero-material-switch {
    left: 10px;
    right: 10px;
    padding: 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }
  .hero-material-switch::-webkit-scrollbar { display: none; }
  .hero-material-switch button { flex: 0 0 auto; min-height: 42px; padding-inline: 14px; }
  .faq-section { width: calc(100% - 36px); padding: 80px 0; }
  .faq-list { margin-top: 30px; }
  .faq-item { border-radius: 17px; }
  .faq-item summary { min-height: 64px; padding: 17px 54px 17px 18px; }
  .faq-item summary::after { right: 16px; }
  .faq-item p { padding: 0 18px 20px; font-size: 15px; }
  .pricing-modal { padding: 8px; }
  .pricing-window,
  .imprint-window {
    width: 100%;
    max-height: calc(100dvh - 16px);
    padding: 26px 18px;
    border-radius: 20px;
    overflow-y: auto;
  }
  .price-card { min-height: 286px; }
  .price-card strong { font-size: 30px; }

  .product-stage {
    min-height: 420px;
    overflow: clip;
    isolation: isolate;
  }

  .hero-azul-stage {
    min-height: 400px;
    overflow: clip;
    contain: layout paint;
    border: 0;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none;
  }

  .hero-azul-stage::before,
  .hero-stone-shadow,
  .hero-rotate-cue {
    display: none !important;
  }

  .hero-stone-block {
    top: 48%;
    transform: scale(calc(var(--scale) * 0.68)) rotateX(var(--rx)) rotateY(var(--ry));
  }

  .hero-material-switch {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .hero-stone-label {
    left: 0;
    right: 0;
    bottom: 0;
    border: 0;
    padding: 8px 0 0;
    background: transparent;
    backdrop-filter: none;
  }
}

@media (max-width: 380px) {
  .brand img { width: 112px; }
  .header-action { padding-inline: 10px; font-size: 10px; }
  .site-header { gap: 8px; }
  h1 { font-size: 41px; }
}

@media (hover: none) and (pointer: coarse) {
  .primary:hover, .secondary:hover, .header-action:hover { transform: none; }
  .site-header nav a, .site-header nav .nav-link, button, .primary, .secondary, summary { min-height: 44px; }
  .desktop-hint { display: none; }
  .touch-hint { display: inline; }
}

/* Launch responsive pass: stack the hero before fixed 3D geometry can overflow. */
@media (max-width: 1280px) and (min-width: 921px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding-inline: clamp(32px, 6vw, 72px);
  }

  .hero-copy {
    max-width: 900px;
  }

  .hero-proof,
  .metrics,
  .aha-flow {
    max-width: 820px;
  }

  .product-stage {
    width: 100%;
    min-height: 650px;
  }

  .hero-azul-stage {
    width: min(100%, 980px);
    min-height: 650px;
    margin-inline: auto;
  }
}

@media (max-width: 920px) {
  [id] {
    scroll-margin-top: 88px;
  }

  .hero,
  .model-studio,
  .section,
  .product-native,
  .suite-section,
  .document-section,
  .material-showcase,
  .faq-section,
  .cta {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy,
  .section-heading,
  .native-copy,
  .suite-copy,
  .document-copy {
    max-width: 100%;
  }

  .original-config-frame img,
  .lite-stage img,
  .document-image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 560px) {
  .lead,
  .section-heading > p,
  .native-copy > p,
  .suite-copy > p,
  .document-copy > p {
    font-size: 17px;
    line-height: 1.55;
  }

  .feature-list article,
  .suite-card,
  .faq-item,
  .price-card {
    overflow-wrap: anywhere;
  }

  .original-config-tabs {
    gap: 8px;
  }

  .original-config-tabs button {
    min-height: 44px;
  }

  .document-pills {
    gap: 8px;
  }

  .document-pills span {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }
}

/* Mobile: keep the interactive stone completely free-standing. */
@media (max-width: 560px) {
  .product-stage {
    min-height: 380px !important;
    overflow: clip !important;
    isolation: isolate;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .product-stage .hero-azul-stage {
    min-height: 370px !important;
    height: 370px !important;
    overflow: clip !important;
    contain: layout paint;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    touch-action: pan-y;
  }

  .product-stage .hero-azul-stage::before,
  .product-stage .hero-stone-shadow,
  .product-stage .hero-rotate-cue {
    display: none !important;
  }

  .product-stage .hero-stone-label {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }
}

