/* Shinkori — glass perimeter aesthetic (NeuroCoWorks family) */

@property --sk-glow-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

:root {
  --sk-forest: #1a1412;
  --sk-forest-deep: #0a0908;
  --sk-fire-dark: #4a0c08;
  --sk-fire-mid: #7a1c0c;
  --sk-fire-bright: #a83014;
  --sk-fire-contrast: #6685a4;
  --sk-slate: #6685a4;
  --sk-slate-rgb: 102, 133, 164;
  --sk-charcoal: #5a626c;
  --sk-gold: #fefefe;
  --sk-gold-rgb: 255, 255, 255;
  --sk-cyan: #6685a4;
  --sk-cyan-rgb: 102, 133, 164;
  --sk-plum: #6b4c8a;
  --sk-plum-rgb: 107, 76, 138;
  --sk-mist: #6685a4;
  --sk-teal: #5a626c;
  --sk-teal-rgb: 90, 98, 108;
  --sk-ember: #8b5cf6;
  --sk-ember-rgb: 139, 92, 246;
  --sk-ink: #1a1c1f;
  --sk-white: #ffffff;
  --sk-cream: #f4f5f7;
  --sk-muted: #8a9098;
  --sk-card-shadow: 0 18px 50px rgba(16, 20, 28, 0.1);
  --sk-radius: 1.25rem;
  --sk-radius-lg: 2rem;
  --font: "Quicksand", system-ui, sans-serif;
  --glow-comp-rgb: 102 133 164;
  --glow-bridge-rgb: 90 98 108;
  --glow-comp-echo-rgb: 107 76 138;
  --sk-sticky-edge: 1rem;
  --sk-sticky-bottom: max(var(--sk-sticky-edge), env(safe-area-inset-bottom, 0px));
  --sk-sticky-pill-py: 0.85rem;
  --sk-sticky-pill-px: 1.2rem;
  --sk-sticky-pill-font: 0.86rem;
  --sk-sticky-pill-min-h: calc(var(--sk-sticky-pill-py) * 2 + 1.35rem);
}

@media (min-width: 721px) {
  :root {
    --sk-sticky-bottom: max(4.5rem, env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 640px) {
  :root {
    --sk-sticky-edge: 0.85rem;
    --sk-sticky-bottom: max(0.85rem, env(safe-area-inset-bottom, 0px));
    --sk-sticky-pill-py: 0.72rem;
    --sk-sticky-pill-px: 1rem;
    --sk-sticky-pill-font: 0.8rem;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--sk-ink);
  background: var(--sk-cream);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ─── Glass perimeter shell (Polycore lockpoint) ─────────────────────────── */

.glass-shell {
  position: relative;
  border-radius: var(--sk-radius-lg);
  overflow: visible;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Conic glow — perimeter only, behind glass face and content */
.glass-shell--ambient::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border-radius: max(0.6rem, calc(var(--sk-radius-lg) - 18px));
  background: conic-gradient(
    from var(--sk-glow-angle),
    rgb(102, 133, 164) 0deg,
    rgb(90, 98, 108) 78deg,
    rgb(107, 76, 138) 148deg,
    rgb(122, 28, 12) 218deg,
    rgb(74, 12, 8) 288deg,
    rgb(102, 133, 164) 360deg
  );
  opacity: 0;
  filter: blur(10px) saturate(1.08);
  animation: sk-glow-spin 28s linear infinite;
  pointer-events: none;
  transition: opacity 0.35s ease, filter 0.35s ease;
}

/* Glass face — opaque inset ring blocks glow from bleeding inward */
.glass-shell--ambient::after {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 0;
  border-radius: max(0.85rem, calc(var(--sk-radius-lg) - 8px));
  background:
    radial-gradient(ellipse 120% 70% at 18% 0%, rgba(255, 255, 255, 0.14) 0%, transparent 52%),
    var(--glass-face, #ffffff);
  border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.55));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.glass-shell:hover {
  transform: translateY(-6px) scale(1.01);
}

.glass-shell:hover::before {
  opacity: 0.62;
  filter: blur(13px) saturate(1.22);
  animation-duration: 18s;
}

.glass-shell.fx-tilt {
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(0);
  transition: transform 0.2s ease-out, box-shadow 0.25s ease;
}

.glass-shell.fx-tilt:hover {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-6px) scale(1.01);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
}

.glass-shell.fx-tilt .glass-shell__clip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--sx, 50%) var(--sy, 50%),
    rgba(255, 255, 255, 0.16),
    transparent 42%
  );
  opacity: 0;
  transition: opacity 0.25s;
}

.glass-shell.fx-tilt:hover .glass-shell__clip::before {
  opacity: 1;
}

/* Inner clip — solid face above glow layers */
.glass-shell__clip {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: max(0.85rem, calc(var(--sk-radius-lg) - 8px));
  margin: 8px;
  padding: 1.25rem;
  background: var(--glass-face, #ffffff);
  border: none;
}

.section--dark .glass-shell,
.section--forest .glass-shell,
.glass-shell--on-dark {
  --glass-face: #121916;
  --glass-border: rgba(255, 255, 255, 0.1);
}

.section--forest .glass-shell--ambient::before,
.glass-shell--mixer-glow.glass-shell--ambient::before {
  background: conic-gradient(
    from var(--sk-glow-angle),
    rgb(102, 133, 164) 0deg,
    rgb(90, 98, 108) 85deg,
    rgb(122, 28, 12) 165deg,
    rgb(168, 48, 20) 245deg,
    rgb(58, 68, 78) 310deg,
    rgb(102, 133, 164) 360deg
  );
  opacity: 0;
  filter: blur(10px) saturate(1.18);
  z-index: -2;
  transition: opacity 0.35s ease, filter 0.35s ease;
}

.glass-shell--mixer-glow.glass-shell--ambient::before {
  opacity: 0.38;
}

.glass-shell--mixer-glow.glass-shell--ambient:hover::before {
  opacity: 0.58;
}

.section--dark .glass-shell--ambient::after,
.section--forest .glass-shell--ambient::after,
.glass-shell--on-dark.glass-shell--ambient::after {
  background:
    radial-gradient(ellipse 110% 65% at 20% 0%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 90% 70% at 80% 100%, rgba(102, 133, 164, 0.06) 0%, transparent 55%),
    var(--glass-face);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  z-index: 0;
}

.glass-shell--mixer-glow.glass-shell--ambient::after {
  background:
    radial-gradient(ellipse 95% 85% at 28% 12%, rgba(255, 255, 255, 0.22) 0%, transparent 58%),
    radial-gradient(ellipse 75% 65% at 72% 88%, rgba(102, 133, 164, 0.16) 0%, transparent 52%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 42%, rgba(0, 0, 0, 0.12) 100%),
    rgba(14, 20, 18, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -12px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px) saturate(1.45);
  -webkit-backdrop-filter: blur(14px) saturate(1.45);
}

.section--light .glass-shell,
.section--warm .glass-shell {
  --glass-face: #ffffff;
  --glass-border: rgba(0, 0, 0, 0.06);
}

.section--dark .glass-shell__clip,
.section--forest .glass-shell__clip,
.glass-shell--on-dark .glass-shell__clip {
  color: var(--sk-white);
}

@keyframes sk-glow-spin {
  to {
    --sk-glow-angle: 360deg;
  }
}

/* ─── Hero ──────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.25rem 4rem;
  overflow: hidden;
  color: var(--sk-ink);
  background: #ffffff;
}

.hero__orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  will-change: transform;
}

.hero__bubbles {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 54rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fade-up 1s ease both;
  isolation: isolate;
  transform: translate3d(var(--px, 0), var(--py, 0), 0);
  transition: transform 0.35s ease-out;
}

.hero__orbs .viz-orbs {
  mask-image: radial-gradient(
    ellipse 72% 58% at 50% 46%,
    transparent 0%,
    transparent 34%,
    rgba(0, 0, 0, 0.35) 52%,
    #000 78%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 72% 58% at 50% 46%,
    transparent 0%,
    transparent 34%,
    rgba(0, 0, 0, 0.35) 52%,
    #000 78%
  );
}

.hero__overlay,
.hero__landscape,
.hero__staff {
  display: none;
}

.viz-orbs {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__overlay {
  display: none;
}

.hero__landscape {
  display: none;
}

.hero__staff {
  display: none;
}

.staff-decor {
  width: 100%;
  height: 80px;
}

.staff-notes ellipse {
  animation: note-float 4s ease-in-out infinite;
}

.staff-notes ellipse:nth-child(odd) {
  animation-delay: -1.2s;
}

@keyframes note-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero__content::before {
  content: "";
  position: absolute;
  inset: -1.5rem -8%;
  z-index: -1;
  background: radial-gradient(
    ellipse 78% 72% at 50% 44%,
    rgba(254, 254, 254, 0.98) 0%,
    rgba(254, 254, 254, 0.92) 42%,
    rgba(254, 254, 254, 0.55) 68%,
    rgba(254, 254, 254, 0) 88%
  );
  pointer-events: none;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__kicker {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4a4f54;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero__brand {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.hero__wordmark {
  width: min(520px, 88vw);
  height: auto;
  margin: 0 auto 1rem;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.08));
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 44rem;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.55);
  padding: 0.15rem 1rem 0.15rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.85rem 0;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--sk-ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 600;
  color: var(--sk-muted);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 1rem;
  color: var(--sk-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* SEO landing pages */
.seo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.seo-top__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.seo-top__brand img {
  width: 7.5rem;
  height: auto;
  display: block;
}

.seo-top__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.seo-top__nav a {
  color: var(--sk-ink);
  text-decoration: none;
}

.seo-top__nav a:hover {
  color: #6685a4;
}

.seo-hero {
  padding: 3.5rem 0 2.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(102, 133, 164, 0.18), transparent 55%),
    linear-gradient(180deg, #f7f5f1 0%, #ebe7e0 100%);
}

.seo-hero h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--sk-ink);
}

.seo-hero .section__lead {
  margin-bottom: 1.5rem;
}

.seo-prose {
  max-width: 42rem;
  margin: 0 auto;
}

.seo-prose h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.2;
  color: var(--sk-ink);
}

.seo-prose h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.1rem;
  color: var(--sk-ink);
}

.seo-prose p,
.seo-prose li {
  color: var(--sk-muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.seo-prose ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.seo-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.seo-related {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.seo-related a {
  display: block;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.65rem;
  text-decoration: none;
  color: var(--sk-ink);
  background: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.seo-related a span {
  display: block;
  margin-top: 0.25rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--sk-muted);
}

@media (max-width: 640px) {
  .seo-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

.hero__eyebrow {
  margin: 0 auto 0.65rem;
  max-width: 44rem;
  font-size: clamp(1rem, 2.2vw, 1.28rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #2a2e32;
  line-height: 1.45;
}

.hero__tagline {
  position: relative;
  z-index: 1;
  margin: 0 auto 1.75rem;
  max-width: 36rem;
  padding: 0.5rem 1.1rem;
  font-size: clamp(0.78rem, 1.5vw, 0.9rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--sk-ink);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.nav-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  max-width: 52rem;
  margin: 0 auto 1.75rem;
}

.nav-pill {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(102, 133, 164, 0.22);
  border-radius: 999px;
  color: var(--sk-ink);
  font-size: 0.88rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.88);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.nav-pill:hover,
.nav-pill:focus-visible {
  border-color: rgba(102, 133, 164, 0.5);
  background: #fff;
  color: var(--sk-forest);
  box-shadow: 0 0 0 1px rgba(102, 133, 164, 0.22);
  transform: none;
}

.nav-pill.fx-magnetic,
.nav-pill.fx-magnetic:hover,
.nav-pill.fx-magnetic:focus-visible {
  transform: none;
}

.hero__reel {
  position: relative;
  z-index: 1;
  width: min(42rem, 94vw);
  margin: 0 auto 1.25rem;
}

.hero__reel-label {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sk-charcoal);
  text-align: center;
}

.hero__reel-player {
  border-radius: var(--sk-radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.hero__player {
  position: relative;
  z-index: 1;
  width: min(36rem, 94vw);
  padding: 1rem 1.25rem;
  border-radius: var(--sk-radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.hero__play {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(102, 133, 164, 0.22);
  color: var(--sk-ink);
  font-weight: 600;
  font-size: 0.88rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.hero__play:hover,
.hero__play:focus-visible {
  border-color: rgba(102, 133, 164, 0.5);
  background: #fff;
  color: var(--sk-forest);
  box-shadow: 0 0 0 1px rgba(102, 133, 164, 0.22);
  transform: none;
}

.hero__play.is-playing {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.22);
}

.hero__play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent currentColor;
  transition: all 0.2s;
}

.hero__play.is-playing .hero__play-icon {
  width: 10px;
  height: 14px;
  border: none;
  background: linear-gradient(90deg, currentColor 0 40%, transparent 40% 60%, currentColor 60% 100%);
}

.hero__spectrum {
  height: 72px;
  border-radius: 0.75rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.04);
}

.spectrum-canvas,
.sonic-orb-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* ─── Sections ──────────────────────────────────────────────────────────── */

.section {
  padding: 4.5rem 1.25rem;
}

.section--light {
  background: var(--sk-white);
}

.section--warm {
  background: linear-gradient(180deg, #ffffff 0%, #f4f5f7 100%);
}

.section--forest {
  background: linear-gradient(180deg, #0a0908 0%, #14100e 48%, #100c0a 100%);
  color: var(--sk-white);
}

.section--dark {
  background: linear-gradient(180deg, #0a0908 0%, #12100e 100%);
  color: var(--sk-white);
}

.container {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
}

.section__header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 2.75rem;
}

.section__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.section--light .section__kicker {
  color: #3d4248;
}

.section--warm .section__kicker {
  color: #3d4248;
}

.section--forest .section__kicker,
.section--dark .section__kicker {
  color: var(--sk-cyan);
}

.section__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--sk-ink);
}

.section--forest .section__title,
.section--dark .section__title {
  color: var(--sk-white);
}

.section__lead {
  margin: 0 auto;
  max-width: 42rem;
  font-size: 1.05rem;
  color: var(--sk-muted);
}

.section--forest .section__lead,
.section--dark .section__lead {
  color: rgba(255, 255, 255, 0.72);
}

.hero__actions {
  position: relative;
  z-index: 1;
  margin: 0 auto 1.25rem;
}

.btn--hero {
  padding: 0.7rem 1.5rem;
  font-size: 0.92rem;
}

/* ─── Studio process ─────────────────────────────────────────────────────── */

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 1.15rem 1.1rem;
  border-radius: var(--sk-radius);
  background: var(--sk-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--sk-card-shadow);
}

.process-step__num {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--sk-fire-mid);
}

.process-step h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  color: var(--sk-forest);
}

.process-step p {
  margin: 0;
  font-size: 0.88rem;
  color: #4a524e;
  line-height: 1.5;
}

.process-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .process-panels {
    grid-template-columns: 1fr 1fr;
  }
}

.process-panel h3 {
  margin: 0 0 0.85rem;
  font-size: 1.12rem;
  color: var(--sk-forest);
}

.process-list {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: #4a524e;
}

.process-list li {
  margin-bottom: 0.5rem;
  line-height: 1.45;
}

.process-note {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sk-charcoal);
}

/* ─── Lead magnet / newsletter opt-in ─────────────────────────────────────── */

.sk-magnet__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: start;
}

.sk-magnet__list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.sk-magnet__list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.35rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--sk-charcoal);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sk-magnet__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--sk-slate);
}

.sk-magnet__card-inner {
  padding: 1.15rem 1.2rem 1.25rem;
}

.sk-magnet__card-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sk-slate);
}

.sk-magnet__card-title {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  line-height: 1.2;
}

.sk-magnet__card-lead {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--sk-charcoal);
}

.sk-magnet__form {
  display: grid;
  gap: 0.65rem;
}

.sk-magnet__form label {
  display: grid;
  gap: 0.28rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sk-muted);
}

.sk-magnet__form input[type="text"],
.sk-magnet__form input[type="email"] {
  width: 100%;
  box-sizing: border-box;
  padding: 0.62rem 0.75rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  color: var(--sk-forest);
  background: #fff;
}

.sk-magnet__form input:focus {
  outline: none;
  border-color: rgba(102, 133, 164, 0.55);
  box-shadow: 0 0 0 3px rgba(102, 133, 164, 0.15);
}

.sk-magnet__consent {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 0.55rem !important;
  align-items: start;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  line-height: 1.4;
  text-transform: none !important;
  letter-spacing: normal !important;
  color: var(--sk-charcoal) !important;
}

.sk-magnet__consent input {
  margin-top: 0.15rem;
  width: 1rem;
  height: 1rem;
  accent-color: var(--sk-forest);
}

.sk-magnet__turnstile {
  min-height: 0;
}

.sk-magnet__submit {
  width: 100%;
  justify-content: center;
}

.sk-magnet__status {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
}

.sk-magnet__status--ok {
  color: #2d6a4f;
}

.sk-magnet__status--err {
  color: #a83014;
}

.sk-magnet__success-title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--sk-forest);
}

.sk-magnet__success-lead {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--sk-charcoal);
}

@media (max-width: 860px) {
  .sk-magnet__grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Lead dock (NCW-parity contact panel) ───────────────────────────────── */

@keyframes sk-lead-pop {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.lead-dock {
  position: fixed;
  right: max(var(--sk-sticky-edge), env(safe-area-inset-right, 0px));
  bottom: var(--sk-sticky-bottom);
  z-index: 360;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 0.65rem;
}

.lead-dock__fab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: var(--sk-sticky-pill-min-h);
  box-sizing: border-box;
  padding: var(--sk-sticky-pill-py) var(--sk-sticky-pill-px);
  border-radius: 999px;
  font-size: var(--sk-sticky-pill-font);
  font-weight: 700;
  line-height: 1.15;
  color: var(--sk-white);
  background: var(--sk-forest);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 36px rgba(10, 8, 8, 0.32);
  white-space: nowrap;
  transition: box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.lead-dock__fab:hover,
.lead-dock__fab:focus-visible {
  box-shadow: 0 18px 42px rgba(10, 8, 8, 0.42);
  background: #241c18;
  border-color: rgba(255, 255, 255, 0.2);
  transform: none;
}

.lead-dock__fab.fx-magnetic,
.lead-dock__fab.fx-magnetic:hover,
.lead-dock__fab.fx-magnetic:focus-visible {
  transform: none;
}

.lead-dock__fab-mark {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
}

.lead-dock__fab-mark svg {
  width: 0.72rem;
  height: 0.72rem;
  display: block;
}

.lead-dock__fab-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  text-align: left;
}

.lead-dock__fab-title {
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.15;
}

.lead-dock__fab-sub {
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.62);
}

.lead-dock__panel {
  width: min(22rem, calc(100vw - 2rem));
  padding: 1rem;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 24px 60px rgba(10, 8, 8, 0.22);
  animation: sk-lead-pop 0.35s ease both;
  overflow: visible;
}

.lead-dock__head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.lead-dock__head strong {
  display: block;
  font-size: 1rem;
  color: var(--sk-forest);
}

.lead-dock__head p {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  color: var(--sk-muted);
}

.lead-dock__close {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: #eef0f3;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--sk-forest);
  flex: 0 0 auto;
}

.lead-dock__close:hover {
  background: #e2e5ea;
}

.lead-dock__form {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.lead-dock__form label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #5a5f66;
}

.lead-dock__form input,
.lead-dock__form textarea {
  padding: 0.55rem 0.7rem;
  border-radius: 0.65rem;
  border: 1px solid #dde1e6;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--sk-ink);
  background: #fff;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.lead-dock__form input:focus,
.lead-dock__form textarea:focus {
  outline: 2px solid rgba(var(--sk-slate-rgb), 0.35);
  border-color: var(--sk-slate);
  background: #fff;
}

.sk-select {
  position: relative;
  width: 100%;
}

.sk-select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0.7rem;
  border-radius: 0.65rem;
  border: 1px solid #dde1e6;
  background: #fff;
  color: var(--sk-ink);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sk-select__trigger:hover,
.sk-select.is-open .sk-select__trigger {
  border-color: var(--sk-slate);
  box-shadow: 0 0 0 2px rgba(var(--sk-slate-rgb), 0.18);
}

.sk-select__value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sk-select__chev {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid #7a8288;
  border-bottom: 2px solid #7a8288;
  transform: rotate(45deg);
  margin-top: -0.2rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.sk-select.is-open .sk-select__chev {
  transform: rotate(-135deg);
  margin-top: 0.15rem;
}

.sk-select__menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.3rem);
  z-index: 20;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  border-radius: 0.75rem;
  border: 1px solid #dde1e6;
  background: #fff;
  box-shadow: 0 14px 32px rgba(16, 20, 28, 0.12);
  max-height: 14rem;
  overflow: auto;
}

.lead-dock .sk-select__menu {
  top: auto;
  bottom: calc(100% + 0.3rem);
  box-shadow: 0 -10px 28px rgba(32, 32, 32, 0.12);
}

.sk-select__menu [role="option"] {
  padding: 0.55rem 0.7rem;
  border-radius: 0.5rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--sk-ink);
  cursor: pointer;
}

.sk-select__menu [role="option"]:hover {
  background: rgba(var(--sk-slate-rgb), 0.08);
}

.sk-select__menu [role="option"].is-selected {
  background: rgba(var(--sk-slate-rgb), 0.14);
  color: var(--sk-forest);
}

.lead-dock__submit {
  margin-top: 0.25rem;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--sk-forest);
  color: var(--sk-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 28px rgba(10, 8, 8, 0.28);
  transform: none;
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.lead-dock__submit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.22) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.lead-dock__submit:hover::after {
  transform: translateX(120%);
}

.lead-dock__submit:hover,
.lead-dock__submit.fx-magnetic,
.lead-dock__submit.fx-magnetic:hover,
.btn.lead-dock__submit:hover {
  transform: none;
  box-shadow: 0 16px 36px rgba(10, 8, 8, 0.42);
  background: #241c18;
}

.lead-dock__status {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  font-weight: 600;
}

.lead-dock__status--ok {
  color: #2d7a62;
}

.lead-dock__status--err {
  color: #a83014;
}

.lead-dock__alt {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  color: var(--sk-muted);
}

.lead-dock__alt a {
  color: var(--sk-forest);
  font-weight: 700;
}

/* ─── Adaptive score player (mixer) ─────────────────────────────────────── */

.score-player {
  position: fixed;
  left: max(var(--sk-sticky-edge), env(safe-area-inset-left, 0px));
  bottom: var(--sk-sticky-bottom);
  z-index: 350;
  pointer-events: none;
}

.score-player__shell {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: var(--sk-sticky-pill-min-h);
  box-sizing: border-box;
  padding: var(--sk-sticky-pill-py) var(--sk-sticky-pill-px);
  border-radius: 999px;
  font-size: var(--sk-sticky-pill-font);
  font-weight: 700;
  line-height: 1.15;
  background: var(--sk-forest);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 36px rgba(10, 8, 8, 0.32);
  max-width: min(18rem, calc(100vw - 2rem));
  white-space: nowrap;
  transition: box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.score-player__shell:hover {
  box-shadow: 0 18px 42px rgba(10, 8, 8, 0.42);
  background: #241c18;
  border-color: rgba(255, 255, 255, 0.2);
  transform: none;
}

.score-player--soon .score-player__shell {
  opacity: 0.92;
  cursor: default;
}

.score-player--soon .score-player__shell:hover {
  background: var(--sk-forest);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 36px rgba(10, 8, 8, 0.32);
}

.score-player__play {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s;
}

.score-player__play:hover {
  background: rgba(255, 255, 255, 0.2);
}

.score-player__play--disabled {
  cursor: default;
  opacity: 0.45;
}

.score-player__play--disabled:hover {
  background: rgba(255, 255, 255, 0.12);
}

.score-player__play-icon {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid rgba(255, 255, 255, 0.92);
  margin-left: 2px;
}

.score-player.is-playing .score-player__play-icon {
  width: 8px;
  height: 10px;
  margin-left: 0;
  border: none;
  background: none;
  box-shadow:
    -3px 0 0 rgba(255, 255, 255, 0.92),
    3px 0 0 rgba(255, 255, 255, 0.92);
}

.score-player__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  text-align: left;
}

.score-player__title {
  display: block;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.15;
  color: var(--sk-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.score-player__mode {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.score-player__tempo,
.score-player__bars,
.score-player__vol {
  display: none;
}

@media (max-width: 640px) {
  .score-player__shell {
    max-width: calc(100vw - 1.7rem);
  }
}

/* ─── About ─────────────────────────────────────────────────────────────── */

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  color: var(--sk-forest);
}

.about-card p {
  margin: 0 0 0.85rem;
  color: #4a524e;
  line-height: 1.6;
}

.about-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #4a524e;
}

.about-list li {
  margin-bottom: 0.55rem;
}

.data-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .data-band {
    grid-template-columns: repeat(4, 1fr);
  }
}

.data-band__item {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.25rem 0.75rem;
  border-radius: var(--sk-radius);
  background: var(--sk-white);
  border: 1px solid rgba(var(--sk-gold-rgb), 0.15);
  box-shadow: var(--sk-card-shadow);
  animation: fade-up 0.6s ease both;
  animation-delay: var(--delay, 0s);
}

.data-band__value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--band-color, var(--sk-gold));
}

.data-band__label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sk-muted);
}

.quotes-kicker {
  margin: 2rem 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--sk-charcoal);
}

.quotes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .quotes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quote-card {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 1.25rem 1.15rem;
  border-radius: var(--sk-radius);
  background: var(--sk-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--sk-card-shadow);
}

.quote-card__text {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #3d4541;
  font-style: italic;
}

.quote-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.82rem;
  color: var(--sk-muted);
}

.quote-card__meta strong {
  color: var(--sk-forest);
  font-style: normal;
}

/* ─── Media embeds (YouTube) ─────────────────────────────────────────────── */

.media-embed {
  position: relative;
  width: 100%;
  margin-bottom: 0.85rem;
  border-radius: 0.65rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  aspect-ratio: 16 / 9;
}

.media-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.media-embed--image {
  display: grid;
  place-items: center;
}

.media-embed--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-embed__badge {
  position: absolute;
  left: 0.65rem;
  bottom: 0.55rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(10, 8, 8, 0.72);
  backdrop-filter: blur(6px);
}

.reel-placeholder {
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(102, 133, 164, 0.1) 0%, transparent 60%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(102, 133, 164, 0.22);
  border-radius: var(--sk-radius-lg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.reel-placeholder__icon {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.reel-placeholder__icon span {
  width: 0.45rem;
  height: 1.4rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--sk-slate), var(--sk-charcoal));
  opacity: 0.55;
  animation: reel-bar 1.4s ease-in-out infinite;
}

.reel-placeholder__icon span:nth-child(2) {
  height: 2rem;
  opacity: 0.85;
  animation-delay: 0.15s;
}

.reel-placeholder__icon span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes reel-bar {
  0%, 100% { transform: scaleY(0.72); opacity: 0.45; }
  50% { transform: scaleY(1); opacity: 0.9; }
}

.reel-placeholder__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--sk-forest);
}

.reel-placeholder__text {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  color: var(--sk-muted);
  line-height: 1.5;
}

.reel-placeholder__note {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sk-charcoal);
}

.glass-card__media {
  position: relative;
  z-index: 1;
}

.glass-card__media .media-embed {
  margin-bottom: 0.75rem;
}

.modal__media {
  margin: 0.85rem 0 1rem;
}

.modal__media .media-embed {
  margin-bottom: 0;
}

/* ─── Sonic mixer ───────────────────────────────────────────────────────── */

.mixer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .mixer {
    grid-template-columns: 1fr 1.1fr;
  }
}

.mixer__orb-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.glass-shell--round .mixer__orb-clip {
  border-radius: 50% !important;
  min-height: 0;
  aspect-ratio: 1;
  justify-content: center;
  align-items: center;
  padding: 0.65rem;
  overflow: hidden;
  background: radial-gradient(circle at 35% 28%, rgba(102, 133, 164, 0.12), rgba(4, 8, 14, 0.55) 72%) !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 0 32px rgba(102, 133, 164, 0.1),
    inset 0 -12px 28px rgba(0, 0, 0, 0.35);
}

.mixer__orb-clip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.25rem;
  min-height: 0;
}

.mixer__orb {
  width: 100%;
  height: 100%;
  min-height: 0;
  flex: 1;
  display: grid;
  place-items: center;
}

.mixer__readout {
  margin: 0;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  max-width: 22rem;
  padding: 0 0.35rem;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.glass-shell--fire-glow::before {
  inset: -8px;
  z-index: -1;
  border-radius: max(0.6rem, calc(var(--sk-radius-lg) - 14px));
  background: conic-gradient(
    from var(--sk-glow-angle),
    var(--fire-a, #3a0c08) 0deg,
    var(--fire-b, #6e140c) 58deg,
    var(--fire-contrast, #6685a4) 118deg,
    #1e0808 178deg,
    #8a220c 238deg,
    #5a626c 298deg,
    var(--fire-a, #3a0c08) 360deg
  );
  opacity: 0;
  filter: blur(14px) saturate(1.2);
  transition: opacity 0.35s ease, filter 0.35s ease;
}

.glass-shell--fire-glow:hover::before {
  opacity: 0.86;
  filter: blur(24px) saturate(1.38);
}

.glass-shell--fire-glow:hover {
  transform: translateY(-5px);
}

.section--light .glass-shell--fire-glow::after {
  background: var(--glass-face, #ffffff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.glass-shell--fire-glow .glass-shell__clip {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.glass-shell--round,
.glass-shell--round::before,
.glass-shell--round::after {
  border-radius: 50% !important;
}

.mixer__orb-shell {
  width: min(24rem, 94vw);
  aspect-ratio: 1;
  filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.42));
}

.mixer__controls {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.mixer__control {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
}

.mixer__label {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.mixer__range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  transition: box-shadow 0.35s ease;
}

.mixer__range:focus-visible {
  outline: 2px solid rgba(102, 133, 164, 0.45);
  outline-offset: 3px;
}

.mixer__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fefefe, #d0d0d0);
  border: 2px solid var(--sk-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.mixer__range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fefefe, #d0d0d0);
  border: 2px solid var(--sk-white);
  cursor: pointer;
}

/* ─── Specializations (landscape image cards) ─────────────────────────────── */

.spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.spec-card__clip {
  padding: 0 !important;
  margin: 8px;
  overflow: hidden;
  border-radius: calc(var(--glass-radius, 1.25rem) - 4px);
}

.spec-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.spec-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.spec-card:hover .spec-card__media img {
  transform: scale(1.04);
}

.spec-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 14, 12, 0.08) 0%,
    rgba(8, 14, 12, 0.35) 42%,
    rgba(8, 14, 12, 0.82) 100%
  );
  pointer-events: none;
}

.spec-card__content {
  position: absolute;
  inset: auto 0 0;
  padding: 1.15rem 1.25rem 1.25rem;
  z-index: 1;
}

.spec-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.12rem;
  color: #fefefe;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.spec-card p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

/* ─── Works grid ──────────────────────────────────────────────────────────── */

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  position: relative;
  z-index: 1;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(102, 133, 164, 0.35);
  background: transparent;
  color: var(--sk-white);
  font-size: 0.88rem;
  font-weight: 600;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.filter-btn:hover,
.filter-btn:focus-visible,
.filter-btn.is-active {
  background: rgba(102, 133, 164, 0.92);
  border-color: rgba(102, 133, 164, 0.95);
  color: var(--sk-white);
  box-shadow: 0 0 0 1px rgba(102, 133, 164, 0.2), 0 6px 16px rgba(0, 0, 0, 0.18);
  transform: none;
}

.filter-btn.is-mixer-highlight {
  border-color: var(--sk-slate);
  color: var(--sk-white);
  box-shadow: 0 0 0 3px rgba(102, 133, 164, 0.35);
  animation: filter-pulse 1.8s ease;
}

@keyframes filter-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(102, 133, 164, 0.35); }
  50% { box-shadow: 0 0 0 6px rgba(102, 133, 164, 0.16); }
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 18rem), 1fr));
  gap: 1.35rem;
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.works-grid .glass-card.glass-shell {
  isolation: isolate;
}

.works-grid .glass-card .glass-shell__clip {
  background: #121916;
}

.works-grid .glass-card .glass-shell--ambient::after {
  background: #121916;
  opacity: 1;
}

.section--dark .glass-shell--ambient::before {
  z-index: -2;
  opacity: 0;
  filter: blur(8px) saturate(1.05);
  transition: opacity 0.35s ease, filter 0.35s ease;
}

.section--dark .glass-shell--ambient:hover::before,
.section--forest .glass-shell--ambient:hover::before {
  opacity: 0.42;
  filter: blur(11px) saturate(1.15);
}

.glass-card {
  cursor: pointer;
  --card-accent: var(--sk-cyan);
}

.glass-card.glass-shell:hover {
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--card-accent) 38%, transparent),
    0 14px 36px rgba(0, 0, 0, 0.28);
}

.glass-card.glass-shell::before {
  opacity: 0;
}

.glass-card.glass-shell:hover::before {
  opacity: 0.58;
  filter: blur(11px) saturate(1.2);
}

.glass-card.is-hidden {
  display: none;
}

.glass-card__inner {
  display: flex;
  flex-direction: column;
  min-height: 16rem;
}

.glass-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.glass-card__year {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--card-accent);
}

.glass-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
}

.badge {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge--legacy {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
}

.badge--released {
  background: rgba(102, 133, 164, 0.22);
  color: #a8bdd4;
}

.badge--in-progress {
  background: rgba(201, 162, 39, 0.2);
  color: #e8c96a;
}

.badge--cat {
  background: rgba(90, 98, 108, 0.22);
  color: #b8c0c8;
}

.glass-card__viz {
  height: 48px;
  margin-bottom: 0.85rem;
  border-radius: 0.5rem;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  overflow: hidden;
  position: relative;
}

.glass-card__viz-bars {
  position: absolute;
  inset: 8px 12px;
  background: repeating-linear-gradient(
    90deg,
    var(--card-accent) 0 3px,
    transparent 3px 8px
  );
  opacity: 0.45;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}

.glass-card__name {
  margin: 0 0 0.2rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.glass-card__tagline {
  margin: 0 0 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sk-cyan);
}

.glass-card__desc {
  margin: 0 0 0.85rem;
  flex: 1;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.glass-card__stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.chip {
  padding: 0.18rem 0.5rem;
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.glass-card__link {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

/* ─── Collaborate ─────────────────────────────────────────────────────────── */

.collab-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.75rem;
  position: relative;
  z-index: 4;
  isolation: isolate;
}

.collab-grid .glass-shell__clip,
.collab-grid .collab-card {
  background: #ffffff;
}

.collab-grid .glass-shell--fire-glow::after {
  background: #ffffff;
  opacity: 1;
}

@media (min-width: 768px) {
  .collab-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.collab-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  color: var(--sk-forest);
}

.collab-card p {
  margin: 0 0 0.55rem;
  font-size: 0.92rem;
  color: #4a524e;
  line-height: 1.55;
}

.collab-link {
  font-weight: 700;
  color: var(--sk-ink);
  border-bottom: 2px solid rgba(0, 0, 0, 0.35);
}

.collab-link:hover {
  color: var(--sk-cyan);
}

.collab-note {
  font-size: 0.82rem !important;
  color: var(--sk-muted) !important;
}

.licensing-block {
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
  isolation: isolate;
  padding-top: 0.25rem;
}

.licensing-block__title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--sk-forest);
  text-align: center;
}

.licensing-block__lead {
  margin: 0 auto 1.25rem;
  max-width: 36rem;
  font-size: 0.9rem;
  color: var(--sk-muted);
  text-align: center;
  line-height: 1.5;
}

.licensing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  width: 100%;
}

@media (min-width: 768px) {
  .licensing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.licensing-card {
  position: relative;
  z-index: 1;
  padding: 1.15rem 1.1rem;
  border-radius: var(--sk-radius);
  background: var(--sk-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--sk-card-shadow);
}

.licensing-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--sk-forest);
}

.licensing-card p {
  margin: 0;
  font-size: 0.88rem;
  color: #4a524e;
  line-height: 1.5;
}

.featured-works {
  margin-bottom: 2rem;
}

.featured-works__title {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--sk-forest);
  text-align: center;
}

.featured-works__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  width: 100%;
}

@media (min-width: 768px) {
  .featured-works__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.featured-work {
  display: block;
  border-radius: var(--sk-radius);
  overflow: hidden;
  background: var(--sk-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--sk-card-shadow);
  text-decoration: none;
  color: inherit;
  transform-style: preserve-3d;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
}

.featured-work:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 22px 48px rgba(32, 32, 32, 0.14);
  border-color: rgba(102, 133, 164, 0.28);
}

.featured-work.fx-tilt:hover {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-6px) scale(1.015);
}

.featured-work__img {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.featured-work:hover .featured-work__img {
  transform: scale(1.04);
}

.featured-work__meta {
  padding: 0.65rem 0.75rem 0.75rem;
}

.featured-work__meta strong {
  display: block;
  font-size: 0.88rem;
  color: var(--sk-forest);
}

.featured-work__meta span {
  font-size: 0.75rem;
  color: var(--sk-muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: none;
}

.btn.fx-magnetic,
.btn.fx-magnetic:hover,
.btn.fx-magnetic:focus-visible {
  transform: none;
}

.btn--gold {
  background: linear-gradient(135deg, #fefefe, #e8e8e8);
  color: var(--sk-ink);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.btn--gold::after {
  display: none;
}

.btn--gold:hover,
.btn--gold:focus-visible {
  background: #fff;
  border-color: rgba(102, 133, 164, 0.45);
  box-shadow: 0 0 0 1px rgba(102, 133, 164, 0.2);
  color: var(--sk-forest);
}

.btn--outline-dark {
  border: 2px solid var(--sk-forest);
  color: var(--sk-forest);
  background: transparent;
}

.btn--outline-dark:hover,
.btn--outline-dark:focus-visible {
  background: var(--sk-forest);
  color: var(--sk-white);
  transform: none;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* ─── Footer ──────────────────────────────────────────────────────────────── */

.footer {
  position: relative;
  z-index: 45;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.15rem 1.25rem 0.35rem;
  background: var(--sk-forest-deep);
  color: rgba(255, 255, 255, 0.78);
}

.footer__bar {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  position: relative;
  padding-right: 6.5rem;
}

.footer__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.2rem;
  flex: 0 1 auto;
  min-width: 0;
  text-align: center;
}

.footer__logo {
  display: none;
}

.footer__signature {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 2.1rem;
  width: auto;
  min-width: 5.5rem;
  display: block;
  opacity: 0.9;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.18));
  transform: rotate(-3deg);
  transform-origin: center bottom;
  object-fit: contain;
  object-position: right bottom;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 0.74rem;
}

.footer__links a:hover {
  color: var(--sk-slate);
}

.footer__copy {
  margin: 0;
  font-size: 0.68rem;
  opacity: 0.55;
  line-height: 1.3;
}

@media (max-width: 720px) {
  .footer {
    padding-bottom: 3.75rem; /* clear lead dock */
  }

  .footer__bar {
    flex-wrap: wrap;
    row-gap: 0.4rem;
    justify-content: center;
    padding-right: 0;
  }

  .footer__signature {
    position: static;
    order: 2;
    margin-left: auto;
    height: 1.7rem;
  }

  .footer__center {
    order: 3;
    flex: 1 1 100%;
  }
}

/* ─── Modal ───────────────────────────────────────────────────────────────── */

.modal[hidden] {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 10, 0.72);
  backdrop-filter: blur(6px);
}

.modal__panel {
  position: relative;
  width: min(36rem, 100%);
  max-height: 90vh;
  z-index: 1;
}

.modal__clip {
  position: relative;
  max-height: calc(90vh - 16px);
  overflow-y: auto;
  background: #ffffff !important;
  color: var(--sk-ink);
}

.modal__accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--modal-accent, var(--sk-cyan)),
    color-mix(in srgb, var(--modal-accent, var(--sk-cyan)) 55%, #fefefe)
  );
  border-radius: var(--sk-radius-lg) var(--sk-radius-lg) 0 0;
}

.modal__header {
  padding-top: 0.35rem;
  margin-bottom: 0.85rem;
}

.modal__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--sk-radius);
  background: rgba(102, 133, 164, 0.08);
  border: 1px solid rgba(102, 133, 164, 0.14);
}

.modal__fact--wide {
  grid-column: 1 / -1;
}

.modal__fact-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sk-muted);
  margin-bottom: 0.15rem;
}

.modal__fact-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--sk-forest);
}

.modal__body-wrap {
  margin-bottom: 1rem;
}

.modal__body-label {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sk-muted);
}

.modal__thumb .media-embed__badge {
  font-size: 0.68rem;
}

.modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--sk-ink);
}

.modal__close:hover {
  background: rgba(0, 0, 0, 0.12);
}

.modal__meta {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--modal-accent, var(--sk-cyan));
}

.modal__title {
  margin: 0 0 0.25rem;
  font-size: 1.5rem;
}

.modal__tagline {
  margin: 0;
  font-weight: 600;
  color: var(--sk-muted);
}

.modal__role {
  display: none;
}

.modal__body {
  margin: 0 0 1rem;
  line-height: 1.6;
  color: #4a524e;
}

.modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.modal__tags .chip {
  background: #eef0ef;
  color: #5a605c;
}

.modal__footer {
  padding-top: 0.5rem;
}

/* ─── Reveal ──────────────────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease var(--reveal-delay, 0s),
    transform 0.65s ease var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Sticky nav ──────────────────────────────────────────────────────────── */

.sk-sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  background: rgba(254, 254, 254, 0.82);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}

.sk-sticky-nav.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sk-sticky-nav__link {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #4a4f54;
  border: 1px solid rgba(102, 133, 164, 0.16);
  background: rgba(255, 255, 255, 0.72);
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.sk-sticky-nav__link:hover,
.sk-sticky-nav__link:focus-visible {
  color: var(--sk-forest);
  background: #fff;
  border-color: rgba(102, 133, 164, 0.5);
  box-shadow: 0 0 0 1px rgba(102, 133, 164, 0.22);
}

.sk-sticky-nav__link.is-active {
  color: var(--sk-ink);
  background: rgba(102, 133, 164, 0.14);
  border-color: rgba(102, 133, 164, 0.28);
}

/* ─── Hero motion ─────────────────────────────────────────────────────────── */

.motion-hero {
  opacity: 0;
  transform: scale(0.96) translateY(12px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-hero.is-entered {
  opacity: 1;
  transform: scale(1) translateY(0);
}

html.sk-reduced-motion .motion-hero {
  opacity: 1;
  transform: none;
  transition: none;
}

html.sk-reduced-motion .reel-placeholder__icon span {
  animation: none;
}

html.sk-reduced-motion .filter-btn.is-mixer-highlight {
  animation: none;
}

/* ─── NCW-parity interaction layer ────────────────────────────────────────── */

.fx-magnetic {
  transform: translate3d(var(--mx, 0), var(--my, 0), 0);
  transition: transform 0.2s ease-out, background 0.2s, box-shadow 0.25s, border-color 0.2s;
}

.fx-tilt {
  transform-style: preserve-3d;
}

.fx-glow-surface {
  position: relative;
  overflow: hidden;
}

.fx-glow-surface::before {
  content: "";
  position: absolute;
  width: 36rem;
  height: 36rem;
  left: var(--gx, 50%);
  top: var(--gy, 40%);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(102, 133, 164, 0.14), transparent 60%);
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.4s;
  z-index: 0;
}

.section--forest.fx-glow-surface::before {
  background: radial-gradient(circle, rgba(168, 48, 20, 0.14), transparent 60%);
}

.section--dark.fx-glow-surface::before {
  background: radial-gradient(circle, rgba(102, 133, 164, 0.12), transparent 60%);
}

.fx-glow-surface > .container {
  position: relative;
  z-index: 1;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 400;
  background: linear-gradient(90deg, #6685a4, #5a626c, #a83014);
  box-shadow: 0 0 12px rgba(102, 133, 164, 0.45);
  pointer-events: none;
  transition: width 0.05s linear;
}

.fx-ripple-host {
  position: relative;
  overflow: hidden;
}

.fx-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: fx-ripple 0.65s ease-out forwards;
  pointer-events: none;
  z-index: 2;
}

.section--light .fx-ripple,
.btn--outline-dark .fx-ripple,
.nav-pill .fx-ripple,
.filter-btn .fx-ripple {
  background: rgba(102, 133, 164, 0.28);
}

@keyframes fx-ripple {
  to {
    transform: scale(2.4);
    opacity: 0;
  }
}

.reveal--scale {
  transform: translateY(22px) scale(0.98);
}

.reveal--scale.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.quote-card.fx-tilt,
.licensing-card.fx-tilt {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(0);
  transition: transform 0.2s ease-out, box-shadow 0.25s ease, border-color 0.2s;
}

.quote-card.fx-tilt:hover,
.licensing-card.fx-tilt:hover {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-5px);
  box-shadow: 0 20px 44px rgba(32, 32, 32, 0.1);
}

.glass-card.glass-shell:hover {
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--card-accent) 42%, transparent),
    0 28px 60px rgba(0, 0, 0, 0.32);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .glass-shell--ambient::before {
    animation: none;
  }

  .staff-notes ellipse {
    animation: none;
  }

  .fx-magnetic,
  .fx-tilt,
  .glass-shell.fx-tilt,
  .featured-work.fx-tilt,
  .hero__content {
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }

  .scroll-progress {
    display: none;
  }
}
