/* Editorial v2 — anti-slop layer (Fey / Modal / Antimetal patterns) */

:root {
  --base: #050508;
  --surface: #0a0a12;
  --surface-alt: #111120;
  --surface-deep: #050508;
  --text-primary: #f0ece0;
  --text-secondary: #8a8a9a;
  --text-tertiary: rgba(138, 138, 154, 0.5);
  --accent: #c8a84b;
  --accent-light: #e6c96e;
  --accent-dark: #7c5c1e;
  --accent-use: #c8a84b;
  --invert-bg: #f0ece0;
  --invert-fg: #050508;
  --glass-inset: inset 0 1px 0 rgba(255,255,255,0.06), inset 0 0 0 1px rgba(255,255,255,0.04);
}

body { background: var(--base); }

/* ============ Floating nav pill ============ */
.qx-nav-shell {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 var(--gutter-desktop);
  pointer-events: none;
  will-change: transform;
}
.qx-nav--pill {
  pointer-events: auto;
  max-width: min(1240px, calc(100vw - var(--gutter-desktop) * 2));
  width: 100%;
  min-height: 52px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 8px 6px 16px;
  border-radius: 999px;
  background: rgba(19, 19, 19, 0.68);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s, min-height 0.35s;
  position: relative;
  overflow: visible;
}
.qx-nav--pill.is-scrolled {
  background: rgba(12, 12, 12, 0.94);
  box-shadow: 0 20px 56px -28px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(212, 162, 76, 0.06);
  min-height: 48px;
}
.qx-nav__progress {
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.35s;
}
.qx-nav--pill.is-scrolled .qx-nav__progress { opacity: 1; }
.qx-nav__progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent-light));
  border-radius: inherit;
  transition: width 0.12s linear;
}
.qx-nav--pill .qx-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex-shrink: 0;
}
.qx-nav--pill .qx-nav__brand span {
  display: inline-block;
  font-family: var(--font-caps);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: opacity 0.4s, max-width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.qx-nav--pill .qx-nav__brand span.is-visible {
  opacity: 1;
  max-width: 120px;
}
.qx-nav--pill .qx-nav__brand img {
  height: 32px;
  width: 32px;
  object-fit: contain;
}
.qx-nav--pill .qx-nav__links a .num { display: none; }
.qx-nav--pill .qx-nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 4px;
  min-width: 0;
  position: relative;
}
.qx-nav__indicator { display: none; }
.qx-nav--pill .qx-nav__links a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
  position: relative;
  z-index: 1;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: color 0.25s, background 0.25s, border-color 0.25s;
}
.qx-nav--pill .qx-nav__links a.is-active,
.qx-nav--pill .qx-nav__links a.is-preview {
  color: var(--accent-light);
  background: rgba(212, 162, 76, 0.1);
  border-color: rgba(212, 162, 76, 0.24);
}
.qx-nav--pill .qx-nav__links a:hover {
  color: var(--text-primary);
}
.qx-nav--pill .qx-nav__links a.is-active:hover,
.qx-nav--pill .qx-nav__links a.is-preview:hover {
  color: var(--accent-light);
}
.qx-nav--pill .qx-nav__links a.is-active::after { display: none; }
.qx-nav--pill .qx-nav__dot { display: none; }
.qx-nav--pill .qx-nav__actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.qx-nav--pill .qx-nav__social {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.25s;
}
.qx-nav--pill .qx-nav__social:hover {
  color: var(--accent);
  border-color: rgba(212, 162, 76, 0.35);
}
.qx-nav--pill .qx-nav__cta {
  border: none;
  background: var(--accent);
  color: var(--base);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 10px;
  letter-spacing: 0.05em;
  font-weight: 500;
  white-space: nowrap;
}
.qx-nav--pill .qx-nav__cta:hover {
  background: var(--accent-light);
  color: var(--base);
  box-shadow: 0 8px 24px -8px rgba(212, 162, 76, 0.45);
}
.qx-nav--pill .qx-nav__cta-dot { display: none; }

/* kill old full-width nav */
body > .qx-nav:not(.qx-nav--pill) { display: none; }

/* ============ Editorial hero ============ */
.qx-hero--editorial {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.qx-hero__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.qx-hero__orb {
  position: absolute;
  left: var(--orb-x, 50%);
  top: var(--orb-y, 50%);
  width: clamp(280px, 40vw, 520px);
  height: clamp(280px, 40vw, 520px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 75, 0.09) 0%, transparent 68%);
  filter: blur(2px);
  animation: qx-orb-float 14s ease-in-out infinite;
}
.qx-hero__orb--sm {
  width: clamp(120px, 18vw, 220px);
  height: clamp(120px, 18vw, 220px);
  background: radial-gradient(circle, rgba(212, 162, 76, 0.06) 0%, transparent 70%);
  animation-duration: 18s;
  animation-delay: -4s;
}
@keyframes qx-orb-float {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(calc(-50% + 12px), calc(-50% - 18px)) scale(1.06); }
}
.qx-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.qx-hero__scroll { display: none; }
.qx-hero--editorial .qx-hero__glow {
  background: radial-gradient(ellipse 42% 36% at 78% 42%, rgba(212, 162, 76, 0.07) 0%, transparent 62%);
}
.qx-hero__grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.qx-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.qx-hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(212, 162, 76, 0.6);
}
.qx-hero__mark {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  cursor: default;
  position: relative;
  perspective: 600px;
}
.qx-hero__mark-glow {
  position: absolute;
  left: 0;
  top: 50%;
  width: 88px;
  height: 88px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 162, 76, 0.22) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.4s, transform 0.4s;
}
.qx-hero__mark:hover .qx-hero__mark-glow {
  opacity: 1;
  transform: translateY(-50%) scale(1.15);
}
.qx-hero__mark .qx-hero__logo {
  position: relative;
  z-index: 1;
  width: clamp(72px, 10vw, 96px);
  height: clamp(72px, 10vw, 96px);
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(212, 162, 76, 0.25));
  will-change: transform;
  opacity: 0;
  transform: scale(0.88);
  transition: filter 0.35s;
}
.qx-hero.is-ready .qx-hero__mark .qx-hero__logo,
.qx-hero--editorial.is-ready .qx-hero__mark .qx-hero__logo {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.05s,
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.05s,
              filter 0.35s;
}
.qx-hero__mark:hover .qx-hero__logo {
  filter: drop-shadow(0 12px 40px rgba(212, 162, 76, 0.4));
}
.qx-hero__mark-text {
  font-family: var(--font-caps);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--text-primary);
}
.qx-hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.75rem, 5.8vw, 4.75rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin: 0 0 28px;
  max-width: 11ch;
}
.qx-hero__title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.04em;
}
.qx-hero__title .line-inner {
  display: inline-block;
  transform: translateY(110%);
}
.qx-hero.is-ready .qx-hero__title .line-inner,
.qx-hero--editorial.is-ready .qx-hero__title .line-inner {
  transform: translateY(0);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.qx-hero__title .line:nth-child(1) .line-inner { transition-delay: 0.12s; }
.qx-hero__title .line:nth-child(2) .line-inner { transition-delay: 0.22s; }
.qx-hero__title em {
  font-style: italic;
  color: var(--text-primary);
  opacity: 0.72;
}
.qx-hero__lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 42ch;
  margin: 0 0 36px;
  opacity: 0;
}
.qx-hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  opacity: 0;
}
.qx-btn--gold {
  background: var(--accent) !important;
  color: var(--base) !important;
  border-color: var(--accent) !important;
  font-size: 13px;
  padding: 12px 22px;
  box-shadow: 0 8px 32px -12px rgba(212, 162, 76, 0.5);
}
.qx-btn--gold:hover {
  background: var(--accent-light) !important;
  box-shadow: 0 12px 40px -8px rgba(212, 162, 76, 0.55);
}
.qx-btn--invert {
  background: var(--invert-bg) !important;
  color: var(--invert-fg) !important;
  border-color: transparent !important;
  font-size: 13px;
  padding: 12px 22px;
}
.qx-btn--invert:hover {
  background: #fff !important;
  box-shadow: 0 8px 32px -8px rgba(255, 255, 255, 0.25);
}
.qx-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.25s;
}
.qx-link:hover { color: var(--text-primary); }
.qx-hero__foot {
  margin-top: 48px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.qx-hero__artifact {
  position: relative;
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
  transform-origin: center center;
  will-change: transform;
}
.qx-hero__artifact-frame {
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--glass-inset), 0 40px 80px -32px rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.qx-hero__artifact-screen {
  aspect-ratio: 4/3;
  background: linear-gradient(165deg, #1a1814 0%, #0f0e0c 100%);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.qx-hero__artifact-screen::after {
  content: "QYVERIX";
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-family: var(--font-caps);
  font-size: 10px;
  letter-spacing: 0.5em;
  color: rgba(212, 162, 76, 0.25);
}
.qx-hero__artifact-bar {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.35);
}
.qx-hero__artifact-bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 900px) {
  .qx-hero__grid { grid-template-columns: 1fr; }
  .qx-hero__artifact { transform: none; max-width: 520px; }
  .qx-hero__title { max-width: none; }
}

/* hide old centered hero blocks */
.qx-hero--editorial .qx-hero__top,
.qx-hero--editorial .qx-hero__center,
.qx-hero--editorial .qx-hero__rail { display: none !important; }

/* ============ Ledger editorial ============ */
.qx-ledger { background: var(--surface); }

/* ============ Services — 2 featured + list ============ */
.qx-services--editorial .qx-services__featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 1px;
  width: 100%;
}
.qx-service-featured {
  background: var(--base);
  padding: clamp(32px, 4vw, 48px);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: background 0.3s;
  cursor: default;
}
.qx-service-featured[data-glow]::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(
    400px circle at var(--mx, 50%) var(--my, 50%),
    rgba(212, 162, 76, 0.35),
    transparent 40%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: var(--glow-o, 0);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.qx-service-featured:hover { background: var(--surface); }
.qx-service-featured__n {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-tertiary);
  text-transform: uppercase;
}
.qx-service-featured__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 24px 0 16px;
}
.qx-service-featured__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 36ch;
  margin: 0;
}
.qx-services__list {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
}
.qx-service-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: opacity 0.25s, padding-left 0.25s;
  cursor: default;
}
.qx-services__list:hover .qx-service-row { opacity: 0.35; }
.qx-services__list .qx-service-row:hover {
  opacity: 1;
  padding-left: 16px;
}
.qx-service-row__n {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-tertiary);
  letter-spacing: 0.14em;
}
.qx-service-row__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
}
.qx-service-row__span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .qx-services--editorial .qx-services__featured { grid-template-columns: 1fr; }
  .qx-service-row { grid-template-columns: 1fr; gap: 8px; }
}

/* ============ Horizontal work rail ============ */
.qx-work-rail-section {
  padding-top: var(--space-40);
  background: var(--surface);
}
.qx-work-pin {
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.qx-work-track {
  display: flex;
  gap: 24px;
  padding: 0 var(--gutter-desktop);
  height: 100%;
  align-items: center;
  will-change: transform;
}
.qx-case {
  flex: 0 0 min(420px, 78vw);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.qx-case__frame {
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(212, 162, 76, 0.2), rgba(255, 255, 255, 0.05));
  box-shadow: var(--glass-inset), 0 32px 64px -32px rgba(0, 0, 0, 0.65);
  position: relative;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.qx-case:hover .qx-case__frame { transform: translateY(-4px); }
.qx-case__chrome { display: none; }
.qx-case__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(8, 8, 8, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.qx-case__bar-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.qx-case__bar-type {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
}
.qx-case__link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.qx-case__screen {
  aspect-ratio: 16 / 10;
  padding: 0;
  display: block;
  position: relative;
  overflow: hidden;
}
.qx-case__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.qx-case__screen img.is-hidden { display: none; }
.qx-case__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}
.qx-case__screen img:not(.is-hidden) + .qx-case__fallback { display: none; }
.qx-case__fallback span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(232, 230, 225, 0.85);
}
.qx-case__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 8px 0 0;
  max-width: 36ch;
}
.qx-case__visit {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
}
.qx-case__case-link {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.25s;
}
.qx-case__case-link:hover { color: var(--accent); }
.qx-case__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.qx-case__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 8px 0 0;
}
.qx-work-counter {
  position: absolute;
  bottom: 48px;
  right: max(var(--gutter-desktop), calc(50% - var(--container-max) / 2 + var(--gutter-desktop)));
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-tertiary);
  text-transform: uppercase;
  z-index: 5;
}
.qx-work-rail-section .qx-work__item { display: none; }

@media (max-width: 768px), (prefers-reduced-motion: reduce) {
  .qx-work-pin { height: auto; padding: 40px 0 80px; }
  .qx-work-track {
    flex-direction: column;
    height: auto;
    transform: none !important;
  }
  .qx-case { flex: none; width: 100%; max-width: 420px; margin: 0 auto; }
  .qx-work-counter { position: static; text-align: center; padding: 24px; }
}

/* ============ Team editorial rows ============ */
.qx-team--editorial .qx-team__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: transparent;
  border: none;
  margin-top: 48px;
}
.qx-team--editorial .qx-team__card {
  display: grid;
  grid-template-columns: 140px 1fr 1.2fr;
  gap: 32px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  border-radius: 0;
}
.qx-team--editorial .qx-team__card:hover {
  background: transparent;
  box-shadow: none;
}
.qx-team--editorial .qx-team__card::before { display: none; }
.qx-team--editorial .qx-team__role { margin: 0; }
.qx-team--editorial .qx-team__name {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0;
}
.qx-team--editorial .qx-team__tags { display: none; }

@media (max-width: 768px) {
  .qx-team--editorial .qx-team__card {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ============ CTA snap hover ============ */
.qx-cta-band .qx-btn--gold {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s;
}
.qx-cta-band .qx-btn--gold:hover { transform: translateY(-2px); }

/* ============ Footer deeper ============ */
.qx-footer { background: var(--surface-deep); }
.qx-footer__mega-cta a {
  font-weight: 500;
  color: var(--text-primary);
}
.qx-footer__mega-cta a:hover { color: var(--accent); }

/* Tone rhythm */
.qx-about { background: var(--base); }
.qx-process { background: var(--base); }
.qx-voices { background: var(--base); }
.qx-industries { background: var(--surface-alt); }

/* Less gold italic spam */
.em-accent { color: var(--text-primary); opacity: 0.85; font-style: italic; }

/* ============ Classic (centred) hero — old-site style ============ */
.qx-hero--classic {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10rem 4vw 6rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--base);
}

/* Particle canvas */
.qx-hero--classic .qx-hero__canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  width: 100%;
  height: 100%;
}

/* Orbs */
.qx-hero--classic .qx-hero__orb--purple {
  position: absolute;
  width: 700px;
  height: 700px;
  top: -200px;
  left: -200px;
  transform: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106,79,200,0.22) 0%, transparent 70%);
  filter: blur(80px);
  animation: qx-hero-orb-drift 12s ease-in-out infinite alternate;
}
.qx-hero--classic .qx-hero__orb--gold {
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: -100px;
  top: auto;
  left: auto;
  transform: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,75,0.18) 0%, transparent 70%);
  filter: blur(80px);
  animation: qx-hero-orb-drift 10s ease-in-out infinite alternate-reverse;
}

/* Rings */
.qx-hero--classic .qx-hero__ring {
  position: absolute;
  border: 1px solid rgba(200,168,75,0.12);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: qx-ring-pulse 4s ease-in-out infinite;
}
.qx-hero--classic .qx-hero__ring--1 { width: 600px; height: 600px; animation-delay: 0s; }
.qx-hero--classic .qx-hero__ring--2 { width: 900px; height: 900px; animation-delay: 1.3s; }
.qx-hero--classic .qx-hero__ring--3 { width: 1200px; height: 1200px; animation-delay: 2.6s; }

/* Glow */
.qx-hero--classic .qx-hero__glow {
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(200,168,75,0.08) 0%, transparent 70%);
}

/* Content block */
.qx-hero--classic .qx-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 100%;
  text-align: center;
}

/* Eyebrow */
.qx-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(200,168,75,0.3);
  border-radius: 999px;
  background: rgba(200,168,75,0.08);
  opacity: 0;
}

/* Title */
.qx-hero--classic .qx-hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.qx-hero__title-gold {
  background: linear-gradient(135deg, #f5dfa0 0%, var(--accent) 50%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
}
.qx-hero__title-light {
  color: var(--text-primary);
  font-style: italic;
  -webkit-text-fill-color: initial;
  opacity: 0;
}

/* Tagline box */
.qx-hero__tagline-wrap {
  margin: 1.8rem auto 2.5rem;
  padding: 1rem 2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(200,168,75,0.05);
  display: inline-block;
  max-width: 700px;
  opacity: 0;
}
.qx-hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: #f5dfa0;
  letter-spacing: 0.03em;
  margin: 0;
}
.qx-hero__tagline strong {
  font-weight: 600;
  font-style: normal;
  color: var(--accent);
}

/* Lede + actions in classic */
.qx-hero--classic .qx-hero__lede {
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}
.qx-hero--classic .qx-hero__actions {
  justify-content: center;
}

/* Scroll cue */
.qx-hero__scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-secondary);
  opacity: 0;
  pointer-events: none;
}
.qx-hero__scroll-line {
  width: 1px;
  height: 50px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.qx-hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: qx-scroll-drop 1.8s ease-in-out infinite;
}

@keyframes qx-hero-orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, -30px) scale(1.08); }
}
@keyframes qx-ring-pulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.6; }
}
@keyframes qx-scroll-drop {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* Mobile handled in css/mobile.css */
