:root {
  --acid: #d6b98b;
  --ink: #0a0b0d;
  --pearl: #e7e8eb;
  --pearl-strong: #f5f2f5;
  --pearl-ink: #111316;
  --prism-violet: #775ee7;
  --prism-coral: #e46c88;
  --glass-light: rgba(247, 250, 252, 0.46);
  --glass-light-strong: rgba(255, 255, 255, 0.64);
  --glass-dark: rgba(8, 12, 15, 0.46);
  --glass-line: rgba(255, 255, 255, 0.42);
  --glass-shadow: 0 28px 80px rgba(20, 31, 39, 0.14);
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Microsoft YaHei", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --chrome: rgba(240, 235, 221, 0.72);
  --chrome-soft: rgba(240, 235, 221, 0.2);
  --chapter-accent: #d6b98b;
}
* {
  box-sizing: border-box;
}
:where(a, button):focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}
html {
  scroll-behavior: auto;
  scroll-snap-type: none;
  overscroll-behavior-y: none;
  scrollbar-gutter: stable;
  scrollbar-width: none;
}
html::-webkit-scrollbar {
  width: 0;
  height: 0;
}
html.drop-locked,
html.kk9-test-locked {
  overflow: hidden;
}
html.menu-open {
  overflow: hidden;
}
body {
  margin: 0;
  background: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.22;
  background:
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(255,255,255,.018) 120px),
    repeating-linear-gradient(0deg, transparent 0 119px, rgba(255,255,255,.012) 120px);
  mask-image: linear-gradient(to bottom, #0008, transparent 72%);
}
#experience {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0a0b0d;
}
#webgl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  outline: none;
}
.vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 58%, #5e9ab22c, transparent 36%),
    radial-gradient(circle at 88% 48%, #c59a5b1c, transparent 34%),
    radial-gradient(circle at 53% 42%, #682b5b18, transparent 38%),
    linear-gradient(108deg, #0d161dc7, #090a0d52 48%, #251a12a8);
}
body.is-pearl-stage .vignette {
  opacity: 0.56;
  background:
    radial-gradient(circle at 46% 42%, #ffffff0c 0 18%, transparent 56%),
    radial-gradient(circle at 92% 22%, #ff6f9b20, transparent 30%),
    radial-gradient(circle at 11% 78%, #57cfff24, transparent 31%),
    linear-gradient(112deg, #9feaff16, transparent 41%, #b77bff13 68%, #ff78981c);
}
body.is-pearl-stage .vignette::before {
  opacity: 0.58;
  mix-blend-mode: screen;
}
.vignette::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(
    102deg,
    transparent 43%,
    #91bfd50a 49%,
    #f3ebdd2e 50%,
    #d6b98b0d 51%,
    transparent 57%
  );
  mix-blend-mode: screen;
  animation: crystal-drift 18s ease-in-out infinite alternate;
}
body.is-300cc-black #experience {
  background: #000;
}
body.is-300cc-black .vignette {
  background: transparent;
}
body.is-300cc-black .vignette::before {
  opacity: 0;
  animation: none;
}
@keyframes crystal-drift {
  from {
    transform: translateX(-10%) rotate(-2deg);
    opacity: 0.45;
  }
  to {
    transform: translateX(10%) rotate(2deg);
    opacity: 0.85;
  }
}
.loader {
  position: absolute;
  z-index: 4;
  inset: 0;
  background:
    radial-gradient(circle at 25% 28%, #6e9fb32e, transparent 30%),
    radial-gradient(circle at 78% 72%, #b8895424, transparent 32%),
    #0a0b0d;
  color: #f3ebdd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition:
    opacity 0.7s,
    visibility 0.7s;
  will-change: transform, opacity, clip-path;
}
.loader::before {
  content: "";
  position: absolute;
  width: min(82vw, 360px);
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 32px;
  background:
    linear-gradient(135deg, #ffffff7a, #ffffff24),
    rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 1px 0 #ffffff,
    0 28px 90px #3552661c;
  backdrop-filter: blur(28px) saturate(1.45);
}
.loader > * {
  position: relative;
  z-index: 1;
}
.loader span {
  color: #15191b;
  font: 600 18px/1 var(--sans);
  letter-spacing: -0.04em;
}
.loader small {
  color: #1d292e73;
  font: 9px/1 var(--mono);
  letter-spacing: 0.14em;
}
.loader i {
  width: 84px;
  height: 1px;
  background: #1720252e;
  position: relative;
}
.loader i:after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--loaded, 0%);
  background: var(--acid);
  transition: width 0.25s;
}
.loader.done {
  opacity: 0;
  visibility: hidden;
}

/* A restrained technical HUD gives every chapter one visual grammar without
   competing with the product. All motion is transform/opacity driven by GSAP. */
.cinematic-ui {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  color: rgba(255, 255, 255, .86);
  font-family: var(--mono);
  transition: color .55s ease;
}
.cinematic-ui::before,
.cinematic-ui::after {
  display: none;
}
.cinematic-ui__topline {
  position: absolute;
  top: clamp(22px, 3vh, 38px);
  left: clamp(22px, 3vw, 54px);
  right: clamp(22px, 3vw, 54px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 8px;
  letter-spacing: .18em;
  opacity: .9;
}
.cinematic-ui__topline span {
  padding: 11px 15px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(8, 8, 18, .16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 12px 38px rgba(0,0,0,.12);
  backdrop-filter: blur(22px) saturate(1.6);
}
.cinematic-ui__chapter {
  position: absolute;
  left: auto;
  right: clamp(22px, 3vw, 54px);
  bottom: clamp(38px, 5vh, 68px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
  overflow: visible;
  text-transform: uppercase;
  text-align: right;
}
.cinematic-ui__chapter span {
  color: transparent;
  font: 700 clamp(112px, 16vw, 284px)/.64 var(--sans);
  letter-spacing: -.085em;
  -webkit-text-stroke: 1px rgba(255,255,255,.2);
  opacity: .68;
  filter: drop-shadow(0 18px 50px color-mix(in srgb, var(--chapter-accent) 35%, transparent));
}
.cinematic-ui__chapter strong {
  padding-right: 4px;
  color: rgba(255,255,255,.78);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .24em;
}
.cinematic-ui__rail {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: clamp(20px, 2.5vh, 32px);
  width: min(34vw, 520px);
  height: 4px;
  border-radius: 99px;
  background: rgba(255,255,255,.14);
  box-shadow: inset 0 1px 2px rgba(0,0,0,.14), 0 6px 24px rgba(0,0,0,.12);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
  overflow: hidden;
}
.cinematic-ui__rail i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--chapter-accent), #80efff, #fff);
  box-shadow: 0 0 24px color-mix(in srgb, var(--chapter-accent) 78%, transparent);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}
.cinematic-ui__scroll {
  position: absolute;
  right: clamp(22px, 3vw, 54px);
  bottom: clamp(20px, 2.5vh, 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 18px 46px rgba(0,0,0,.13);
  backdrop-filter: blur(24px) saturate(1.5);
  font-size: 8px;
  letter-spacing: .18em;
  opacity: .62;
}
.cinematic-ui__scroll i {
  display: none;
}
.cinematic-ui__scroll i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  transform: translateX(-110%);
  animation: cinematic-pulse 2.2s cubic-bezier(.65,0,.35,1) infinite;
}
.cinematic-ui__flare {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(42vmax, 760px);
  height: min(42vmax, 760px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 42% 58% 63% 37% / 54% 38% 62% 46%;
  opacity: .32;
  background:
    radial-gradient(circle at 24% 22%, rgba(255,255,255,.32), transparent 26%),
    linear-gradient(135deg, color-mix(in srgb, var(--chapter-accent) 38%, transparent), rgba(65,225,255,.08) 48%, rgba(255,48,170,.18));
  box-shadow:
    inset 20px 12px 80px rgba(255,255,255,.08),
    inset -28px -18px 90px rgba(9,3,30,.18),
    0 40px 100px rgba(0,0,0,.12);
  backdrop-filter: blur(30px) saturate(1.7) hue-rotate(8deg);
  filter: none;
  mix-blend-mode: screen;
  transform: translate3d(-50%, -50%, 0) rotate(-9deg);
  will-change: transform, opacity;
}
body.is-pearl-stage .cinematic-ui { color: rgba(255,255,255,.88); }
html.menu-open .cinematic-ui { opacity: .12; }
@keyframes cinematic-pulse {
  0% { transform: translateX(-110%); }
  50%, 100% { transform: translateX(110%); }
}
.loader.failed i:after {
  background: #ff8b69;
}
.loader.failed small {
  color: #ffb7a5;
}
main {
  position: relative;
  z-index: 1;
}
.step {
  height: 100svh;
  position: relative;
}
.intro {
  pointer-events: none;
}
.reveal,
.drop-test,
.impact-intro,
.product-two,
.kk9-test,
.kk9,
.ultra {
  overflow: visible;
  display: block;
}
.kk9-test-ui {
  position: fixed;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  will-change: opacity;
}
.kk9-test-label {
  position: absolute;
  left: 7vw;
  top: 12vh;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: min(360px, 44vw);
  padding: 22px 26px 24px;
  color: #101719;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.18)),
    rgba(231, 238, 242, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 22px 60px rgba(28, 49, 63, 0.14);
  backdrop-filter: blur(24px) saturate(1.55);
}
.kk9-test-label span {
  color: #10171978;
  font: 9px/1 var(--mono);
  letter-spacing: 0.18em;
}
.kk9-test-label strong {
  font: 600 clamp(28px, 3.5vw, 56px) / 1 var(--sans);
  letter-spacing: -0.045em;
}
.kk9-cutter {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: clamp(500px, 52vw, 900px);
  height: auto;
  opacity: 0;
  transform-origin: 20% 75%;
  filter: drop-shadow(0 20px 22px #0911193f);
  will-change: opacity, transform, filter;
  user-select: none;
}
.kk9-sparks {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 1px;
  height: 1px;
  opacity: 0;
  mix-blend-mode: screen;
  will-change: opacity, transform;
}
.kk9-sparks i {
  --spark-angle: 180deg;
  --spark-distance: 150px;
  --spark-delay: 0s;
  --spark-duration: 0.58s;
  --spark-width: 50px;
  --spark-thickness: 3px;
  position: absolute;
  left: 0;
  top: 0;
  width: var(--spark-width);
  height: var(--spark-thickness);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #fff 0 10%,
    #fffbd2 24%,
    #ffc33d 56%,
    #ff6a00 82%,
    transparent
  );
  box-shadow:
    0 0 8px #fff,
    0 0 18px #ffc13d,
    0 0 34px #ff6a00a8;
  transform-origin: 0 50%;
  animation: kk9-spark-fly var(--spark-duration) cubic-bezier(0.16, 0.62, 0.38, 1) infinite;
  animation-delay: var(--spark-delay);
}
.kk9-sparks i:nth-child(4n) {
  filter: brightness(1.35);
}
.kk9-sparks i:nth-child(5n) {
  border-radius: 50%;
  background: #fff6ad;
  box-shadow:
    0 0 7px #fff,
    0 0 17px #ff9a16,
    0 0 28px #ff5a00a8;
}
@keyframes kk9-spark-fly {
  0% {
    opacity: 0;
    transform: rotate(var(--spark-angle)) translateX(0) scaleX(0.12) scaleY(0.7);
  }
  10% { opacity: 1; }
  62% { opacity: 0.92; }
  100% {
    opacity: 0;
    transform:
      rotate(var(--spark-angle))
      translateX(var(--spark-distance))
      translateY(16px)
      scaleX(1.12)
      scaleY(0.45);
  }
}
.drop-test-ui {
  position: fixed;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  color: #f3ebdd;
  will-change: opacity;
}
.drop-test-caption {
  position: absolute;
  top: 8vh;
  right: 8vw;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  padding: 18px 22px 20px;
  border: 1px solid rgba(214, 185, 139, 0.24);
  border-radius: 18px;
  background: rgba(13, 16, 19, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 22px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(24px) saturate(1.25);
}
.drop-test-caption span,
.drop-status {
  font: 10px/1 var(--mono);
  letter-spacing: 0.16em;
  color: rgba(243, 235, 221, 0.62);
}
.drop-test-caption strong {
  font: 600 clamp(44px, 6vw, 92px) / 0.9 var(--sans);
  letter-spacing: -0.07em;
}
.drop-ruler {
  position: absolute;
  inset: 0 auto 0 8vw;
  width: 132px;
  overflow: hidden;
  border-right: 1px solid rgba(243, 235, 221, 0.17);
  background: linear-gradient(90deg, transparent 35%, rgba(13, 16, 19, 0.24));
  backdrop-filter: blur(7px);
}
.ruler-tape {
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  will-change: transform;
}
.ruler-tick {
  position: absolute;
  right: 0;
  width: 34px;
  height: 1px;
  background: rgba(243, 235, 221, 0.3);
}
.ruler-tick.mid {
  width: 52px;
  background: rgba(243, 235, 221, 0.52);
}
.ruler-tick.major {
  width: 82px;
  background: linear-gradient(90deg, #d6b98b, #f3ebdd);
}
.ruler-tick span {
  position: absolute;
  right: 92px;
  top: -6px;
  color: #f3ebdd;
  font: 10px/1 var(--mono);
  letter-spacing: 0.08em;
}
.metal-ball {
  position: absolute;
  top: 0;
  left: 38vw;
  width: clamp(62px, 6vw, 92px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 31% 24%, #ffffff 0 4%, #e9edf0 7%, transparent 17%),
    radial-gradient(circle at 38% 32%, #e6ebee 0, #8c969d 26%, #30373c 57%, #080b0d 82%);
  box-shadow:
    inset -12px -15px 20px #000b,
    inset 10px 8px 14px #ffffff38,
    0 18px 38px #0008;
  will-change: transform;
}
.drop-height {
  position: absolute;
  top: 47%;
  right: 8vw;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 22px 26px 24px;
  border: 1px solid rgba(214, 185, 139, 0.24);
  border-radius: 20px;
  background: rgba(13, 16, 19, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 26px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(26px) saturate(1.25);
}
.drop-height strong {
  min-width: 3ch;
  text-align: right;
  font: 600 clamp(68px, 10vw, 154px) / 0.8 var(--sans);
  letter-spacing: -0.08em;
}
.drop-height span {
  font: 11px/1 var(--mono);
  letter-spacing: 0.12em;
  color: #d6b98b;
}
.drop-status {
  position: absolute;
  right: 8vw;
  bottom: 8vh;
  padding: 13px 18px;
  border: 1px solid rgba(214, 185, 139, 0.22);
  border-radius: 999px;
  background: rgba(13, 16, 19, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 38px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px) saturate(1.25);
}
.drop-result {
  position: absolute;
  left: 50%;
  top: 42%;
  color: #45e777;
  font: 650 clamp(34px, 4.6vw, 72px) / 1 var(--sans);
  letter-spacing: 0.12em;
  white-space: nowrap;
  padding: 16px 24px 18px;
  border: 1px solid rgba(103, 255, 151, 0.3);
  border-radius: 999px;
  background: rgba(7, 28, 16, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(202, 255, 218, 0.22),
    0 18px 55px rgba(42, 235, 101, 0.13);
  backdrop-filter: blur(20px) saturate(1.4);
  text-shadow:
    0 0 18px #45e7774d,
    0 0 42px #45e77724;
  opacity: 0;
  transform: translate3d(-50%, 24px, 0) scale(0.94);
  filter: blur(8px);
  will-change: opacity, transform, filter;
}
.drop-result.is-visible {
  animation: drop-result-pass 1.05s cubic-bezier(0.2, 0.72, 0.2, 1) both;
}
@keyframes drop-result-pass {
  0% {
    opacity: 0;
    transform: translate3d(-50%, 24px, 0) scale(0.94);
    filter: blur(8px);
  }
  18%, 72% {
    opacity: 1;
    transform: translate3d(-50%, 0, 0) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translate3d(-50%, -13px, 0) scale(1.015);
    filter: blur(2px);
  }
}
.reveal-copy,
.product-two-copy,
.kk9-copy,
.ultra-copy {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: transform, opacity;
  color: #141719;
  width: min(39vw, 580px);
  padding: 0;
  text-align: left;
  perspective: 900px;
  filter: drop-shadow(0 20px 42px rgba(16, 26, 32, 0.08));
}
.reveal-copy {
  left: 9.7vw;
  width: min(35vw, 540px);
  color: #f3ebdd;
  filter: drop-shadow(0 22px 48px rgba(0, 0, 0, 0.28));
}
.reveal-copy .copy-kicker {
  color: rgba(214, 185, 139, 0.76);
}
.reveal-copy .copy-code {
  color: #fff9ed;
  font-size: clamp(58px, 6.25vw, 108px);
  font-weight: 400;
  letter-spacing: -0.07em;
  text-shadow: 0 18px 56px rgba(214, 185, 139, 0.08);
}
.reveal-copy h1 {
  max-width: 7.5em;
  font-size: clamp(38px, 4vw, 68px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.reveal-copy .copy-rule {
  background: linear-gradient(
    90deg,
    #f3ebdd 0 35%,
    #d6b98b 35% 70%,
    #91bfd5 70% 84%,
    transparent 96%
  );
}
.kk9-copy {
  left: 7vw;
  width: min(38vw, 560px);
}
.ultra-copy {
  left: clamp(72px, 9.7vw, 186px);
  width: min(35vw, 590px);
  color: var(--pearl-ink);
  filter: drop-shadow(0 22px 48px rgba(65, 58, 76, 0.08));
}
.ultra-copy .copy-kicker {
  min-height: 0;
  margin-bottom: clamp(25px, 3vw, 44px);
  padding: 0;
  color: rgba(17, 19, 22, 0.7);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.ultra-copy .copy-code {
  color: #121417;
  text-shadow: 0 18px 46px rgba(44, 38, 53, 0.08);
}
.ultra-copy .copy-rule {
  background: linear-gradient(
    90deg,
    #121417 0 34%,
    #775ee7 34% 66%,
    #e46c88 66% 84%,
    transparent 96%
  );
}
.ultra-copy h1 {
  max-width: 9.5em;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.058em;
}
.ultra-copy .product-link {
  width: min(100%, 300px);
  min-height: 52px;
  padding: 0 4px;
  color: #4c3a75;
  border: 0;
  border-bottom: 1px solid rgba(77, 58, 118, 0.38);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.ultra-copy .product-link::before {
  display: none;
}
.ultra-copy .product-link:hover {
  color: #111316;
  border-color: #775ee7;
  box-shadow: none;
}
.product-two-copy {
  right: 7vw;
  text-align: right;
  width: min(42vw, 640px);
}
.product-two-copy .copy-code,
.product-two-copy .copy-line {
  transform-origin: right bottom;
}
.product-two-copy .copy-rule {
  margin-left: auto;
  transform-origin: right;
  background: linear-gradient(270deg, #141719, #238ba2 72%, transparent);
}
.product-two-copy .copy-code {
  color: #12323e;
}
.kk9-copy .copy-code {
  color: #123e7c;
}
.kk9-copy .copy-rule {
  background: linear-gradient(90deg, #15283d, #2878ff 62%, transparent 94%);
}
.kk9-copy .copy-kicker {
  border: 0;
  background: transparent;
  box-shadow: none;
}
.copy-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  margin-bottom: clamp(17px, 2vw, 30px);
  padding: 0;
  color: #1417198f;
  font: 10px var(--mono);
  letter-spacing: 0.16em;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  opacity: 0;
  transform: translateY(18px);
  transition: color .35s ease;
}
.copy-kicker::before {
  content: "";
  width: 18px;
  height: 1px;
  margin-right: 10px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
  transform-origin: left center;
}
.reveal-copy .copy-kicker {
  border: 0;
  background: transparent;
  box-shadow: none;
}
.copy-code,
.copy-line {
  display: block;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: translateY(85px) scale(0.88);
  transform-origin: left bottom;
  will-change: opacity, transform, clip-path;
}
.copy-code {
  font: 600 clamp(64px, 8.8vw, 138px) / 0.82 var(--sans);
  letter-spacing: -0.078em;
  margin-left: -0.04em;
  color: #101315;
  text-wrap: balance;
}
.reveal-copy .copy-code {
  color: transparent;
  background: linear-gradient(112deg, #fffdf6 8%, #cdbb98 46%, #fff 65%, #91bfd5 94%);
  background-clip: text;
  -webkit-background-clip: text;
}
.reveal-copy h1,
.product-two-copy h1,
.kk9-copy h1,
.ultra-copy h1 {
  margin: clamp(22px, 2.6vw, 38px) 0 0;
  font-size: clamp(42px, 5.8vw, 88px);
  font-weight: 650;
  line-height: 0.94;
  letter-spacing: -0.065em;
}
.copy-line .char,
.copy-code .char {
  display: inline-block;
  opacity: 0;
  filter: blur(9px);
  transform: translate3d(0, 42px, 0) rotateX(-48deg);
  transform-origin: 50% 100%;
  will-change: opacity, filter, transform;
}
.copy-rule {
  display: block;
  width: 0;
  height: 2px;
  margin-top: clamp(28px, 4vw, 55px);
  border-radius: 999px;
  background: linear-gradient(90deg, #141719, #b76f3f 58%, transparent 92%);
  transform-origin: left;
}
.product-link {
  --link-color: #ff6b21;
  position: absolute;
  top: calc(100% + clamp(16px, 2vw, 28px));
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  width: min(100%, 320px);
  min-height: 54px;
  padding: 0 4px;
  border: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--link-color) 46%, #111316 16%);
  border-radius: 0;
  color: color-mix(in srgb, var(--link-color) 72%, #111316 28%);
  background: transparent;
  text-decoration: none;
  font: 11px/1 var(--mono);
  letter-spacing: 0.16em;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  will-change: opacity, transform;
  box-shadow: none;
  backdrop-filter: none;
  transition:
    color 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}
.product-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -1px;
  height: 1px;
  background: var(--link-color);
  box-shadow: 0 0 14px var(--link-color);
  transition: right .55s cubic-bezier(.16,1,.3,1);
}
.product-link:hover::after { right: 0; }
.product-link::before {
  display: none;
}
.product-link span,
.product-link i {
  position: relative;
  z-index: 1;
}
.product-link i {
  margin-left: auto;
  font-size: 20px;
  font-style: normal;
  transition: transform 0.4s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.product-link:hover {
  color: #111316;
  border-color: var(--link-color);
  box-shadow: none;
}
.product-link:hover::before { transform: translateX(0); }
.product-link:hover i { transform: translateX(7px); }
.product-link--orange { --link-color: #d6b98b; }
.reveal-copy .product-link:hover {
  color: #f3ebdd;
}
.product-link--cyan { --link-color: #2d819c; }
.product-link--blue { --link-color: #536cc7; }
.product-link--purple { --link-color: #ca5cff; }
.global-nav {
  --nav-accent: #d6b98b;
  position: fixed;
  inset: 0 0 auto;
  padding: 14px clamp(14px, 1.7vw, 28px) 0;
  z-index: 6;
  color: #f3f5f2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-102%);
  transition:
    opacity 0.55s ease,
    visibility 0.55s,
    transform 0.7s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.global-nav.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transform: translateY(0);
}
.global-nav__rail {
  width: min(1540px, 100%);
  height: 66px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 56px);
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto auto;
  align-items: center;
  gap: 30px;
  background:
    linear-gradient(120deg, rgba(214, 185, 139, 0.11), rgba(145, 191, 213, 0.025)),
    rgba(7, 9, 11, 0.68);
  border: 1px solid rgba(214, 185, 139, 0.2);
  border-radius: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 48px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(28px) saturate(1.5);
  transition:
    color 0.55s ease,
    background 0.55s ease,
    border-color 0.55s ease,
    box-shadow 0.55s ease;
  pointer-events: auto;
}
.global-nav__brand {
  color: #f3ebddad;
  font: 9px/1 var(--mono);
  letter-spacing: 0.16em;
}
.global-nav__tabs {
  display: flex;
  align-items: stretch;
  align-self: stretch;
}
.global-nav__tabs button,
.global-nav__close {
  appearance: none;
  border: 0;
  color: #f3ebddad;
  background: transparent;
  cursor: pointer;
}
.global-nav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.global-nav__contact,
.global-nav__search {
  color: #f3ebddad;
  text-decoration: none;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.global-nav__contact {
  padding: 12px 10px;
  font: 500 12px/1 var(--sans);
  white-space: nowrap;
}
.global-nav__search {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #ffffff28;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
}
.global-nav__search svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
}
.global-nav__contact:hover,
.global-nav__search:hover {
  color: #fff;
}
.global-nav__search:hover {
  border-color: var(--nav-accent);
  background: #ffffff0b;
}
.global-nav__tabs button {
  position: relative;
  padding: 0 clamp(15px, 1.6vw, 28px);
  font: 500 12px/1 var(--sans);
  letter-spacing: 0.02em;
  white-space: nowrap;
  margin: 9px 2px;
  border-radius: 13px;
  transition:
    color 0.25s,
    background 0.3s,
    box-shadow 0.3s;
}
.global-nav__tabs button::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 10px;
  height: 3px;
  border-radius: 999px;
  background: var(--nav-accent);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.global-nav__tabs button:hover,
.global-nav__tabs button.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.global-nav__tabs button.is-active::after {
  transform: scaleX(1);
}
.global-nav__close {
  width: 38px;
  height: 38px;
  border: 1px solid #ffffff1f;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  font: 300 25px/1 var(--sans);
  opacity: 0;
  pointer-events: none;
  transform: rotate(-35deg);
  transition: opacity 0.3s, transform 0.4s;
}
.global-nav.is-open .global-nav__close {
  opacity: 1;
  pointer-events: auto;
  transform: rotate(0);
}
.global-nav__drawer {
  width: min(1540px, 100%);
  height: calc(100svh - 102px);
  margin: 8px auto 0;
  padding: clamp(36px, 6vh, 72px) clamp(28px, 5vw, 92px) 70px;
  overflow: auto;
  background:
    radial-gradient(circle at 83% 18%, color-mix(in srgb, var(--nav-accent) 22%, transparent), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025)),
    rgba(8, 13, 16, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 28px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(34px) saturate(1.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-24px);
  transition:
    opacity 0.42s ease,
    visibility 0.42s,
    transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1),
    color 0.55s ease,
    background 0.55s ease,
    border-color 0.55s ease;
}
.global-nav.is-pearl {
  --nav-accent: #775ee7;
  color: #111316;
}
.global-nav.is-pearl .global-nav__rail {
  background: rgba(246, 244, 248, 0.58);
  border-color: rgba(255, 255, 255, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 18px 58px rgba(61, 53, 72, 0.1);
  backdrop-filter: blur(30px) saturate(1.32);
}
.global-nav.is-pearl .global-nav__brand,
.global-nav.is-pearl .global-nav__tabs button,
.global-nav.is-pearl .global-nav__contact,
.global-nav.is-pearl .global-nav__search,
.global-nav.is-pearl .global-nav__close {
  color: rgba(17, 19, 22, 0.66);
}
.global-nav.is-pearl .global-nav__search,
.global-nav.is-pearl .global-nav__close {
  border-color: rgba(17, 19, 22, 0.11);
  background: rgba(255, 255, 255, 0.28);
}
.global-nav.is-pearl .global-nav__tabs button:hover,
.global-nav.is-pearl .global-nav__tabs button.is-active {
  color: #111316;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.global-nav.is-pearl .global-nav__drawer {
  color: #111316;
  background:
    radial-gradient(circle at 86% 16%, rgba(119, 94, 231, 0.12), transparent 31%),
    radial-gradient(circle at 10% 84%, rgba(86, 204, 238, 0.13), transparent 33%),
    rgba(241, 241, 244, 0.84);
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 28px 90px rgba(57, 48, 70, 0.14);
}
.global-nav.is-pearl .nav-category__intro > span,
.global-nav.is-pearl .nav-item {
  color: rgba(17, 19, 22, 0.54);
}
.global-nav.is-pearl .nav-group {
  color: #15171a;
  border-color: rgba(17, 19, 22, 0.09);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}
.global-nav.is-pearl .nav-group--featured:hover {
  background: rgba(255, 255, 255, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 20px 52px rgba(72, 56, 115, 0.1);
}
.global-nav.is-open .global-nav__drawer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-category {
  display: none;
  grid-template-columns: minmax(220px, 0.58fr) 1.42fr;
  gap: 7vw;
}
.nav-category.is-active {
  display: grid;
  animation: nav-category-in 0.5s ease both;
}
@keyframes nav-category-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-category__intro > span {
  color: #ffffff6b;
  font: 9px/1 var(--mono);
  letter-spacing: 0.16em;
}
.nav-category__intro h2 {
  margin: 28px 0 0;
  font-size: clamp(46px, 6vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}
.nav-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 286px;
  align-content: start;
  gap: 12px;
}
.nav-groups--wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.nav-group {
  position: relative;
  height: 100%;
  min-height: 0;
  padding: 24px 28px 28px;
  display: flex;
  flex-flow: row wrap;
  align-content: flex-start;
  gap: 11px;
  color: #f4f6f2;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px) saturate(1.3);
  transition:
    background 0.3s,
    color 0.3s,
    border-color 0.3s,
    transform 0.35s cubic-bezier(0.2, 0.75, 0.2, 1),
    box-shadow 0.35s;
}
.nav-group__title {
  flex: 0 0 100%;
  margin-bottom: 8px;
  font-size: clamp(18px, 1.6vw, 27px);
  line-height: 1.2;
  letter-spacing: -0.035em;
  color: inherit;
  text-decoration: none;
  transition: color 0.25s, transform 0.25s;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 20px;
  flex: 0 0 calc(50% - 6px);
  color: #ffffff78;
  font: 10px/1.35 var(--mono);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.25s, transform 0.25s;
}
.nav-item::after {
  content: "↗";
  margin-left: auto;
  opacity: 0;
  color: var(--nav-accent);
  transform: translate(-5px, 2px);
  transition: opacity 0.25s, transform 0.25s;
}
.nav-group__title:hover,
.nav-item:hover {
  color: var(--nav-accent);
  transform: translateX(4px);
}
.nav-item:hover::after {
  opacity: 1;
  transform: translate(0, 2px);
}
.nav-group i {
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: var(--nav-accent);
  font-size: 20px;
  font-style: normal;
}
.nav-group--featured:hover {
  border-color: color-mix(in srgb, var(--nav-accent) 42%, white 10%);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), transparent),
    color-mix(in srgb, var(--nav-accent) 11%, rgba(255, 255, 255, 0.025));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 20px 52px color-mix(in srgb, var(--nav-accent) 13%, transparent);
  transform: translateY(-4px);
}
.nav-group--featured:hover i {
  color: var(--nav-accent);
}
@supports not (backdrop-filter: blur(1px)) {
  .kk9-test-label {
    background-color: rgba(235, 240, 243, 0.92);
  }
  .global-nav__rail,
  .global-nav__drawer,
  .drop-test-caption,
  .drop-height,
  .drop-status {
    background-color: rgba(8, 13, 16, 0.92);
  }
}
@media (max-width: 700px) {
  html,
  body {
    width: 100%;
    min-height: 100%;
    overscroll-behavior: none;
  }
  #webgl,
  main {
    touch-action: none;
  }
  .global-nav,
  .global-nav__drawer {
    touch-action: pan-y;
  }
  .reveal-copy h1,
  .product-two-copy h1,
  .kk9-copy h1,
  .ultra-copy h1 {
    max-width: 100%;
    margin-top: 12px;
    font-size: clamp(30px, 9.2vw, 40px);
    line-height: 0.94;
    letter-spacing: -0.055em;
  }
  .reveal-copy,
  .product-two-copy,
  .kk9-copy,
  .ultra-copy {
    top: 68%;
    left: 6vw;
    right: auto;
    width: 88vw;
    max-width: none;
    text-align: left;
    filter: none;
  }
  .ultra-copy {
    top: 68%;
    left: 6vw;
    width: 88vw;
  }
  .copy-kicker,
  .ultra-copy .copy-kicker {
    margin-bottom: 10px;
    font-size: 8px;
    letter-spacing: 0.13em;
  }
  .copy-code,
  .reveal-copy .copy-code {
    font-size: clamp(46px, 14vw, 60px);
    line-height: 0.84;
  }
  .copy-rule {
    height: 1px;
    margin-top: 17px;
  }
  .product-two-copy .copy-code,
  .product-two-copy .copy-line {
    transform-origin: left bottom;
  }
  .product-two-copy .copy-rule {
    margin-left: 0;
    transform-origin: left;
  }
  .product-link {
    top: calc(100% + 9px);
    min-height: 44px;
    padding: 0 15px;
    border: 1px solid color-mix(in srgb, var(--link-color) 38%, transparent);
    border-radius: 14px;
    background: color-mix(in srgb, var(--link-color) 8%, rgba(255, 255, 255, 0.05));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
    font-size: 9px;
    backdrop-filter: blur(16px) saturate(1.25);
  }
  .global-nav__rail {
    height: 62px;
    padding: 0 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }
  .global-nav {
    padding: max(8px, env(safe-area-inset-top)) 8px 0;
  }
  .global-nav__brand,
  .global-nav__contact {
    display: none;
  }
  .global-nav__tabs {
    overflow-x: auto;
    scrollbar-width: none;
  }
  .global-nav__tabs::-webkit-scrollbar { display: none; }
  .global-nav__tabs button { padding: 0 13px; font-size: 10px; }
  .global-nav__actions { gap: 5px; }
  .global-nav__close,
  .global-nav__search { width: 34px; height: 34px; }
  .global-nav__drawer {
    height: calc(100svh - 80px);
    margin-top: 6px;
    padding: 32px 20px 60px;
    border-radius: 22px;
  }
  .nav-category,
  .nav-category.is-active {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .nav-groups,
  .nav-groups--wide {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }
  .nav-group { min-height: 0; }
  .copy-code {
    font-size: clamp(46px, 14vw, 60px);
  }
  .reveal-copy,
  .product-two-copy,
  .kk9-copy,
  .ultra-copy {
    padding: 0;
  }
  .kk9-test-label {
    left: 5vw;
    top: max(76px, 9svh);
    min-width: 0;
    max-width: 90vw;
    padding: 13px 15px 15px;
    border-radius: 16px;
  }
  .kk9-test-label strong {
    font-size: 25px;
  }
  .kk9-cutter {
    width: 138vw;
    max-width: none;
  }
  .drop-test-caption {
    top: max(24px, 4svh);
    right: 5vw;
    gap: 6px;
    padding: 12px 14px 14px;
    border-radius: 14px;
  }
  .drop-test-caption strong {
    font-size: 36px;
  }
  .drop-ruler {
    left: 0;
    width: 72px;
  }
  .ruler-tick {
    width: 22px;
  }
  .ruler-tick.mid {
    width: 34px;
  }
  .ruler-tick.major {
    width: 50px;
  }
  .ruler-tick span {
    right: 54px;
    font-size: 8px;
  }
  .metal-ball {
    width: clamp(58px, 18vw, 76px);
  }
  .drop-height {
    top: 20%;
    right: 5vw;
    gap: 7px;
    padding: 14px 16px 16px;
    border-radius: 15px;
  }
  .drop-height strong {
    font-size: 46px;
  }
  .drop-status {
    right: 5vw;
    bottom: max(22px, 4svh);
    max-width: 72vw;
    padding: 10px 12px;
    font-size: 8px;
    text-align: right;
  }
  .drop-result {
    padding: 11px 15px 13px;
    font-size: 24px;
  }
  body::before {
    opacity: .13;
    background:
      repeating-linear-gradient(90deg, transparent 0 79px, rgba(255,255,255,.018) 80px),
      repeating-linear-gradient(0deg, transparent 0 79px, rgba(255,255,255,.012) 80px);
  }
  .cinematic-ui::before,
  .cinematic-ui::after {
    top: max(70px, calc(env(safe-area-inset-top) + 58px));
    bottom: max(18px, env(safe-area-inset-bottom));
    opacity: .62;
  }
  .cinematic-ui::before { left: 10px; }
  .cinematic-ui::after { right: 10px; }
  .cinematic-ui__topline {
    top: max(18px, env(safe-area-inset-top));
    left: 17px;
    right: 17px;
    font-size: 7px;
    letter-spacing: .13em;
  }
  .cinematic-ui__topline span:first-child { max-width: 50vw; }
  .cinematic-ui__chapter {
    left: 17px;
    bottom: max(29px, calc(env(safe-area-inset-bottom) + 19px));
    gap: 8px;
  }
  .cinematic-ui__chapter span,
  .cinematic-ui__chapter strong { font-size: 7px; }
  .cinematic-ui__chapter strong { letter-spacing: .14em; }
  .cinematic-ui__rail {
    left: 17px;
    right: 17px;
    bottom: max(18px, calc(env(safe-area-inset-bottom) + 8px));
  }
  .cinematic-ui__scroll { display: none; }
  .cinematic-ui__flare {
    width: 150vw;
    height: 22vh;
    opacity: .11;
    filter: blur(34px);
  }
}
@media (max-width: 700px) and (max-height: 700px) {
  .reveal-copy,
  .product-two-copy,
  .kk9-copy,
  .ultra-copy {
    top: 64%;
  }
  .reveal-copy h1,
  .product-two-copy h1,
  .kk9-copy h1,
  .ultra-copy h1 {
    font-size: clamp(27px, 8.3vw, 34px);
  }
  .copy-code,
  .reveal-copy .copy-code {
    font-size: clamp(42px, 12.5vw, 52px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .vignette::before {
    animation: none;
  }
  .loader,
  .global-nav,
  .global-nav__drawer,
  .product-link {
    transition-duration: 0.01ms !important;
  }
  .cinematic-ui__scroll i::after { animation: none; }
  .cinematic-ui__flare { display: none; }
}
.product-two-copy .product-link {
  margin-left: auto;
}

/* Liquid-art direction: the product copy behaves like editorial typography,
   not a dashboard card. Soft refractive blooms preserve readability over the
   GPU colour field without boxing the composition in. */
.reveal-copy,
.product-two-copy,
.kk9-copy,
.ultra-copy {
  width: min(45vw, 720px);
  color: #fff;
  filter: none;
  text-shadow: 0 12px 42px rgba(3, 2, 18, .28);
  isolation: isolate;
}
.reveal-copy::before,
.product-two-copy::before,
.kk9-copy::before,
.ultra-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -22% -18% -26%;
  border-radius: 52% 48% 58% 42% / 42% 56% 44% 58%;
  background: radial-gradient(ellipse, rgba(5, 3, 22, .36), rgba(5, 3, 22, .13) 46%, transparent 72%);
  filter: blur(28px);
  pointer-events: none;
}
.reveal-copy { left: 6.5vw; width: min(43vw, 690px); }
.product-two-copy { right: 6.5vw; }
.kk9-copy { left: 6.5vw; }
.ultra-copy { left: 6.5vw; width: min(45vw, 720px); color: #fff; }
.copy-kicker,
.reveal-copy .copy-kicker,
.kk9-copy .copy-kicker,
.ultra-copy .copy-kicker {
  color: rgba(255,255,255,.76);
  text-shadow: 0 4px 18px rgba(0,0,0,.24);
}
.copy-kicker::before {
  width: 8px;
  height: 8px;
  margin-right: 12px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  background: color-mix(in srgb, var(--chapter-accent) 72%, white 28%);
  box-shadow: 0 0 22px var(--chapter-accent);
}
.copy-code,
.reveal-copy .copy-code,
.product-two-copy .copy-code,
.kk9-copy .copy-code,
.ultra-copy .copy-code {
  color: transparent;
  font-size: clamp(82px, 10.8vw, 190px);
  font-weight: 350;
  line-height: .72;
  letter-spacing: -.09em;
  background: linear-gradient(105deg, #fff 8%, #d8f8ff 35%, #ffb6e2 64%, #fff 88%);
  background-size: 180% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 16px 46px rgba(17, 5, 44, .24));
}
.reveal-copy h1,
.product-two-copy h1,
.kk9-copy h1,
.ultra-copy h1 {
  max-width: 8.5em;
  margin-top: clamp(18px, 2.2vw, 34px);
  color: #fff;
  font-size: clamp(48px, 5.5vw, 92px);
  font-weight: 560;
  line-height: .9;
  letter-spacing: -.07em;
  text-wrap: balance;
}
.product-two-copy h1 { margin-left: auto; }
.copy-rule,
.reveal-copy .copy-rule,
.product-two-copy .copy-rule,
.kk9-copy .copy-rule,
.ultra-copy .copy-rule {
  width: 100%;
  height: 3px;
  margin-top: clamp(24px, 3.2vw, 44px);
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, #fff 18%, var(--chapter-accent) 60%, transparent);
  box-shadow: 0 0 24px color-mix(in srgb, var(--chapter-accent) 58%, transparent);
}
.product-two-copy .copy-rule {
  background: linear-gradient(270deg, transparent, #fff 18%, #5cecff 60%, transparent);
}
.product-link,
.ultra-copy .product-link {
  width: 210px;
  min-height: 58px;
  padding: 0 20px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.055));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 18px 48px rgba(7,2,24,.18);
  backdrop-filter: blur(26px) saturate(1.7);
}
.product-link:hover,
.reveal-copy .product-link:hover,
.ultra-copy .product-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,.52);
  background: linear-gradient(135deg, color-mix(in srgb, var(--link-color) 34%, rgba(255,255,255,.16)), rgba(255,255,255,.1));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 22px 58px color-mix(in srgb, var(--link-color) 24%, transparent);
}
.global-nav__rail {
  width: min(1280px, calc(100% - 4vw));
  height: 58px;
  border-color: rgba(255,255,255,.15);
  border-radius: 999px;
  background: linear-gradient(105deg, rgba(255,255,255,.14), rgba(5,3,20,.2) 46%, rgba(255,255,255,.08));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 18px 60px rgba(3,1,16,.18);
  backdrop-filter: blur(30px) saturate(1.8);
}
.global-nav.is-pearl .global-nav__rail {
  border-color: rgba(255,255,255,.2);
  background: linear-gradient(105deg, rgba(255,255,255,.22), rgba(22,16,45,.16), rgba(255,255,255,.12));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 18px 60px rgba(24,10,62,.14);
}
.global-nav.is-pearl .global-nav__brand,
.global-nav.is-pearl .global-nav__tabs button,
.global-nav.is-pearl .global-nav__contact,
.global-nav.is-pearl .global-nav__search,
.global-nav.is-pearl .global-nav__close {
  color: rgba(255,255,255,.78);
}

@media (max-width: 700px) {
  .reveal-copy,
  .product-two-copy,
  .kk9-copy,
  .ultra-copy {
    left: 7vw;
    right: auto;
    width: 86vw;
    color: #fff;
    text-align: left;
  }
  .reveal-copy::before,
  .product-two-copy::before,
  .kk9-copy::before,
  .ultra-copy::before {
    inset: -18% -10% -24%;
    filter: blur(20px);
  }
  .copy-code,
  .reveal-copy .copy-code,
  .product-two-copy .copy-code,
  .kk9-copy .copy-code,
  .ultra-copy .copy-code {
    font-size: clamp(54px, 17vw, 74px);
  }
  .reveal-copy h1,
  .product-two-copy h1,
  .kk9-copy h1,
  .ultra-copy h1 {
    max-width: 100%;
    margin-left: 0;
    font-size: clamp(34px, 10.5vw, 46px);
    line-height: .9;
  }
  .product-two-copy .copy-rule { margin-left: 0; }
  .product-link,
  .ultra-copy .product-link {
    width: 178px;
    min-height: 50px;
    padding: 0 17px;
  }
  .cinematic-ui__topline span:first-child { display: none; }
  .cinematic-ui__topline { justify-content: flex-end; }
  .cinematic-ui__chapter {
    right: 17px;
    bottom: max(32px, calc(env(safe-area-inset-bottom) + 20px));
  }
  .cinematic-ui__chapter span {
    font-size: clamp(86px, 30vw, 132px);
    -webkit-text-stroke-color: rgba(255,255,255,.18);
  }
  .cinematic-ui__flare {
    width: 68vmax;
    height: 68vmax;
    opacity: .22;
    backdrop-filter: blur(18px) saturate(1.45);
  }
  .cinematic-ui__rail { width: 46vw; height: 3px; }
}

body::before {
  opacity: .075;
  background-image: radial-gradient(rgba(255,255,255,.68) .55px, transparent .65px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
  mask-image: none;
}
.vignette,
body.is-300cc-black .vignette,
body.is-pearl-stage .vignette {
  opacity: 1;
  background:
    radial-gradient(ellipse at center, transparent 28%, rgba(2,0,12,.08) 62%, rgba(2,0,12,.36) 112%),
    linear-gradient(180deg, rgba(2,0,12,.12), transparent 22% 76%, rgba(2,0,12,.18));
}
.vignette::before,
body.is-300cc-black .vignette::before,
body.is-pearl-stage .vignette::before {
  opacity: .32;
  background: linear-gradient(112deg, transparent 36%, rgba(120,238,255,.08) 48%, rgba(255,76,187,.1) 51%, transparent 64%);
  mix-blend-mode: screen;
  animation-duration: 24s;
}

.loader {
  background:
    radial-gradient(circle at 20% 24%, rgba(0,194,255,.34), transparent 31%),
    radial-gradient(circle at 78% 68%, rgba(255,42,128,.34), transparent 34%),
    radial-gradient(circle at 52% 48%, rgba(92,20,255,.36), transparent 38%),
    #05030f;
  color: #fff;
}
.loader::before {
  width: min(70vw, 560px);
  height: min(70vw, 560px);
  border-color: rgba(255,255,255,.14);
  border-radius: 44% 56% 61% 39% / 55% 40% 60% 45%;
  background:
    radial-gradient(circle at 28% 24%, rgba(255,255,255,.26), transparent 20%),
    linear-gradient(135deg, rgba(255,255,255,.14), rgba(111,45,255,.12), rgba(255,45,136,.12));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.24), 0 50px 140px rgba(0,0,0,.25);
  backdrop-filter: blur(40px) saturate(1.8);
}
.loader span { color: #fff; font-size: 22px; letter-spacing: -.045em; }
.loader small { color: rgba(255,255,255,.58); }
.loader i { width: 122px; background: rgba(255,255,255,.18); }
.loader i::after {
  background: linear-gradient(90deg, #ff3b91, #854dff, #53e7ff);
  box-shadow: 0 0 18px rgba(101,222,255,.72);
}

.global-nav__drawer,
.global-nav.is-pearl .global-nav__drawer {
  border-color: rgba(255,255,255,.14);
  background:
    radial-gradient(circle at 12% 18%, rgba(0,192,255,.16), transparent 32%),
    radial-gradient(circle at 88% 76%, rgba(255,40,143,.15), transparent 34%),
    rgba(5,3,18,.8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 34px 100px rgba(0,0,0,.32);
  backdrop-filter: blur(42px) saturate(1.7);
}
.nav-category__intro h2,
.global-nav.is-pearl .nav-category__intro h2,
.nav-group__title,
.global-nav.is-pearl .nav-group__title {
  color: rgba(255,255,255,.94);
}
.nav-category__intro > span,
.nav-item,
.global-nav.is-pearl .nav-category__intro > span,
.global-nav.is-pearl .nav-item {
  color: rgba(255,255,255,.56);
}
.nav-group,
.global-nav.is-pearl .nav-group {
  border-color: rgba(255,255,255,.11);
  background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 18px 48px rgba(0,0,0,.12);
}

@media (max-width: 700px) {
  .cinematic-ui__flare {
    opacity: .18;
    backdrop-filter: none;
  }
  .global-nav__rail { backdrop-filter: blur(18px) saturate(1.45); }
  .global-nav__drawer,
  .global-nav.is-pearl .global-nav__drawer {
    backdrop-filter: blur(22px) saturate(1.45);
  }
  .loader::before { backdrop-filter: blur(24px) saturate(1.5); }
}
