:root {
  color-scheme: dark;
  --bg: #05060b;
  --bg-2: #070b14;
  --panel: rgba(12, 18, 30, 0.86);
  --panel-2: rgba(16, 24, 39, 0.9);
  --line: rgba(134, 158, 198, 0.2);
  --line-strong: rgba(134, 158, 198, 0.32);
  --text: #eef3fb;
  --muted: rgba(221, 228, 241, 0.72);
  --accent: #65d6ff;
  --accent-2: #8cf3c1;
  --accent-3: #94a9ff;
  --warm: #e7b36d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --container: min(1700px, calc(100% - 64px));
  --fx-x: 50%;
  --fx-y: 42%;
  --hud-line: rgba(101, 214, 255, 0.24);
  --hud-line-strong: rgba(140, 243, 193, 0.46);
  --hud-glow: rgba(101, 214, 255, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 1280px;
  background:
    linear-gradient(180deg, #05060b 0%, #070b14 48%, #05060b 100%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 92px
    );
  color: var(--text);
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: default;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0, transparent 20%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0, transparent 20%);
  background-size: 100% 100%, 88px 88px;
  opacity: 0.45;
  mix-blend-mode: screen;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--fx-x) var(--fx-y), rgba(101, 214, 255, 0.16), transparent 24%),
    linear-gradient(120deg, transparent 0 42%, rgba(101, 214, 255, 0.035) 46%, transparent 52% 100%);
  opacity: 0.72;
  mix-blend-mode: screen;
}

body > * {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

.page {
  position: relative;
}

.fx-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.78;
  mix-blend-mode: screen;
}

.fx-field::before,
.fx-field::after {
  content: "";
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(circle, rgba(101, 214, 255, 0.28) 0 1px, transparent 2px),
    linear-gradient(90deg, transparent 0 18%, rgba(101, 214, 255, 0.08) 18% 18.08%, transparent 18.16% 100%);
  background-size:
    138px 138px,
    320px 100%;
  animation: fxDrift 24s linear infinite;
}

.fx-field::after {
  background:
    radial-gradient(circle, rgba(140, 243, 193, 0.22) 0 1px, transparent 2px),
    linear-gradient(180deg, transparent 0 52%, rgba(140, 243, 193, 0.06) 52% 52.08%, transparent 52.16% 100%);
  background-size:
    210px 210px,
    100% 280px;
  animation-duration: 32s;
  animation-direction: reverse;
  opacity: 0.52;
}

.code-stream {
  position: fixed;
  inset: 86px 54px 54px;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 42px);
  overflow: hidden;
  pointer-events: none;
  opacity: 0.32;
  mix-blend-mode: screen;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 74%, transparent);
}

.code-stream::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(101, 214, 255, 0.16), transparent),
    repeating-linear-gradient(180deg, rgba(140, 243, 193, 0.12) 0 1px, transparent 1px 26px);
  opacity: 0.24;
  animation: codeScan 7s linear infinite;
}

.code-stream__column {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
  color: rgba(140, 243, 193, 0.82);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-shadow:
    0 0 10px rgba(101, 214, 255, 0.42),
    0 0 22px rgba(140, 243, 193, 0.18);
  animation: codeStreamFall var(--code-speed, 22s) linear infinite;
  animation-delay: var(--code-delay, 0s);
}

.code-stream__column:nth-child(even) {
  color: rgba(101, 214, 255, 0.78);
  transform: translateY(-38%);
  animation-direction: reverse;
}

.code-stream__line {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  opacity: 0.78;
}

.section-shell {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: clip;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
  filter: saturate(0.84) contrast(1.08) brightness(0.66);
  transform: scale(1.04);
}

.hero-mask {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 46%), rgba(30, 156, 255, 0.26), transparent 24%),
    radial-gradient(circle at 76% 55%, rgba(101, 214, 255, 0.22), transparent 18%),
    radial-gradient(circle at 18% 72%, rgba(101, 214, 255, 0.18), transparent 16%),
    linear-gradient(180deg, rgba(3, 7, 16, 0.18) 0%, rgba(3, 7, 16, 0.54) 42%, rgba(3, 5, 10, 0.94) 100%),
    linear-gradient(90deg, rgba(3, 7, 16, 0.82) 0%, transparent 34%, transparent 66%, rgba(3, 7, 16, 0.82) 100%);
}

.hero-mask::before,
.hero-mask::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-mask::before {
  background:
    radial-gradient(rgba(101, 214, 255, 0.26) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 195, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(42, 195, 255, 0.08) 1px, transparent 1px);
  background-size: 11px 11px, 96px 96px, 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 82%);
  opacity: 0.42;
}

.hero-mask::after {
  background:
    linear-gradient(130deg, transparent 0 22%, rgba(101, 214, 255, 0.12) 22.1%, transparent 22.3% 74%, rgba(101, 214, 255, 0.1) 74.1%, transparent 74.3%),
    repeating-linear-gradient(0deg, transparent 0 9px, rgba(255, 255, 255, 0.03) 10px);
  opacity: 0.55;
}

.hero-cursor {
  position: absolute;
  z-index: 3;
  left: var(--mx, 50%);
  top: var(--my, 50%);
  width: 280px;
  height: 280px;
  border: 1px solid rgba(101, 214, 255, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(101, 214, 255, 0.1), transparent 62%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.hero:hover .hero-cursor {
  opacity: 1;
}

.hero-scanline {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(101, 214, 255, 0.16), transparent);
  height: 180px;
  opacity: 0.28;
  animation: scanline 6.5s linear infinite;
}

.hero-shell {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 28px 0 34px;
}

.cover-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0;
  transition: transform 0.18s ease-out;
}

.cover-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(238, 243, 251, 0.9);
}

.cover-brand span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 42px;
  border: 1px solid rgba(101, 214, 255, 0.44);
  background: rgba(9, 24, 40, 0.62);
  color: var(--accent);
  font-size: 17px;
  font-weight: 700;
}

.cover-brand strong {
  font-size: 16px;
  font-weight: 650;
}

.cover-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  min-width: 0;
}

.cover-links a {
  position: relative;
  font-size: 15px;
  color: rgba(226, 233, 246, 0.82);
  padding: 8px 0;
}

.cover-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.cover-links a:hover::after {
  transform: scaleX(1);
}

.cover-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(101, 214, 255, 0.42);
  background: rgba(101, 214, 255, 0.08);
  color: rgba(239, 248, 255, 0.92);
  font-size: 14px;
  font-weight: 650;
  border-radius: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  background: rgba(10, 15, 26, 0.82);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  border-radius: 8px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(101, 214, 255, 0.44);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.button--primary {
  background: linear-gradient(135deg, rgba(101, 214, 255, 0.18), rgba(140, 243, 193, 0.1));
  border-color: rgba(101, 214, 255, 0.42);
}

.button--ghost {
  background: rgba(10, 14, 24, 0.62);
}

.cover-stage {
  position: relative;
  flex: 1;
  min-height: calc(100vh - 104px);
  display: grid;
  place-items: center;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.cover-stage::before,
.cover-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.cover-stage::before {
  inset: 30px 18px 54px;
  border: 1px solid rgba(101, 214, 255, 0.18);
  clip-path: polygon(0 0, 22% 0, 22% 2px, 0 2px, 0 75%, 2px 75%, 2px 0, 0 0, 100% 0, 100% 38%, calc(100% - 2px) 38%, calc(100% - 2px) 2px, 72% 2px, 72% 0);
}

.cover-stage::after {
  right: 28px;
  top: 6px;
  bottom: 26px;
  width: 1px;
  background: repeating-linear-gradient(
    180deg,
    rgba(101, 214, 255, 0.88) 0 72px,
    transparent 72px 104px
  );
  box-shadow: -1px 0 22px rgba(101, 214, 255, 0.22);
}

.eyebrow,
.section-index {
  margin: 0 0 18px;
  color: rgba(148, 169, 255, 0.95);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cover-title {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  display: grid;
  justify-items: center;
  gap: 22px;
  width: min(980px, 72vw);
  text-align: center;
  transform: translate(-50%, -50%);
  transition: transform 0.16s ease-out;
}

.cover-title p {
  margin: 0;
  color: rgba(226, 240, 255, 0.76);
  font-size: 19px;
  letter-spacing: 0;
}

.cover-title h1 {
  margin: 0;
  color: #ffffff;
  font-size: 108px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0;
  text-shadow:
    0 0 3px #ffffff,
    0 0 18px rgba(101, 214, 255, 0.62),
    0 14px 0 rgba(0, 194, 255, 0.18);
}

.cover-title strong {
  display: block;
  color: #ffffff;
  font-size: 62px;
  line-height: 1;
  font-style: italic;
  font-weight: 720;
  letter-spacing: 0;
  text-shadow:
    0 0 3px #ffffff,
    0 0 18px rgba(101, 214, 255, 0.6),
    0 10px 0 rgba(0, 194, 255, 0.16);
}

.cover-corner {
  position: absolute;
  left: 0;
  top: 20px;
  z-index: 4;
  display: grid;
  gap: 24px;
  transition: transform 0.16s ease-out;
}

.cover-corner strong {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 82px;
  line-height: 0.9;
  font-weight: 760;
  text-shadow: 0 0 12px rgba(101, 214, 255, 0.48);
}

.cover-corner strong::after {
  content: "";
  position: absolute;
  right: -92px;
  top: 16px;
  width: 88px;
  height: 12px;
  background: rgba(21, 178, 226, 0.66);
  box-shadow: 0 42px 0 rgba(101, 214, 255, 0.8);
}

.cover-corner span {
  display: block;
  padding-left: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 26px;
  line-height: 1.22;
  font-weight: 760;
}

.cover-corner span::after {
  content: "";
  display: block;
  width: 36px;
  height: 122px;
  margin: 14px 0 0 112px;
  background: rgba(21, 178, 226, 0.68);
  box-shadow: 0 0 32px rgba(21, 178, 226, 0.24);
}

.cover-year {
  position: absolute;
  right: 54px;
  top: 4px;
  z-index: 4;
  width: 206px;
  height: 128px;
  border: 6px solid rgba(101, 214, 255, 0.82);
  border-left-color: transparent;
  border-bottom-color: transparent;
  transition: transform 0.16s ease-out;
}

.cover-year::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: -34px;
  width: 78px;
  height: 6px;
  background: rgba(101, 214, 255, 0.82);
  box-shadow: 74px 0 0 rgba(101, 214, 255, 0.72), 118px 88px 0 rgba(101, 214, 255, 0.72);
}

.cover-year span {
  position: absolute;
  right: 28px;
  top: -18px;
  color: #ffffff;
  font-size: 48px;
  font-weight: 580;
}

.cover-side-text {
  position: absolute;
  left: -58px;
  top: 46%;
  z-index: 3;
  color: rgba(255, 255, 255, 0.12);
  font-size: 70px;
  font-weight: 800;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transition: transform 0.16s ease-out;
}

.cover-motto {
  position: absolute;
  left: 8px;
  bottom: 32px;
  z-index: 4;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.36;
  font-weight: 760;
  transition: transform 0.16s ease-out;
}

.cover-motto::after {
  content: "";
  position: absolute;
  left: 138px;
  bottom: -4px;
  width: 330px;
  height: 164px;
  border: 6px solid rgba(101, 214, 255, 0.78);
  border-left: 0;
  border-top-width: 4px;
}

.cover-name {
  position: absolute;
  right: 286px;
  bottom: 118px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 28px;
  background: rgba(28, 186, 230, 0.86);
  color: #ffffff;
  font-size: 24px;
  font-weight: 760;
  box-shadow: 0 0 30px rgba(28, 186, 230, 0.26);
  border-radius: 4px;
  transition:
    transform 0.16s ease-out,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.cover-name:hover {
  background: rgba(64, 216, 255, 0.94);
  box-shadow: 0 0 46px rgba(64, 216, 255, 0.4);
}

.cover-icon {
  position: absolute;
  z-index: 5;
  width: 98px;
  height: 98px;
  color: white;
  filter: drop-shadow(0 0 14px rgba(101, 214, 255, 0.28));
  transition: transform 0.16s ease-out;
}

.cover-icon--pen {
  left: 28%;
  top: 21%;
  transform: rotate(-30deg);
}

.cover-icon--pen span {
  position: absolute;
  left: 14px;
  top: 42px;
  width: 74px;
  height: 22px;
  border: 6px solid currentColor;
  border-radius: 8px;
  transform: rotate(-30deg);
}

.cover-icon--pen span::before,
.cover-icon--pen span::after {
  content: "";
  position: absolute;
  border: 6px solid currentColor;
  border-radius: 6px;
}

.cover-icon--pen span::before {
  left: -22px;
  top: -6px;
  width: 18px;
  height: 22px;
  border-right: 0;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.cover-icon--pen span::after {
  right: -26px;
  top: -28px;
  width: 28px;
  height: 44px;
  transform: rotate(38deg);
}

.cover-icon--spark {
  right: 13%;
  bottom: 23%;
}

.cover-icon--spark span {
  position: absolute;
  left: 24px;
  top: 26px;
  width: 54px;
  height: 54px;
  border: 7px solid currentColor;
  border-top: 0;
  transform: rotate(-14deg);
}

.cover-icon--spark span::before,
.cover-icon--spark span::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: currentColor;
  transform: rotate(45deg);
}

.cover-icon--spark span::before {
  right: -24px;
  top: -28px;
}

.cover-icon--spark span::after {
  left: -8px;
  top: -8px;
  box-shadow: 36px -18px 0 -2px currentColor;
}

.cityline {
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 8px;
  height: 260px;
  padding: 0 4%;
  opacity: 0.92;
  transition: transform 0.16s ease-out;
}

.cityline::before {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: 0;
  height: 142px;
  background: linear-gradient(180deg, transparent, rgba(3, 6, 12, 0.92));
}

.cityline span {
  position: relative;
  width: var(--w);
  height: var(--h);
  background:
    repeating-linear-gradient(90deg, transparent 0 12px, rgba(101, 214, 255, 0.25) 12px 16px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 18px, rgba(101, 214, 255, 0.22) 18px 21px),
    linear-gradient(180deg, rgba(10, 32, 54, 0.82), rgba(2, 4, 9, 0.98));
  border: 1px solid rgba(101, 214, 255, 0.16);
  box-shadow: 0 -24px 48px rgba(0, 191, 255, 0.08);
}

.cityline span:nth-child(4n) {
  border-radius: 999px 999px 0 0;
}

.cityline span:nth-child(5n) {
  clip-path: polygon(0 14%, 50% 0, 100% 14%, 100% 100%, 0 100%);
}

.cover-scroll {
  position: absolute;
  right: 0;
  bottom: 30px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(101, 214, 255, 0.36);
  background: rgba(5, 12, 22, 0.64);
  color: rgba(235, 245, 255, 0.88);
  font-size: 14px;
  border-radius: 8px;
}

.section {
  padding: 110px 0;
}

.section--about,
.section--strengths {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.section-head h2 {
  margin: 0;
  max-width: 980px;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 680;
}

.section-index {
  margin-bottom: 0;
  color: rgba(140, 243, 193, 0.88);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(480px, 0.78fr);
  gap: 22px;
}

.about-grid--intro {
  align-items: stretch;
  gap: 34px;
}

.about-collage,
.about-card {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(134, 158, 198, 0.18);
  background:
    radial-gradient(circle at var(--card-x, 44%) var(--card-y, 42%), rgba(101, 214, 255, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(13, 18, 31, 0.9), rgba(9, 12, 20, 0.94));
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform-style: preserve-3d;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.about-collage:hover,
.about-card:hover {
  border-color: rgba(101, 214, 255, 0.42);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48), 0 0 62px rgba(101, 214, 255, 0.1);
}

.about-collage::after,
.about-card::before,
.project-card::before,
.strength-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-collage::after {
  inset: 18px;
  border: 1px solid rgba(101, 214, 255, 0.06);
  background:
    linear-gradient(120deg, transparent 0 43%, rgba(101, 214, 255, 0.12) 48%, transparent 54%),
    linear-gradient(180deg, transparent 0 86%, rgba(101, 214, 255, 0.18) 86%, transparent 100%);
  mix-blend-mode: screen;
  opacity: 0.58;
  animation: cardSweep 9s linear infinite;
}

.about-card::before,
.project-card::before,
.strength-card::before,
.contact-card::before {
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(101, 214, 255, 0.16), transparent 34%),
    linear-gradient(120deg, transparent 0 44%, rgba(140, 243, 193, 0.12) 49%, transparent 55%);
  opacity: 0;
  transition: opacity 0.24s ease;
  mix-blend-mode: screen;
}

.about-card:hover::before,
.project-card:hover::before,
.strength-card:hover::before,
.contact-card:hover::before {
  opacity: 1;
  animation: cardSweep 5.5s linear infinite;
}

.about-collage {
  padding: 52px 54px;
  background:
    radial-gradient(circle at 72% 36%, rgba(140, 243, 193, 0.16), transparent 18%),
    radial-gradient(circle at 18% 78%, rgba(226, 121, 255, 0.13), transparent 17%),
    linear-gradient(180deg, rgba(14, 19, 30, 0.92), rgba(7, 10, 17, 0.95));
}

.about-collage::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(101, 214, 255, 0.1);
  background:
    linear-gradient(90deg, rgba(101, 214, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(101, 214, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.intro-title {
  position: relative;
  z-index: 4;
  color: #f5f8ff;
  font-size: 44px;
  font-weight: 760;
  line-height: 1;
  text-shadow: 0 0 22px rgba(101, 214, 255, 0.3);
}

.collage-frame {
  position: absolute;
  z-index: 2;
  border: 3px solid rgba(236, 229, 255, 0.78);
  border-radius: 4px;
  transition: transform 0.28s ease;
}

.collage-frame--back {
  left: 76px;
  top: 148px;
  width: 330px;
  height: 248px;
  opacity: 0.72;
}

.collage-frame--front {
  left: 114px;
  top: 178px;
  width: 342px;
  height: 258px;
  border-color: rgba(101, 214, 255, 0.68);
}

.about-collage:hover .collage-frame--back {
  transform: translate(-10px, -8px);
}

.about-collage:hover .collage-frame--front {
  transform: translate(10px, 8px);
}

.qr-card {
  position: absolute;
  z-index: 5;
  left: 118px;
  top: 170px;
  width: 314px;
  height: 314px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.42);
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    filter 0.24s ease;
}

.qr-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.qr-card:hover {
  transform: translateY(-8px) scale(1.02);
  filter: contrast(1.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.54), 0 0 52px rgba(101, 214, 255, 0.25);
}

.qr-card.is-zoomed {
  transform: translateY(-16px) scale(1.18);
  z-index: 12;
}

.qr-scan {
  position: absolute;
  left: 16px;
  right: 16px;
  top: -30%;
  height: 42px;
  background: linear-gradient(180deg, transparent, rgba(101, 214, 255, 0.35), transparent);
  opacity: 0;
  pointer-events: none;
}

.qr-card:hover .qr-scan,
.qr-card.is-zoomed .qr-scan {
  opacity: 1;
  animation: qrScan 1.7s linear infinite;
}

.intro-note {
  position: absolute;
  z-index: 4;
  left: 330px;
  top: 244px;
  width: 370px;
  min-height: 160px;
  padding: 28px 36px 24px 148px;
  border: 2px solid rgba(40, 48, 65, 0.68);
  background: linear-gradient(110deg, rgba(226, 121, 255, 0.72), rgba(212, 255, 119, 0.82));
  color: rgba(11, 14, 22, 0.88);
  border-radius: 4px;
  transform: translateZ(30px);
}

.intro-note strong {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 48px;
  font-style: italic;
  font-weight: 500;
  text-shadow:
    -2px -2px 0 rgba(78, 56, 86, 0.9),
    2px 2px 0 rgba(78, 56, 86, 0.5);
}

.intro-note span {
  display: block;
  margin-left: 74px;
  font-size: 14px;
  line-height: 1.4;
}

.doodle {
  position: absolute;
  z-index: 7;
  color: rgba(247, 247, 255, 0.94);
  text-shadow: 0 0 12px rgba(101, 214, 255, 0.3);
  pointer-events: none;
}

.doodle--star {
  left: 514px;
  top: 132px;
  color: rgba(221, 145, 255, 0.9);
  font-size: 34px;
  animation: floatDoodle 3.2s ease-in-out infinite;
}

.doodle--smile {
  right: 136px;
  top: 212px;
  font-size: 42px;
  animation: floatDoodle 3.6s ease-in-out infinite reverse;
}

.doodle--arrow {
  left: 468px;
  top: 376px;
  color: #ffffff;
  font-size: 54px;
}

.doodle--curve {
  left: 84px;
  bottom: 112px;
  width: 72px;
  height: 42px;
  border-left: 5px solid rgba(246, 247, 255, 0.92);
  border-bottom: 5px solid rgba(246, 247, 255, 0.92);
  border-radius: 0 0 0 64px;
  transform: rotate(-20deg);
}

.doodle--curve::after {
  content: "★";
  position: absolute;
  left: -48px;
  bottom: -36px;
  color: rgba(216, 255, 104, 0.9);
  font-size: 30px;
}

.qr-hint {
  position: absolute;
  left: 54px;
  bottom: 36px;
  z-index: 4;
  margin: 0;
  color: rgba(226, 240, 255, 0.66);
  font-size: 14px;
}

.about-card {
  padding: 0;
  background:
    radial-gradient(circle at 86% 38%, rgba(101, 214, 255, 0.14), transparent 22%),
    radial-gradient(circle at 14% 78%, rgba(140, 243, 193, 0.1), transparent 18%),
    linear-gradient(180deg, rgba(10, 16, 26, 0.94), rgba(7, 10, 17, 0.96));
  color: rgba(232, 238, 247, 0.92);
}

.about-card__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 22px;
  background:
    linear-gradient(90deg, rgba(82, 54, 132, 0.96), rgba(45, 66, 124, 0.96)),
    rgba(17, 23, 36, 0.98);
  color: rgba(174, 240, 255, 0.96);
  font-size: 17px;
  font-weight: 760;
  border-bottom: 1px solid rgba(101, 214, 255, 0.18);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

.about-card__bar span {
  color: rgba(238, 243, 251, 0.92);
}

.about-card__content {
  position: relative;
  z-index: 2;
  padding: 54px 62px 46px;
}

.about-list {
  display: grid;
  gap: 22px;
  margin: 0;
}

.about-list div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.about-list dt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin: 0;
  padding: 0 12px;
  background: linear-gradient(135deg, rgba(101, 214, 255, 0.88), rgba(140, 243, 193, 0.72));
  color: rgba(8, 13, 20, 0.96);
  font-size: 18px;
  font-weight: 760;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 24px rgba(101, 214, 255, 0.12);
}

.about-list dd {
  margin: 0;
  color: rgba(232, 238, 247, 0.9);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 640;
}

.about-list a {
  color: inherit;
}

.about-card__summary {
  margin-top: 34px;
  padding: 20px 22px;
  border: 1px solid rgba(101, 214, 255, 0.14);
  background: linear-gradient(180deg, rgba(101, 214, 255, 0.06), rgba(255, 255, 255, 0.03));
  color: rgba(226, 233, 246, 0.82);
  font-size: 15px;
  line-height: 1.8;
  border-radius: 8px;
}

.cursor-shape {
  position: absolute;
  right: -8px;
  top: 178px;
  width: 86px;
  height: 108px;
  background: rgba(255, 255, 255, 0.92);
  clip-path: polygon(8% 0, 96% 47%, 60% 55%, 82% 100%, 62% 100%, 40% 58%, 8% 84%);
  filter: drop-shadow(0 0 0 rgba(31, 27, 40, 0.9)) drop-shadow(0 8px 12px rgba(0, 0, 0, 0.18));
  transition: transform 0.22s ease;
}

.about-card:hover .cursor-shape {
  transform: translate(-16px, 12px) rotate(-8deg);
}

.portrait-panel,
.about-copy,
.about-data,
.project-card,
.strength-card,
.contact-card {
  border: 1px solid rgba(134, 158, 198, 0.18);
  background: linear-gradient(180deg, rgba(13, 18, 31, 0.88), rgba(9, 12, 20, 0.92));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.portrait-panel {
  padding: 24px;
}

.portrait {
  position: relative;
  display: grid;
  place-items: center;
  height: 430px;
  overflow: hidden;
  border: 1px solid rgba(134, 158, 198, 0.18);
  background:
    linear-gradient(145deg, rgba(101, 214, 255, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(18, 26, 45, 0.98), rgba(8, 12, 20, 0.98));
  border-radius: 8px;
}

.portrait::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(134, 158, 198, 0.14);
  border-radius: 8px;
}

.portrait__ring {
  position: absolute;
  inset: auto auto 36px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(101, 214, 255, 0.42);
  border-radius: 50%;
  box-shadow:
    0 0 0 12px rgba(101, 214, 255, 0.05),
    0 0 0 32px rgba(101, 214, 255, 0.03);
  opacity: 0.88;
}

.portrait__face {
  position: absolute;
  top: 112px;
  width: 118px;
  height: 154px;
  border-radius: 54px 54px 46px 46px;
  background:
    linear-gradient(180deg, rgba(219, 228, 246, 0.16), rgba(101, 214, 255, 0.08)),
    linear-gradient(180deg, #1f2e4b, #101825);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.portrait__hair {
  position: absolute;
  top: 82px;
  width: 170px;
  height: 112px;
  border-radius: 84px 84px 44px 44px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 68%),
    linear-gradient(180deg, #0b1320, #101a2d);
  box-shadow: inset 0 -10px 26px rgba(101, 214, 255, 0.08);
}

.portrait__shoulder {
  position: absolute;
  bottom: 68px;
  width: 250px;
  height: 150px;
  border-radius: 42% 42% 22px 22px;
  background:
    linear-gradient(180deg, rgba(101, 214, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #152033, #090d14);
  box-shadow: inset 0 0 0 1px rgba(134, 158, 198, 0.08);
}

.portrait__badge {
  position: absolute;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(101, 214, 255, 0.38);
  background: rgba(8, 12, 20, 0.72);
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
}

.portrait-copy {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.portrait-copy strong {
  font-size: 24px;
}

.portrait-copy span {
  color: var(--muted);
  font-size: 14px;
}

.about-copy {
  padding: 32px;
}

.about-copy p {
  margin: 0 0 20px;
  color: rgba(232, 238, 247, 0.84);
  font-size: 18px;
  line-height: 1.9;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(134, 158, 198, 0.18);
}

.contact-list a,
.contact-list span {
  display: block;
  color: rgba(225, 233, 247, 0.88);
  font-size: 15px;
}

.about-data {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.data-card {
  padding: 20px 18px;
  border: 1px solid rgba(134, 158, 198, 0.16);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
}

.data-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.35;
}

.data-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

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

.project-card {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 340px;
  isolation: isolate;
  transform-style: preserve-3d;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(101, 214, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(13, 18, 31, 0.92), rgba(8, 12, 20, 0.96));
}

.project-card:hover {
  border-color: rgba(101, 214, 255, 0.42);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.48),
    0 0 52px rgba(101, 214, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.project-card--wide {
  grid-column: span 7;
}

.project-card--tall {
  grid-column: span 5;
}

.project-art {
  position: relative;
  min-height: 250px;
  border-bottom: 1px solid rgba(134, 158, 198, 0.14);
  overflow: hidden;
}

.project-art__label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(3, 5, 8, 0.46);
  color: rgba(236, 241, 250, 0.94);
  font-size: 13px;
  letter-spacing: 0;
  border-radius: 8px;
}

.project-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 20px 24px;
  position: relative;
}

.project-meta::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(101, 214, 255, 0.42), transparent);
}

.project-meta p {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 650;
}

.project-meta span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.project-meta strong {
  color: rgba(148, 169, 255, 0.96);
  font-size: 42px;
  line-height: 1;
}

.project-card--brand .project-art {
  background:
    linear-gradient(135deg, rgba(101, 214, 255, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(10, 15, 25, 0.96), rgba(7, 10, 16, 0.96));
}

.project-card--commerce .project-art {
  background:
    linear-gradient(135deg, rgba(140, 243, 193, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(9, 14, 24, 0.98), rgba(6, 8, 14, 0.96));
}

.project-card--ai .project-art {
  background:
    linear-gradient(135deg, rgba(148, 169, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(11, 15, 28, 0.98), rgba(7, 8, 14, 0.96));
}

.project-card--motion .project-art {
  background:
    linear-gradient(135deg, rgba(231, 179, 109, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(10, 13, 20, 0.98), rgba(6, 8, 12, 0.96));
}

.project-art__grid {
  position: absolute;
  inset: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.45;
}

.project-art__block,
.project-art__screen,
.project-art__bar,
.project-art__node,
.project-art__timeline,
.project-art__frame {
  position: absolute;
  border-radius: 8px;
}

.project-art__block--1 {
  inset: 18% 58% 16% 9%;
  border: 1px solid rgba(101, 214, 255, 0.42);
  background: linear-gradient(180deg, rgba(101, 214, 255, 0.16), rgba(255, 255, 255, 0.02));
}

.project-art__block--2 {
  inset: 26% 24% 24% 41%;
  border: 1px solid rgba(134, 158, 198, 0.22);
  background: linear-gradient(180deg, rgba(140, 243, 193, 0.12), rgba(255, 255, 255, 0.02));
}

.project-art__block--3 {
  inset: 54% 16% 14% 55%;
  border: 1px solid rgba(134, 158, 198, 0.18);
  background: linear-gradient(180deg, rgba(148, 169, 255, 0.12), rgba(255, 255, 255, 0.02));
}

.project-art__screen {
  inset: 14% 13% 16% 13%;
  border: 1px solid rgba(101, 214, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 30%),
    linear-gradient(180deg, rgba(7, 11, 18, 0.72), rgba(12, 18, 31, 0.5));
}

.project-art__screen::before,
.project-art__screen::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  height: 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.project-art__screen::before {
  top: 18px;
}

.project-art__screen::after {
  top: 42px;
  width: 58%;
}

.project-art__bar--1 {
  left: 16%;
  right: 18%;
  bottom: 22%;
  height: 12px;
  background: linear-gradient(90deg, rgba(101, 214, 255, 0.22), rgba(148, 169, 255, 0.72));
}

.project-art__bar--2 {
  left: 16%;
  width: 28%;
  bottom: 36%;
  height: 8px;
  background: rgba(255, 255, 255, 0.22);
}

.project-art__bar--3 {
  left: 16%;
  width: 42%;
  bottom: 48%;
  height: 8px;
  background: rgba(140, 243, 193, 0.24);
}

.project-art__node {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(101, 214, 255, 0.6);
  background: rgba(101, 214, 255, 0.12);
}

.project-art__node::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 62px;
  height: 1px;
  background: linear-gradient(90deg, rgba(101, 214, 255, 0.8), transparent);
}

.project-art__node--a {
  left: 18%;
  top: 30%;
}

.project-art__node--b {
  left: 52%;
  top: 42%;
}

.project-art__node--c {
  left: 34%;
  top: 66%;
}

.project-art__node--b::after {
  width: 96px;
  transform: translateY(-50%) rotate(18deg);
}

.project-art__node--c::after {
  width: 110px;
  transform: translateY(-50%) rotate(-12deg);
}

.project-art__path {
  position: absolute;
  left: 22%;
  top: 34%;
  width: 48%;
  height: 48%;
  border-left: 1px solid rgba(101, 214, 255, 0.28);
  border-bottom: 1px solid rgba(148, 169, 255, 0.24);
  border-radius: 8px;
}

.project-art__timeline {
  left: 10%;
  right: 10%;
  top: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 169, 255, 0.7), transparent);
}

.project-art__timeline::before,
.project-art__timeline::after {
  content: "";
  position: absolute;
  top: -8px;
  width: 1px;
  height: 18px;
  background: rgba(148, 169, 255, 0.72);
}

.project-art__timeline::before {
  left: 25%;
}

.project-art__timeline::after {
  left: 68%;
}

.project-art__frame {
  top: 18%;
  width: 26%;
  height: 48%;
  border: 1px solid rgba(231, 179, 109, 0.3);
  background: rgba(255, 255, 255, 0.02);
}

.project-art__frame--1 {
  left: 14%;
}

.project-art__frame--2 {
  left: 38%;
  top: 28%;
}

.project-art__frame--3 {
  left: 64%;
}

.project-directory {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  isolation: isolate;
  padding: 48px;
  border: 1px solid rgba(101, 214, 255, 0.2);
  border-radius: 8px;
  transform-style: preserve-3d;
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(101, 214, 255, 0.18), transparent 26%),
    radial-gradient(circle at 50% 64%, rgba(101, 214, 255, 0.16), transparent 42%),
    linear-gradient(rgba(101, 214, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 214, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(5, 14, 24, 0.96), rgba(3, 7, 13, 0.98));
  background-size: auto, auto, 58px 58px, 58px 58px, auto;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 0 80px rgba(101, 214, 255, 0.06),
    0 34px 110px rgba(0, 0, 0, 0.42);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.project-directory::before,
.project-directory::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.project-directory::before {
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(101, 214, 255, 0.1) 19%, transparent 21% 100%),
    radial-gradient(circle at 18% 48%, rgba(101, 214, 255, 0.18), transparent 20%),
    radial-gradient(circle at 86% 50%, rgba(140, 243, 193, 0.12), transparent 22%);
  opacity: 0.8;
}

.project-directory::after {
  left: 4%;
  right: 4%;
  bottom: -28px;
  height: 160px;
  background:
    radial-gradient(ellipse at center, rgba(101, 214, 255, 0.2), transparent 62%),
    repeating-radial-gradient(ellipse at center, rgba(101, 214, 255, 0.38) 0 1px, transparent 1px 15px);
  opacity: 0.65;
  transform: perspective(520px) rotateX(68deg);
  animation: directoryFloor 5s ease-in-out infinite;
}

.project-directory:hover {
  border-color: rgba(101, 214, 255, 0.36);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 0 110px rgba(101, 214, 255, 0.08),
    0 40px 130px rgba(0, 0, 0, 0.52),
    0 0 52px rgba(101, 214, 255, 0.08);
}

.directory-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(101, 214, 255, 0.12), transparent);
  opacity: 0.32;
  transform: translateY(-100%);
  animation: directoryScan 6.4s linear infinite;
}

.directory-particles span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(101, 214, 255, 0.9);
  box-shadow: 0 0 18px rgba(101, 214, 255, 0.72);
  opacity: 0.7;
  animation: directoryParticle 3.8s ease-in-out infinite;
  animation-delay: var(--d);
}

.directory-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.directory-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(101, 214, 255, 0.72), transparent);
  box-shadow: 0 0 16px rgba(101, 214, 255, 0.42);
  opacity: 0.72;
  animation: directoryLinePulse 2.7s ease-in-out infinite;
}

.directory-line::before,
.directory-line::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(101, 214, 255, 0.9);
  box-shadow: 0 0 18px rgba(101, 214, 255, 0.8);
}

.directory-line::before {
  left: 0;
}

.directory-line::after {
  right: 0;
}

.directory-line--main {
  left: 21%;
  top: 29%;
  width: 28%;
  transform: rotate(22deg);
}

.directory-line--amazon {
  right: 20%;
  top: 29%;
  width: 29%;
  transform: rotate(-22deg);
}

.directory-line--video {
  right: 21%;
  top: 51%;
  width: 25%;
}

.directory-line--poster {
  left: 22%;
  top: 64%;
  width: 28%;
  transform: rotate(-18deg);
}

.directory-line--render {
  right: 20%;
  top: 67%;
  width: 28%;
  transform: rotate(20deg);
}

.directory-core {
  position: absolute;
  left: 50%;
  top: 44%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: min(34vw, 540px);
  min-width: 430px;
  min-height: 230px;
  padding: 34px 46px;
  transform: translate(-50%, -50%);
  clip-path: polygon(5% 0, 95% 0, 100% 11%, 100% 89%, 95% 100%, 5% 100%, 0 89%, 0 11%);
  border: 1px solid rgba(101, 214, 255, 0.74);
  background:
    linear-gradient(135deg, rgba(101, 214, 255, 0.26), transparent 30%),
    linear-gradient(180deg, rgba(10, 32, 48, 0.9), rgba(4, 16, 26, 0.94));
  box-shadow:
    inset 0 0 0 2px rgba(101, 214, 255, 0.18),
    inset 0 0 54px rgba(101, 214, 255, 0.16),
    0 0 42px rgba(101, 214, 255, 0.36);
  animation: directoryCorePulse 3.2s ease-in-out infinite;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    filter 0.22s ease;
}

.directory-core:hover {
  border-color: rgba(140, 243, 193, 0.86);
  filter: brightness(1.12);
  transform: translate(-50%, -50%) scale(1.025);
}

.directory-core::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(140, 243, 193, 0);
  pointer-events: none;
  transition: border-color 0.22s ease;
}

.directory-core:hover::before {
  border-color: rgba(140, 243, 193, 0.3);
}

.directory-core span {
  margin-bottom: 8px;
  color: rgba(140, 243, 193, 0.8);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.directory-core strong {
  color: rgba(248, 253, 255, 0.98);
  font-size: clamp(72px, 6.4vw, 112px);
  line-height: 1;
  text-shadow:
    0 0 18px rgba(101, 214, 255, 0.74),
    0 0 42px rgba(101, 214, 255, 0.42);
}

.directory-core i {
  display: block;
  width: 62%;
  height: 3px;
  margin-top: 22px;
  background: linear-gradient(90deg, transparent, rgba(101, 214, 255, 0.95), transparent);
  box-shadow: 0 0 18px rgba(101, 214, 255, 0.72);
}

.directory-node {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  min-width: 270px;
  min-height: 88px;
  padding: 16px 24px;
  color: rgba(247, 252, 255, 0.94);
  text-align: left;
  cursor: pointer;
  border: 1px solid rgba(101, 214, 255, 0.48);
  border-radius: 8px;
  clip-path: polygon(7% 0, 93% 0, 100% 22%, 100% 78%, 93% 100%, 7% 100%, 0 78%, 0 22%);
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(140, 243, 193, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(8, 29, 43, 0.9), rgba(3, 12, 20, 0.94));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 24px rgba(101, 214, 255, 0.18);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.directory-node::before,
.directory-node::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.directory-node::before {
  left: 16px;
  right: 16px;
  top: 9px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(101, 214, 255, 0.9), transparent);
  opacity: 0.68;
}

.directory-node::after {
  inset: 0;
  background: linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.16) 48%, transparent 54% 100%);
  transform: translateX(-110%);
  transition: transform 0.45s ease;
}

.directory-node:hover,
.directory-node.is-active {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(140, 243, 193, 0.74);
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(140, 243, 193, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(9, 38, 54, 0.96), rgba(4, 16, 26, 0.96));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 28px rgba(101, 214, 255, 0.3),
    0 0 54px rgba(140, 243, 193, 0.16);
}

.directory-node:hover::after,
.directory-node.is-active::after {
  transform: translateX(110%);
}

.directory-node span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: rgba(140, 243, 193, 0.95);
  font-size: 12px;
  border: 1px solid rgba(140, 243, 193, 0.28);
  border-radius: 8px;
  background: rgba(140, 243, 193, 0.08);
}

.directory-node strong {
  font-size: 34px;
  line-height: 1.1;
  text-shadow: 0 0 18px rgba(101, 214, 255, 0.48);
}

.directory-node--main {
  left: 6.8%;
  top: 18%;
}

.directory-node--amazon {
  right: 8%;
  top: 18%;
}

.directory-node--video {
  right: 6.8%;
  top: 44%;
  min-width: 210px;
}

.directory-node--poster {
  left: 7.4%;
  top: 63%;
}

.directory-node--render {
  right: 8%;
  top: 66%;
}

.directory-content {
  position: absolute;
  left: 50%;
  bottom: 92px;
  z-index: 5;
  width: min(58%, 780px);
  min-height: 142px;
  transform: translateX(-50%);
  border: 1px solid rgba(101, 214, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(101, 214, 255, 0.1), transparent 28%),
    rgba(3, 10, 17, 0.76);
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 18px 48px rgba(0, 0, 0, 0.34);
}

.project-unit-panel {
  display: none;
  padding: 22px 26px 24px;
}

.project-unit-panel.is-active {
  display: block;
  animation: projectPanelIn 0.34s ease both;
}

.project-unit-kicker {
  margin: 0 0 8px;
  color: rgba(140, 243, 193, 0.86);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.project-unit-panel h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.project-unit-panel p {
  max-width: 760px;
  margin: 0;
  color: rgba(219, 229, 242, 0.78);
  font-size: 15px;
  line-height: 1.8;
}

.project-unit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.project-unit-tags span {
  padding: 7px 10px;
  color: rgba(236, 245, 250, 0.86);
  font-size: 12px;
  border: 1px solid rgba(101, 214, 255, 0.22);
  border-radius: 8px;
  background: rgba(101, 214, 255, 0.06);
}

.directory-equalizer {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 7px;
  width: min(48%, 620px);
  height: 84px;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 16px rgba(101, 214, 255, 0.42));
}

.directory-equalizer span {
  width: 9px;
  height: var(--h);
  min-height: 12px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(140, 243, 193, 0.95), rgba(101, 214, 255, 0.76));
  animation: directoryBars 1.4s ease-in-out infinite;
  animation-delay: calc(var(--i) * -0.08s);
}

.section--thanks {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 80px 0;
}

.thanks-shell {
  position: relative;
  display: grid;
  min-height: calc(100vh - 160px);
  place-items: center;
  overflow: hidden;
  padding: 96px;
  text-align: center;
  border: 1px solid rgba(101, 214, 255, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(101, 214, 255, 0.16), transparent 28%),
    radial-gradient(circle at 50% 64%, rgba(140, 243, 193, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(6, 13, 22, 0.96), rgba(3, 6, 11, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 34px 100px rgba(0, 0, 0, 0.48);
}

.thanks-grid {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(101, 214, 255, 0.32) 0 1px, transparent 2px),
    radial-gradient(circle at 86% 20%, rgba(140, 243, 193, 0.26) 0 1px, transparent 2px),
    radial-gradient(circle at 24% 78%, rgba(101, 214, 255, 0.24) 0 1px, transparent 2px),
    radial-gradient(circle at 76% 76%, rgba(140, 243, 193, 0.22) 0 1px, transparent 2px),
    radial-gradient(circle at 50% 50%, rgba(101, 214, 255, 0.18), transparent 28%),
    linear-gradient(115deg, transparent 0 18%, rgba(101, 214, 255, 0.08) 18.08% 18.16%, transparent 18.28% 76%, rgba(140, 243, 193, 0.06) 76.08% 76.18%, transparent 76.32% 100%),
    linear-gradient(rgba(101, 214, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 214, 255, 0.055) 1px, transparent 1px);
  background-size:
    150px 150px,
    180px 180px,
    210px 210px,
    240px 240px,
    100% 100%,
    100% 100%,
    68px 68px,
    68px 68px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  opacity: 0.7;
  pointer-events: none;
  animation: thanksDataDrift 18s linear infinite;
}

.thanks-shell::before {
  content: "";
  position: absolute;
  inset: 24px;
  z-index: 1;
  border-radius: 6px;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(101, 214, 255, 0.42), rgba(101, 214, 255, 0)) left top / 340px 2px no-repeat,
    linear-gradient(180deg, rgba(101, 214, 255, 0.38), rgba(101, 214, 255, 0)) left top / 2px 220px no-repeat,
    linear-gradient(270deg, rgba(140, 243, 193, 0.34), rgba(140, 243, 193, 0)) right top / 340px 2px no-repeat,
    linear-gradient(180deg, rgba(140, 243, 193, 0.32), rgba(140, 243, 193, 0)) right top / 2px 220px no-repeat,
    linear-gradient(90deg, rgba(101, 214, 255, 0.34), rgba(101, 214, 255, 0)) left bottom / 420px 2px no-repeat,
    linear-gradient(0deg, rgba(101, 214, 255, 0.3), rgba(101, 214, 255, 0)) left bottom / 2px 190px no-repeat,
    linear-gradient(270deg, rgba(140, 243, 193, 0.28), rgba(140, 243, 193, 0)) right bottom / 420px 2px no-repeat,
    linear-gradient(0deg, rgba(140, 243, 193, 0.28), rgba(140, 243, 193, 0)) right bottom / 2px 190px no-repeat,
    radial-gradient(circle at 18% 50%, transparent 0 116px, rgba(101, 214, 255, 0.14) 117px 118px, transparent 119px),
    radial-gradient(circle at 82% 50%, transparent 0 116px, rgba(140, 243, 193, 0.12) 117px 118px, transparent 119px),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(101, 214, 255, 0.05) 35px 36px, transparent 37px 72px);
  opacity: 0.76;
  mix-blend-mode: screen;
  animation:
    thanksOrbit 8s ease-in-out infinite alternate,
    thanksDataDrift 22s linear infinite;
}

.thanks-shell .section-index,
.thanks-shell h2,
.thanks-shell p,
.thanks-shell .thanks-meta,
.thanks-shell .button {
  position: relative;
  z-index: 2;
}

.thanks-shell h2 {
  margin: 20px 0 10px;
  color: rgba(248, 253, 255, 0.98);
  font-size: clamp(92px, 9vw, 170px);
  line-height: 1;
  text-shadow:
    0 0 22px rgba(101, 214, 255, 0.68),
    0 0 72px rgba(101, 214, 255, 0.32);
}

.thanks-shell p:not(.section-index) {
  margin: 0;
  color: rgba(140, 243, 193, 0.78);
  font-size: 20px;
  letter-spacing: 0.18em;
}

.thanks-meta {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 54px 0 28px;
  color: rgba(228, 236, 249, 0.66);
  font-size: 14px;
}

.project-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at var(--fx-x) var(--fx-y), rgba(101, 214, 255, 0.16), transparent 26%),
    radial-gradient(circle at 70% 8%, rgba(101, 214, 255, 0.12), transparent 28%),
    radial-gradient(circle at 18% 46%, rgba(140, 243, 193, 0.08), transparent 24%),
    var(--bg);
}

.project-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(101, 214, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 214, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 92%);
}

.project-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 86% 18%, rgba(101, 214, 255, 0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 58%, rgba(140, 243, 193, 0.12) 0 1px, transparent 2px),
    linear-gradient(118deg, transparent 0 66%, rgba(101, 214, 255, 0.045) 66.1% 66.22%, transparent 66.34% 100%),
    linear-gradient(180deg, transparent 0 42%, rgba(101, 214, 255, 0.08) 42.2%, transparent 42.8% 100%),
    radial-gradient(circle at 50% 108%, rgba(101, 214, 255, 0.16), transparent 36%);
  background-size:
    132px 132px,
    210px 210px,
    100% 100%,
    100% 100%,
    100% 100%;
  animation: hudPageScan 8s linear infinite;
  opacity: 0.4;
  mix-blend-mode: screen;
}

.project-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1700px, calc(100% - 72px));
  margin: 0 auto;
  padding: 24px 0;
  backdrop-filter: blur(18px);
}

.project-topbar a {
  color: rgba(236, 241, 250, 0.86);
  text-decoration: none;
}

.project-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.project-brand span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(101, 214, 255, 0.32);
  border-radius: 8px;
  background: rgba(101, 214, 255, 0.08);
}

.project-back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(101, 214, 255, 0.24);
  border-radius: 8px;
  background: rgba(6, 12, 20, 0.68);
}

.project-page-main {
  width: min(1700px, calc(100% - 72px));
  margin: 0 auto;
  padding: 54px 0 92px;
}

.project-page-hero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 72px;
  border: 1px solid rgba(101, 214, 255, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(101, 214, 255, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(101, 214, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(9, 18, 30, 0.92), rgba(4, 9, 16, 0.96));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 30px 90px rgba(0, 0, 0, 0.42);
}

.project-page-hero,
.detail-index-hero,
.detail-long-head,
.visual-document,
.experience-panel,
.project-directory,
.thanks-shell,
.amazon-showcase,
.render-board,
.video-showcase {
  position: relative;
  isolation: isolate;
}

.project-page-hero::after,
.detail-index-hero::before,
.detail-long-head::before,
.visual-document::before,
.experience-panel .experience-stars,
.project-directory .directory-scan,
.thanks-shell::before,
.amazon-showcase::before,
.render-board::before,
.video-showcase::before {
  pointer-events: none;
}

.project-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 36%, rgba(255, 255, 255, 0.1) 44%, transparent 52% 100%);
  animation: cardSweep 8s linear infinite;
  pointer-events: none;
}

.project-page-hero > * {
  position: relative;
  z-index: 2;
}

.project-page-kicker {
  margin: 0 0 18px;
  color: rgba(140, 243, 193, 0.84);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.project-page-hero h1 {
  max-width: 980px;
  margin: 0;
  color: rgba(248, 253, 255, 0.98);
  font-size: clamp(76px, 7vw, 132px);
  line-height: 1;
  text-shadow: 0 0 34px rgba(101, 214, 255, 0.38);
}

.project-page-hero p:not(.project-page-kicker) {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(219, 229, 242, 0.74);
  font-size: 18px;
  line-height: 1.8;
}

.project-page-hero p.project-page-subtitle,
.detail-index-hero p.project-page-subtitle,
.detail-long-head p.project-page-subtitle {
  max-width: 960px;
  margin: 28px 0 0;
  color: rgba(219, 229, 242, 0.82);
  font-size: clamp(24px, 2.2vw, 42px);
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow:
    0 0 18px rgba(101, 214, 255, 0.34),
    0 0 46px rgba(140, 243, 193, 0.12);
}

.project-layout {
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  gap: 28px;
  margin-top: 28px;
}

.project-info-panel,
.project-gallery {
  border: 1px solid rgba(101, 214, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(101, 214, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(8, 16, 27, 0.88), rgba(4, 8, 15, 0.94));
}

.project-info-panel {
  position: sticky;
  top: 112px;
  align-self: start;
  padding: 28px;
}

.project-info-panel h2,
.project-gallery h2 {
  margin: 0 0 18px;
  font-size: 30px;
}

.project-info-panel p {
  margin: 0;
  color: rgba(219, 229, 242, 0.72);
  font-size: 15px;
  line-height: 1.8;
}

.project-info-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.project-info-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(101, 214, 255, 0.14);
}

.project-info-list span {
  color: rgba(219, 229, 242, 0.58);
}

.project-info-list strong {
  color: rgba(248, 253, 255, 0.92);
  text-align: right;
}

.project-gallery {
  padding: 28px;
}

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

.project-media-slot {
  position: relative;
  display: grid;
  min-height: 320px;
  place-items: center;
  overflow: hidden;
  color: rgba(219, 229, 242, 0.58);
  border: 1px dashed rgba(101, 214, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(rgba(101, 214, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 214, 255, 0.055) 1px, transparent 1px),
    rgba(101, 214, 255, 0.035);
  background-size: 42px 42px;
}

.project-media-slot--wide {
  grid-column: 1 / -1;
  min-height: 460px;
}

.project-media-slot span {
  position: relative;
  z-index: 2;
  padding: 10px 14px;
  border: 1px solid rgba(101, 214, 255, 0.18);
  border-radius: 8px;
  background: rgba(3, 8, 14, 0.72);
}

.project-next {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.project-next-card {
  min-height: 86px;
  padding: 18px;
  color: rgba(236, 241, 250, 0.9);
  text-decoration: none;
  border: 1px solid rgba(101, 214, 255, 0.18);
  border-radius: 8px;
  background: rgba(101, 214, 255, 0.045);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.project-next-card:hover,
.project-next-card.is-current {
  transform: translateY(-4px);
  border-color: rgba(140, 243, 193, 0.46);
  background: rgba(140, 243, 193, 0.075);
}

.project-next-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(140, 243, 193, 0.78);
  font-size: 12px;
}

.detail-index-main {
  padding-top: 30px;
}

.detail-index-hero {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 58px 66px;
  border: 1px solid rgba(101, 214, 255, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(101, 214, 255, 0.18), transparent 28%),
    linear-gradient(rgba(101, 214, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 214, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 18, 30, 0.92), rgba(4, 8, 15, 0.96));
  background-size: auto, 58px 58px, 58px 58px, auto;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 30px 90px rgba(0, 0, 0, 0.42);
}

.detail-index-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.1) 45%, transparent 52% 100%);
  animation: cardSweep 8s linear infinite;
  pointer-events: none;
}

.detail-index-hero > * {
  position: relative;
  z-index: 2;
}

.detail-index-hero h1 {
  margin: 0;
  color: rgba(248, 253, 255, 0.98);
  font-size: clamp(88px, 8vw, 148px);
  line-height: 1;
  text-shadow:
    0 0 22px rgba(101, 214, 255, 0.62),
    0 0 70px rgba(101, 214, 255, 0.26);
}

.detail-index-hero p:not(.project-page-kicker) {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(219, 229, 242, 0.74);
  font-size: 18px;
  line-height: 1.8;
}

.detail-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 70px 78px;
  margin-top: 78px;
}

.detail-index-card {
  position: relative;
  display: block;
  height: 620px;
  overflow: hidden;
  color: rgba(248, 253, 255, 0.94);
  text-decoration: none;
  border: 1px solid rgba(101, 214, 255, 0.28);
  border-radius: 96px;
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(101, 214, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(9, 25, 38, 0.96), rgba(4, 10, 18, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    inset 0 0 50px rgba(101, 214, 255, 0.06),
    0 24px 72px rgba(0, 0, 0, 0.42);
  transform-style: preserve-3d;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    filter 0.24s ease;
}

.detail-index-card::before,
.detail-index-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.detail-index-card::before {
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(3, 8, 14, 0.02) 0 62%, rgba(3, 8, 14, 0.82) 100%),
    linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.16) 47%, transparent 55% 100%);
  transform: translateX(-110%);
  transition: transform 0.55s ease;
}

.detail-index-card::after {
  inset: 18px;
  z-index: 4;
  border: 1px solid rgba(101, 214, 255, 0.18);
  border-radius: 78px;
  box-shadow: inset 0 0 28px rgba(101, 214, 255, 0.05);
}

.detail-index-card:hover {
  border-color: rgba(140, 243, 193, 0.68);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.055),
    inset 0 0 62px rgba(101, 214, 255, 0.1),
    0 32px 92px rgba(0, 0, 0, 0.56),
    0 0 44px rgba(101, 214, 255, 0.18);
  filter: brightness(1.08);
}

.detail-index-card:hover::before {
  transform: translateX(110%);
}

.detail-index-card__num {
  position: absolute;
  left: 50%;
  top: -3px;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: rgba(3, 10, 15, 0.92);
  font-size: 18px;
  font-weight: 700;
  border: 1px solid rgba(140, 243, 193, 0.6);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(216, 246, 248, 0.92), rgba(101, 214, 255, 0.76));
  box-shadow:
    0 0 20px rgba(101, 214, 255, 0.42),
    0 10px 24px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
}

.detail-index-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  filter: saturate(0.92) contrast(1.02) brightness(0.82);
  transition:
    transform 0.55s ease,
    filter 0.35s ease;
}

.detail-index-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.04) contrast(1.08) brightness(0.94);
}

.detail-index-card__meta {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 36px;
  z-index: 7;
  padding: 18px 20px;
  border: 1px solid rgba(101, 214, 255, 0.18);
  border-radius: 8px;
  background: rgba(3, 9, 15, 0.72);
  backdrop-filter: blur(14px);
}

.detail-index-card__meta small {
  display: block;
  margin-bottom: 8px;
  color: rgba(140, 243, 193, 0.78);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.detail-index-card__meta strong {
  display: block;
  font-size: 26px;
}

.detail-view-nav {
  display: flex;
  gap: 10px;
}

.detail-view-main {
  width: min(1700px, calc(100% - 72px));
  margin: 0 auto;
  padding: 54px 0 92px;
}

.detail-view-stage {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(101, 214, 255, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(101, 214, 255, 0.14), transparent 28%),
    linear-gradient(rgba(101, 214, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 214, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 16, 27, 0.94), rgba(3, 7, 13, 0.98));
  background-size: auto, 64px 64px, 64px 64px, auto;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 30px 92px rgba(0, 0, 0, 0.44);
}

.detail-view-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.detail-view-copy h1 {
  margin: 0;
  color: rgba(248, 253, 255, 0.98);
  font-size: clamp(52px, 5.4vw, 92px);
  line-height: 1;
  text-shadow: 0 0 28px rgba(101, 214, 255, 0.38);
}

.detail-view-copy p:not(.project-page-kicker) {
  max-width: 420px;
  margin: 0;
  color: rgba(219, 229, 242, 0.68);
  line-height: 1.75;
}

.detail-view-frame {
  position: relative;
  margin: 0;
  overflow: visible;
  border: 1px solid rgba(101, 214, 255, 0.24);
  border-radius: 8px;
  background: rgba(3, 7, 12, 0.86);
  box-shadow: inset 0 0 52px rgba(101, 214, 255, 0.06);
}

.detail-view-frame img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
}

.detail-view-badge {
  position: sticky;
  top: 18px;
  left: 18px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 18px 0 -72px 18px;
  color: rgba(3, 10, 15, 0.92);
  font-size: 20px;
  font-weight: 800;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(216, 246, 248, 0.94), rgba(101, 214, 255, 0.76));
  box-shadow: 0 0 22px rgba(101, 214, 255, 0.46);
}

.detail-long-page {
  overflow-x: hidden;
}

.detail-long-topbar {
  align-items: flex-start;
}

.detail-long-main {
  width: min(1700px, calc(100% - 72px));
  margin: 0 auto;
  padding: 48px 0 120px;
}

.detail-long-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: end;
  margin: 0 auto 34px;
  padding: 34px 40px;
  border: 1px solid rgba(101, 214, 255, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 20%, rgba(101, 214, 255, 0.14), transparent 30%),
    linear-gradient(rgba(101, 214, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 214, 255, 0.045) 1px, transparent 1px),
    rgba(4, 10, 18, 0.82);
  background-size: auto, 54px 54px, 54px 54px, auto;
}

.detail-long-head h1 {
  margin: 0;
  color: rgba(248, 253, 255, 0.98);
  font-size: clamp(56px, 5.6vw, 96px);
  line-height: 1;
  text-shadow: 0 0 28px rgba(101, 214, 255, 0.38);
}

.detail-long-head p:not(.project-page-kicker) {
  margin: 0;
  color: rgba(219, 229, 242, 0.7);
  line-height: 1.8;
}

.detail-long-frame {
  position: relative;
  display: block;
  width: min(790px, calc(100vw - 72px));
  margin: 0 auto;
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(101, 214, 255, 0.26);
  border-radius: 8px;
  background: rgba(3, 7, 12, 0.88);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.48),
    0 0 46px rgba(101, 214, 255, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.detail-long-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(101, 214, 255, 0.22), transparent 12%, transparent 88%, rgba(101, 214, 255, 0.16));
  pointer-events: none;
}

.detail-long-image {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.main-visual-page {
  overflow-x: hidden;
}

.main-visual-main {
  padding-top: 34px;
}

.main-visual-hero {
  min-height: 360px;
}

.visual-document {
  max-width: 1480px;
  margin: 82px auto 0;
  padding: 64px 46px 72px;
  border: 1px solid rgba(101, 214, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(rgba(101, 214, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 214, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 12% 8%, rgba(101, 214, 255, 0.14), transparent 28%),
    radial-gradient(circle at 88% 54%, rgba(140, 243, 193, 0.1), transparent 26%),
    rgba(4, 9, 16, 0.72);
  background-size:
    42px 42px,
    42px 42px,
    auto,
    auto,
    auto;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    0 34px 110px rgba(0, 0, 0, 0.34);
}

.visual-doc-title {
  margin: 0 0 48px;
  color: rgba(248, 253, 255, 0.98);
  font-size: clamp(72px, 6.8vw, 126px);
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow:
    0 0 24px rgba(101, 214, 255, 0.44),
    0 0 70px rgba(101, 214, 255, 0.16);
}

.visual-doc-title--main {
  margin-top: 86px;
}

.visual-doc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 86px;
  row-gap: 56px;
  align-items: center;
}

.visual-doc-grid--air {
  margin-top: 0;
}

.visual-doc-grid--bread {
  margin-top: 66px;
}

.visual-doc-card {
  position: relative;
  aspect-ratio: 1 / 1.28;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  border: 1px solid rgba(101, 214, 255, 0.24);
  border-radius: 32px;
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(101, 214, 255, 0.18), transparent 32%),
    rgba(10, 18, 29, 0.86);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 74px rgba(0, 0, 0, 0.34);
  transform-style: preserve-3d;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease;
}

.visual-doc-card::before,
.visual-doc-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.visual-doc-card::before {
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, transparent 0 58%, rgba(3, 8, 14, 0.76) 100%),
    linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.16) 47%, transparent 55% 100%);
  transform: translateX(-112%);
  transition: transform 0.55s ease;
}

.visual-doc-card::after {
  inset: 14px;
  z-index: 4;
  border: 1px solid rgba(101, 214, 255, 0.16);
  border-radius: 24px;
  box-shadow: inset 0 0 30px rgba(101, 214, 255, 0.05);
}

.visual-doc-card:hover {
  border-color: rgba(140, 243, 193, 0.62);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 32px 88px rgba(0, 0, 0, 0.48),
    0 0 44px rgba(101, 214, 255, 0.16);
  filter: brightness(1.08);
}

.visual-doc-card:hover::before {
  transform: translateX(112%);
}

.visual-doc-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04) brightness(0.86);
  transition:
    transform 0.5s ease,
    filter 0.35s ease;
}

.visual-doc-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.06) contrast(1.08) brightness(0.98);
}

.visual-doc-card span {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: rgba(248, 253, 255, 0.96);
  font-size: 13px;
  border: 1px solid rgba(140, 243, 193, 0.42);
  border-radius: 999px;
  background: rgba(4, 10, 18, 0.7);
  box-shadow: 0 0 24px rgba(101, 214, 255, 0.22);
}

.visual-doc-label {
  min-height: 260px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: rgba(248, 253, 255, 0.96);
  font-size: clamp(54px, 5vw, 92px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  text-shadow:
    0 0 24px rgba(101, 214, 255, 0.38),
    0 0 70px rgba(140, 243, 193, 0.12);
}

.visual-doc-label span {
  display: block;
}

.visual-doc-rule {
  width: 76%;
  height: 2px;
  margin: 74px auto 0;
  background: linear-gradient(90deg, transparent, rgba(140, 243, 193, 0.54), transparent);
  box-shadow: 0 0 22px rgba(101, 214, 255, 0.18);
}

.visual-section {
  margin-top: 72px;
}

.visual-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.visual-section-title h2 {
  margin: 0;
  color: rgba(248, 253, 255, 0.98);
  font-size: clamp(68px, 7vw, 126px);
  line-height: 0.95;
  text-shadow:
    0 0 24px rgba(101, 214, 255, 0.48),
    0 0 70px rgba(101, 214, 255, 0.18);
}

.visual-grid,
.visual-product-grid {
  display: grid;
  gap: 34px;
}

.visual-grid--cars {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.visual-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  color: rgba(248, 253, 255, 0.94);
  border: 1px solid rgba(101, 214, 255, 0.24);
  border-radius: 32px;
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(101, 214, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(9, 23, 36, 0.94), rgba(3, 8, 15, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 24px 72px rgba(0, 0, 0, 0.38);
  transform-style: preserve-3d;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    filter 0.24s ease;
}

.visual-card::before,
.visual-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.visual-card::before {
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, transparent 0 58%, rgba(3, 8, 14, 0.76) 100%),
    linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.16) 47%, transparent 55% 100%);
  transform: translateX(-112%);
  transition: transform 0.55s ease;
}

.visual-card::after {
  inset: 14px;
  z-index: 4;
  border: 1px solid rgba(101, 214, 255, 0.16);
  border-radius: 24px;
  box-shadow: inset 0 0 30px rgba(101, 214, 255, 0.05);
}

.visual-card:hover {
  border-color: rgba(140, 243, 193, 0.62);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 32px 88px rgba(0, 0, 0, 0.48),
    0 0 44px rgba(101, 214, 255, 0.16);
  filter: brightness(1.08);
}

.visual-card:hover::before {
  transform: translateX(112%);
}

.visual-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04) brightness(0.86);
  transition:
    transform 0.5s ease,
    filter 0.28s ease;
}

.visual-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.06) contrast(1.08) brightness(0.98);
}

.visual-card span {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: rgba(3, 10, 15, 0.92);
  font-weight: 800;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(216, 246, 248, 0.94), rgba(101, 214, 255, 0.78));
  box-shadow: 0 0 20px rgba(101, 214, 255, 0.44);
}

.visual-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 54px;
  align-items: center;
  margin-top: 64px;
}

.visual-product--left-label {
  grid-template-columns: 320px minmax(0, 1fr);
}

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

.visual-product-grid .visual-card {
  min-height: 330px;
}

.visual-card--large {
  min-height: 390px;
}

.visual-product-name {
  position: relative;
  min-height: 300px;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 34px;
  border: 1px solid rgba(101, 214, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(rgba(101, 214, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 214, 255, 0.045) 1px, transparent 1px),
    rgba(4, 10, 18, 0.72);
  background-size: 46px 46px;
}

.visual-product-name span,
.visual-product-name strong {
  color: rgba(248, 253, 255, 0.96);
  font-size: clamp(48px, 4.8vw, 82px);
  line-height: 1;
  font-weight: 700;
  text-shadow: 0 0 24px rgba(101, 214, 255, 0.34);
}

.visual-product-name em {
  color: rgba(140, 243, 193, 0.82);
  font-size: 20px;
  font-style: normal;
}

.visual-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 42px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease;
}

.visual-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.visual-lightbox__backdrop {
  position: absolute;
  inset: 0;
  cursor: zoom-out;
  border: 0;
  background: rgba(1, 4, 9, 0.84);
  backdrop-filter: blur(18px);
}

.visual-lightbox__panel {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  width: min(1180px, calc(100vw - 84px));
  max-height: calc(100vh - 84px);
  padding: 18px;
  border: 1px solid rgba(101, 214, 255, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0, rgba(101, 214, 255, 0.16), transparent 36%),
    rgba(4, 10, 18, 0.96);
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.6),
    0 0 54px rgba(101, 214, 255, 0.16);
  transform: scale(0.96) translateY(18px);
  transition: transform 0.22s ease;
}

.visual-lightbox.is-open .visual-lightbox__panel {
  transform: scale(1) translateY(0);
}

.visual-lightbox__panel--nav {
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  width: min(1280px, calc(100vw - 84px));
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.visual-lightbox__content {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(101, 214, 255, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0, rgba(101, 214, 255, 0.16), transparent 36%),
    rgba(5, 11, 19, 0.94);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.58),
    0 0 44px rgba(101, 214, 255, 0.16);
}

.visual-lightbox__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(236, 241, 250, 0.9);
}

.visual-lightbox__topbar span {
  color: rgba(140, 243, 193, 0.84);
}

.visual-lightbox__close {
  min-height: 38px;
  padding: 0 14px;
  color: rgba(248, 253, 255, 0.92);
  cursor: pointer;
  border: 1px solid rgba(101, 214, 255, 0.28);
  border-radius: 8px;
  background: rgba(101, 214, 255, 0.08);
}

.visual-lightbox__nav {
  position: relative;
  width: 56px;
  height: 76px;
  color: rgba(248, 253, 255, 0.92);
  cursor: pointer;
  border: 1px solid rgba(101, 214, 255, 0.28);
  border-radius: 8px;
  background: rgba(101, 214, 255, 0.08);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.visual-lightbox__nav:hover {
  transform: translateY(-2px);
  border-color: rgba(140, 243, 193, 0.52);
  background: rgba(140, 243, 193, 0.12);
}

.visual-lightbox__nav::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  border-top: 2px solid rgba(140, 243, 193, 0.92);
  border-right: 2px solid rgba(140, 243, 193, 0.92);
}

.visual-lightbox__nav--prev::before {
  transform: translate(-38%, -50%) rotate(-135deg);
}

.visual-lightbox__nav--next::before {
  transform: translate(-62%, -50%) rotate(45deg);
}

.visual-lightbox img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 170px);
  object-fit: contain;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
}

body.is-lightbox-open {
  overflow: hidden;
}

.amazon-page {
  overflow-x: hidden;
}

.amazon-main {
  padding-top: 34px;
}

.amazon-hero {
  min-height: 360px;
}

.amazon-showcase {
  margin-top: 84px;
}

.amazon-product-label {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.amazon-product-label--right {
  text-align: right;
}

.amazon-product-label h2 {
  margin: 0;
  color: rgba(248, 253, 255, 0.98);
  font-size: clamp(58px, 6vw, 112px);
  line-height: 0.95;
  text-shadow:
    0 0 24px rgba(101, 214, 255, 0.48),
    0 0 70px rgba(101, 214, 255, 0.18);
}

.amazon-layout {
  display: grid;
  gap: 46px;
  align-items: start;
}

.amazon-layout--left-long {
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.45fr);
}

.amazon-layout--right-long {
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.95fr);
}

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

.amazon-square-grid--right {
  padding-top: 0;
}

.amazon-square-grid--left {
  padding-top: 46px;
}

.amazon-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  color: rgba(248, 253, 255, 0.94);
  border: 1px solid rgba(101, 214, 255, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(101, 214, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(9, 23, 36, 0.94), rgba(3, 8, 15, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 24px 72px rgba(0, 0, 0, 0.38);
  transform-style: preserve-3d;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    filter 0.24s ease;
}

.amazon-card::before,
.amazon-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.amazon-card::before {
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, transparent 0 58%, rgba(3, 8, 14, 0.76) 100%),
    linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.16) 47%, transparent 55% 100%);
  transform: translateX(-112%);
  transition: transform 0.55s ease;
}

.amazon-card::after {
  inset: 14px;
  z-index: 4;
  border: 1px solid rgba(101, 214, 255, 0.16);
  border-radius: 6px;
  box-shadow: inset 0 0 30px rgba(101, 214, 255, 0.05);
}

.amazon-card:hover {
  border-color: rgba(140, 243, 193, 0.62);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 32px 88px rgba(0, 0, 0, 0.48),
    0 0 44px rgba(101, 214, 255, 0.16);
  filter: brightness(1.08);
}

.amazon-card:hover::before {
  transform: translateX(112%);
}

.amazon-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04) brightness(0.86);
  transition:
    transform 0.5s ease,
    filter 0.28s ease;
}

.amazon-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.08) brightness(0.98);
}

.amazon-card span {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 6;
  min-width: 54px;
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0 12px;
  color: rgba(3, 10, 15, 0.92);
  font-weight: 800;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(216, 246, 248, 0.94), rgba(101, 214, 255, 0.78));
  box-shadow: 0 0 20px rgba(101, 214, 255, 0.44);
}

.amazon-card--long {
  min-height: 960px;
}

.amazon-card--long img {
  object-position: top center;
}

.amazon-card--square {
  aspect-ratio: 1 / 1;
}

.amazon-card--slot-2,
.amazon-card--slot-5 {
  transform: translateY(44px);
}

.amazon-card--slot-3,
.amazon-card--slot-6 {
  transform: translateY(-18px);
}

.render-page {
  overflow-x: hidden;
}

.render-main {
  padding-top: 34px;
}

.render-hero {
  min-height: 360px;
}

.render-board {
  margin-top: 72px;
  border: 1px solid rgba(101, 214, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0, rgba(101, 214, 255, 0.12), transparent 32%),
    linear-gradient(rgba(101, 214, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 214, 255, 0.045) 1px, transparent 1px),
    rgba(4, 10, 18, 0.68);
  background-size: auto, 58px 58px, 58px 58px, auto;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 30px 92px rgba(0, 0, 0, 0.36);
}

.render-row {
  position: relative;
  padding: 42px;
}

.render-row + .render-row {
  border-top: 1px solid rgba(101, 214, 255, 0.2);
}

.render-row + .render-row::before {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(140, 243, 193, 0.52), transparent);
}

.render-row__label {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.render-row__label h2 {
  margin: 0;
  color: rgba(248, 253, 255, 0.98);
  font-size: clamp(38px, 4vw, 72px);
  line-height: 1;
  text-shadow: 0 0 24px rgba(101, 214, 255, 0.34);
}

.render-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px minmax(0, 1fr) 104px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.render-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 0;
  color: rgba(248, 253, 255, 0.94);
  cursor: pointer;
  border: 1px solid rgba(101, 214, 255, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(101, 214, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(9, 23, 36, 0.94), rgba(3, 8, 15, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 22px 64px rgba(0, 0, 0, 0.36);
  transform-style: preserve-3d;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    filter 0.24s ease;
}

.render-card::before,
.render-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.render-card::before {
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, transparent 0 58%, rgba(3, 8, 14, 0.74) 100%),
    linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.16) 47%, transparent 55% 100%);
  transform: translateX(-112%);
  transition: transform 0.55s ease;
}

.render-card::after {
  inset: 14px;
  z-index: 4;
  border: 1px solid rgba(101, 214, 255, 0.16);
  border-radius: 20px;
  box-shadow: inset 0 0 30px rgba(101, 214, 255, 0.05);
}

.render-card:hover {
  border-color: rgba(140, 243, 193, 0.62);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 30px 84px rgba(0, 0, 0, 0.48),
    0 0 42px rgba(101, 214, 255, 0.16);
  filter: brightness(1.08);
}

.render-card:hover::before {
  transform: translateX(112%);
}

.render-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04) brightness(0.86);
  transition:
    transform 0.5s ease,
    filter 0.28s ease;
}

.render-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.06) contrast(1.08) brightness(0.98);
}

.render-card span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 6;
  min-height: 40px;
  display: inline-grid;
  place-items: center;
  padding: 0 14px;
  color: rgba(3, 10, 15, 0.92);
  font-weight: 800;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(216, 246, 248, 0.94), rgba(101, 214, 255, 0.78));
  box-shadow: 0 0 20px rgba(101, 214, 255, 0.44);
}

.render-arrow {
  position: relative;
  display: block;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(101, 214, 255, 0.9));
  box-shadow: 0 0 24px rgba(101, 214, 255, 0.42);
  animation: renderArrowFlow 1.8s ease-in-out infinite;
}

.render-arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 26px solid transparent;
  border-bottom: 26px solid transparent;
  border-left: 38px solid rgba(63, 153, 255, 0.95);
  filter: drop-shadow(0 0 14px rgba(101, 214, 255, 0.54));
  transform: translateY(-50%);
}

@keyframes renderArrowFlow {
  0%,
  100% {
    opacity: 0.62;
    transform: translateX(-4px);
  }

  50% {
    opacity: 1;
    transform: translateX(4px);
  }
}

.poster-page {
  overflow-x: hidden;
}

.poster-main {
  padding-top: 34px;
}

.poster-hero {
  min-height: 360px;
}

.poster-section {
  margin-top: 82px;
}

.poster-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.poster-section__head h2 {
  margin: 0;
  color: rgba(248, 253, 255, 0.98);
  font-size: clamp(58px, 6vw, 112px);
  line-height: 0.95;
  text-shadow:
    0 0 24px rgba(101, 214, 255, 0.48),
    0 0 70px rgba(101, 214, 255, 0.18);
}

.poster-rail {
  position: relative;
  overflow: hidden;
  padding: 38px 0 54px;
  border: 1px solid rgba(101, 214, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0, rgba(101, 214, 255, 0.12), transparent 34%),
    linear-gradient(rgba(101, 214, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 214, 255, 0.045) 1px, transparent 1px),
    rgba(4, 10, 18, 0.68);
  background-size: auto, 58px 58px, 58px 58px, auto;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 28px 84px rgba(0, 0, 0, 0.34);
}

.poster-rail::before,
.poster-rail::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 6;
  width: 130px;
  pointer-events: none;
}

.poster-rail::before {
  left: 0;
  background: linear-gradient(90deg, rgba(4, 10, 18, 0.96), transparent);
}

.poster-rail::after {
  right: 0;
  background: linear-gradient(270deg, rgba(4, 10, 18, 0.96), transparent);
}

.poster-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: posterScroll 28s linear infinite;
}

.poster-rail--reverse .poster-track {
  animation-name: posterScrollReverse;
}

.poster-rail:hover .poster-track {
  animation-play-state: paused;
}

.poster-card {
  position: relative;
  width: 250px;
  height: 380px;
  flex: 0 0 auto;
  margin-left: -54px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  color: rgba(248, 253, 255, 0.94);
  border: 1px solid rgba(101, 214, 255, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(101, 214, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(9, 23, 36, 0.94), rgba(3, 8, 15, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 22px 64px rgba(0, 0, 0, 0.38);
  transform-style: preserve-3d;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    filter 0.24s ease;
}

.poster-card:nth-child(6n + 1),
.poster-card:nth-child(6n + 6) {
  opacity: 0.58;
  transform: translateY(18px) scale(0.94);
}

.poster-card:nth-child(6n + 2),
.poster-card:nth-child(6n + 5) {
  opacity: 0.78;
  transform: translateY(4px) scale(0.98);
}

.poster-card:nth-child(6n + 3),
.poster-card:nth-child(6n + 4) {
  z-index: 2;
}

.poster-card:first-child {
  margin-left: 72px;
}

.poster-card::before,
.poster-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.poster-card::before {
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, transparent 0 58%, rgba(3, 8, 14, 0.74) 100%),
    linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.16) 47%, transparent 55% 100%);
  transform: translateX(-112%);
  transition: transform 0.55s ease;
}

.poster-card::after {
  inset: 12px;
  z-index: 4;
  border: 1px solid rgba(101, 214, 255, 0.16);
  border-radius: 6px;
  box-shadow: inset 0 0 30px rgba(101, 214, 255, 0.05);
}

.poster-card:hover {
  z-index: 8;
  opacity: 1;
  border-color: rgba(140, 243, 193, 0.62);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 30px 84px rgba(0, 0, 0, 0.48),
    0 0 42px rgba(101, 214, 255, 0.16);
  filter: brightness(1.08);
}

.poster-card:hover::before {
  transform: translateX(112%);
}

.poster-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04) brightness(0.86);
  transition:
    transform 0.5s ease,
    filter 0.28s ease;
}

.poster-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.06) contrast(1.08) brightness(0.98);
}

.poster-card span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: rgba(3, 10, 15, 0.92);
  font-weight: 800;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(216, 246, 248, 0.94), rgba(101, 214, 255, 0.78));
  box-shadow: 0 0 20px rgba(101, 214, 255, 0.44);
}

.poster-lightbox {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 42px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease;
}

.poster-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.poster-lightbox__backdrop {
  position: absolute;
  inset: 0;
  cursor: zoom-out;
  border: 0;
  background: rgba(1, 4, 9, 0.84);
  backdrop-filter: blur(18px);
}

.poster-lightbox__panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  gap: 18px;
  align-items: center;
  width: min(1180px, calc(100vw - 84px));
  max-height: calc(100vh - 84px);
}

.poster-lightbox__content {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(101, 214, 255, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0, rgba(101, 214, 255, 0.16), transparent 36%),
    rgba(4, 10, 18, 0.96);
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.6),
    0 0 54px rgba(101, 214, 255, 0.16);
  transform: scale(0.96) translateY(18px);
  transition: transform 0.22s ease;
}

.poster-lightbox.is-open .poster-lightbox__content {
  transform: scale(1) translateY(0);
}

.poster-lightbox__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(236, 241, 250, 0.9);
}

.poster-lightbox__topbar span {
  color: rgba(140, 243, 193, 0.84);
}

.poster-lightbox__close,
.poster-lightbox__nav {
  color: rgba(248, 253, 255, 0.92);
  cursor: pointer;
  border: 1px solid rgba(101, 214, 255, 0.28);
  border-radius: 8px;
  background: rgba(101, 214, 255, 0.08);
}

.poster-lightbox__close {
  min-height: 38px;
  padding: 0 14px;
}

.poster-lightbox__nav {
  position: relative;
  width: 56px;
  height: 76px;
}

.poster-lightbox__nav::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  border-top: 2px solid rgba(140, 243, 193, 0.92);
  border-right: 2px solid rgba(140, 243, 193, 0.92);
}

.poster-lightbox__nav--prev::before {
  transform: translate(-38%, -50%) rotate(-135deg);
}

.poster-lightbox__nav--next::before {
  transform: translate(-62%, -50%) rotate(45deg);
}

.poster-lightbox img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 170px);
  object-fit: contain;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
}

.video-page {
  overflow-x: hidden;
}

.video-main {
  padding-top: 34px;
}

.video-hero {
  min-height: 380px;
}

.video-showcase {
  margin-top: 82px;
}

.video-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.video-section-head h2 {
  margin: 0;
  color: rgba(248, 253, 255, 0.98);
  font-size: 44px;
  letter-spacing: 0;
}

.video-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 24px;
  align-items: stretch;
}

.video-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 0;
  color: rgba(248, 253, 255, 0.94);
  cursor: pointer;
  border: 1px solid rgba(101, 214, 255, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(101, 214, 255, 0.22), transparent 30%),
    linear-gradient(145deg, rgba(9, 20, 34, 0.96), rgba(3, 7, 14, 0.98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  transform-style: preserve-3d;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease;
}

.video-card--wide {
  min-height: 620px;
}

.video-card::before,
.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.video-card::before {
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.14) 44%, transparent 54% 100%),
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.62));
  transform: translateX(-120%);
  transition: transform 0.72s ease;
}

.video-card::after {
  inset: 14px;
  border: 1px solid rgba(140, 243, 193, 0.18);
  border-radius: 6px;
  box-shadow: inset 0 0 32px rgba(101, 214, 255, 0.08);
}

.video-card:hover {
  border-color: rgba(140, 243, 193, 0.54);
  box-shadow:
    0 30px 86px rgba(0, 0, 0, 0.44),
    0 0 38px rgba(101, 214, 255, 0.2);
  filter: saturate(1.06);
}

.video-card:hover::before {
  transform: translateX(120%);
}

.video-card video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.76;
  filter: contrast(1.08) brightness(0.82);
  transform: scale(1.01);
  transition:
    transform 0.5s ease,
    opacity 0.35s ease,
    filter 0.35s ease;
}

.video-card:hover video {
  opacity: 0.96;
  filter: contrast(1.12) brightness(0.95);
  transform: scale(1.055);
}

.video-card__index,
.video-card__meta,
.video-card strong,
.video-card__play {
  position: absolute;
  z-index: 4;
}

.video-card__index {
  left: 24px;
  top: 22px;
  color: rgba(140, 243, 193, 0.86);
  font-size: 13px;
  letter-spacing: 0.22em;
}

.video-card__meta {
  left: 24px;
  bottom: 82px;
  color: rgba(140, 243, 193, 0.74);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.video-card strong {
  left: 24px;
  right: 24px;
  bottom: 30px;
  font-size: 30px;
  line-height: 1.2;
  text-align: left;
  letter-spacing: 0;
  text-shadow: 0 0 26px rgba(101, 214, 255, 0.38);
}

.video-card__play {
  right: 28px;
  top: 26px;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(140, 243, 193, 0.44);
  border-radius: 999px;
  background: rgba(4, 12, 22, 0.64);
  box-shadow: 0 0 28px rgba(101, 214, 255, 0.2);
}

.video-card__play::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 22px;
  border-left: 18px solid rgba(248, 253, 255, 0.92);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 135;
  display: grid;
  place-items: center;
  padding: 42px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.video-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-lightbox__backdrop {
  position: absolute;
  inset: 0;
  cursor: zoom-out;
  border: 0;
  background: rgba(1, 4, 9, 0.86);
  backdrop-filter: blur(18px);
}

.video-lightbox__panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  gap: 18px;
  align-items: center;
  width: min(1380px, calc(100vw - 84px));
  max-height: calc(100vh - 84px);
}

.video-lightbox__content {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(101, 214, 255, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0, rgba(101, 214, 255, 0.16), transparent 36%),
    rgba(5, 11, 19, 0.94);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.58),
    0 0 44px rgba(101, 214, 255, 0.16);
  transform: scale(0.96) translateY(16px);
  transition: transform 0.28s ease;
}

.video-lightbox.is-open .video-lightbox__content {
  transform: scale(1) translateY(0);
}

.video-lightbox__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(236, 241, 250, 0.9);
}

.video-lightbox__topbar span {
  color: rgba(140, 243, 193, 0.84);
}

.video-lightbox__close,
.video-lightbox__nav {
  color: rgba(248, 253, 255, 0.92);
  cursor: pointer;
  border: 1px solid rgba(101, 214, 255, 0.28);
  border-radius: 8px;
  background: rgba(101, 214, 255, 0.08);
}

.video-lightbox__close {
  min-height: 38px;
  padding: 0 14px;
}

.video-lightbox__nav {
  position: relative;
  width: 56px;
  height: 76px;
}

.video-lightbox__nav::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  border-top: 2px solid rgba(140, 243, 193, 0.92);
  border-right: 2px solid rgba(140, 243, 193, 0.92);
}

.video-lightbox__nav--prev::before {
  transform: translate(-38%, -50%) rotate(-135deg);
}

.video-lightbox__nav--next::before {
  transform: translate(-62%, -50%) rotate(45deg);
}

.video-lightbox video {
  display: block;
  width: 100%;
  max-height: calc(100vh - 170px);
  object-fit: contain;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.42);
}

@keyframes posterScroll {
  from {
    transform: translateX(0);
  }

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

@keyframes posterScrollReverse {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes directoryScan {
  0% {
    transform: translateY(-120%);
  }

  100% {
    transform: translateY(120%);
  }
}

@keyframes directoryParticle {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.7);
    opacity: 0.36;
  }

  50% {
    transform: translate3d(18px, -22px, 0) scale(1.25);
    opacity: 0.95;
  }
}

@keyframes directoryLinePulse {
  0%,
  100% {
    opacity: 0.46;
    filter: brightness(0.8);
  }

  50% {
    opacity: 0.98;
    filter: brightness(1.24);
  }
}

@keyframes directoryCorePulse {
  0%,
  100% {
    box-shadow:
      inset 0 0 0 2px rgba(101, 214, 255, 0.18),
      inset 0 0 54px rgba(101, 214, 255, 0.16),
      0 0 42px rgba(101, 214, 255, 0.32);
  }

  50% {
    box-shadow:
      inset 0 0 0 2px rgba(140, 243, 193, 0.24),
      inset 0 0 68px rgba(101, 214, 255, 0.24),
      0 0 70px rgba(101, 214, 255, 0.52);
  }
}

@keyframes directoryBars {
  0%,
  100% {
    height: calc(var(--h) * 0.62);
    opacity: 0.62;
  }

  50% {
    height: var(--h);
    opacity: 1;
  }
}

@keyframes directoryFloor {
  0%,
  100% {
    opacity: 0.46;
    transform: perspective(520px) rotateX(68deg) translateY(0);
  }

  50% {
    opacity: 0.72;
    transform: perspective(520px) rotateX(68deg) translateY(-12px);
  }
}

@keyframes projectPanelIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.strength-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 24px;
  min-height: 240px;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(101, 214, 255, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(11, 17, 29, 0.94), rgba(7, 10, 17, 0.96));
  border-color: rgba(101, 214, 255, 0.16);
}

.strength-card:hover {
  transform: translateY(-8px);
  border-color: rgba(140, 243, 193, 0.36);
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(140, 243, 193, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(13, 18, 31, 0.94), rgba(9, 12, 20, 0.94));
}

.strength-card__index {
  margin: 0 0 22px;
  color: rgba(140, 243, 193, 0.84);
  font-size: 14px;
  letter-spacing: 0;
}

.strength-card h3 {
  margin: 0 0 16px;
  font-size: 24px;
}

.strength-card span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.strength-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(101, 214, 255, 0.85), transparent);
  box-shadow: 0 0 24px rgba(101, 214, 255, 0.2);
  opacity: 0.5;
  pointer-events: none;
}

.contact-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 460px;
  gap: 26px;
  align-items: start;
}

.contact-copy {
  padding-right: 30px;
}

.contact-copy p {
  margin: 0;
  max-width: 760px;
  color: rgba(228, 236, 249, 0.84);
  font-size: 20px;
  line-height: 1.9;
}

.contact-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  gap: 14px;
  padding: 24px;
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(140, 243, 193, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(10, 16, 26, 0.94), rgba(7, 10, 17, 0.96));
  border-color: rgba(101, 214, 255, 0.18);
}

.contact-card div {
  padding: 18px 16px;
  border: 1px solid rgba(101, 214, 255, 0.14);
  background:
    linear-gradient(90deg, rgba(101, 214, 255, 0.06), transparent 40%),
    rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.contact-card div:hover {
  transform: translateX(-8px);
  border-color: rgba(101, 214, 255, 0.34);
  background: rgba(101, 214, 255, 0.06);
}

.contact-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.contact-card strong {
  display: block;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.closing-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 54px;
  padding-top: 20px;
  border-top: 1px solid rgba(134, 158, 198, 0.18);
  color: rgba(228, 236, 249, 0.66);
  font-size: 14px;
}

@media (max-width: 1500px) {
  body {
    min-width: 1280px;
  }

  .cover-title h1 {
    font-size: 92px;
  }

  .cover-title strong {
    font-size: 52px;
  }

  .cover-corner strong {
    font-size: 68px;
  }

  .cover-motto {
    font-size: 28px;
  }

  .section-head h2 {
    font-size: 42px;
  }

  .project-directory {
    min-height: 760px;
    padding: 40px;
  }

  .directory-core {
    width: 470px;
    min-width: 470px;
    min-height: 210px;
  }

  .directory-node {
    min-width: 232px;
    min-height: 78px;
  }

  .directory-node strong {
    font-size: 28px;
  }

  .directory-node--main,
  .directory-node--poster {
    left: 4.2%;
  }

  .directory-node--amazon,
  .directory-node--render {
    right: 4.6%;
  }

  .directory-node--video {
    right: 3.8%;
  }

  .about-grid {
    grid-template-columns: 360px minmax(0, 1fr) 320px;
  }

  .about-grid--intro {
    grid-template-columns: minmax(0, 1fr) minmax(440px, 0.72fr);
  }

  .about-collage,
  .about-card {
    min-height: 520px;
  }

  .intro-title {
    font-size: 38px;
  }

  .qr-card {
    left: 92px;
    top: 164px;
    width: 286px;
    height: 286px;
  }

  .collage-frame--back {
    left: 58px;
    width: 304px;
    height: 230px;
  }

  .collage-frame--front {
    left: 98px;
    width: 310px;
    height: 236px;
  }

  .intro-note {
    left: 286px;
    top: 236px;
    width: 332px;
    padding-left: 126px;
  }

  .intro-note strong {
    font-size: 40px;
  }
}

@media (max-width: 1280px) {
  body {
    min-width: 1180px;
  }

  .section-shell {
    width: calc(100% - 48px);
  }

  .project-directory {
    min-height: 720px;
    padding: 34px;
  }

  .directory-core {
    width: 420px;
    min-width: 420px;
    min-height: 190px;
  }

  .directory-core strong {
    font-size: 76px;
  }

  .directory-node {
    min-width: 202px;
    gap: 12px;
    padding: 14px 18px;
  }

  .directory-node span {
    width: 34px;
    height: 34px;
  }

  .directory-node strong {
    font-size: 24px;
  }

  .directory-content {
    width: min(64%, 720px);
  }

  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-grid--intro {
    grid-template-columns: 1fr;
  }

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

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

  .project-card--wide,
  .project-card--tall {
    grid-column: span 12;
  }
}

@media (max-width: 1100px) {
  body {
    min-width: 1024px;
  }

  .cover-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 18px;
  }

  .cover-stage {
    min-height: calc(100vh - 96px);
  }

  .cover-title h1 {
    font-size: 78px;
  }

  .cover-title strong {
    font-size: 44px;
  }
}

.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

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

.experience-panel,
.identity-panel,
.career-panel,
.project-directory,
.thanks-shell,
.project-page-hero,
.detail-index-hero,
.detail-long-head,
.visual-document,
.visual-doc-card,
.amazon-card,
.render-card,
.poster-card,
.video-card,
.detail-index-card,
.visual-lightbox__content,
.poster-lightbox__content,
.video-lightbox__content {
  border-color: var(--hud-line);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    inset 0 0 42px rgba(101, 214, 255, 0.035),
    0 24px 76px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(101, 214, 255, 0.06);
}

.visual-doc-card:hover,
.amazon-card:hover,
.render-card:hover,
.poster-card:hover,
.video-card:hover,
.detail-index-card:hover,
.project-next-card:hover,
.directory-node:hover {
  border-color: var(--hud-line-strong);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 0 46px rgba(101, 214, 255, 0.08),
    0 30px 90px rgba(0, 0, 0, 0.48),
    0 0 52px var(--hud-glow);
}

.project-page-hero,
.detail-index-hero,
.detail-long-head,
.visual-document,
.amazon-showcase,
.render-board,
.video-showcase,
.thanks-shell {
  overflow: hidden;
}

.project-page-hero::after,
.detail-index-hero::before,
.detail-long-head::before,
.visual-document::after,
.amazon-showcase::before,
.render-board::before,
.video-showcase::before,
.thanks-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(101, 214, 255, 0.13), transparent),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 12px);
  opacity: 0.22;
  transform: translateX(-100%);
  animation: hudPanelSweep 9s linear infinite;
  mix-blend-mode: screen;
}

.project-page-hero > *,
.detail-index-hero > *,
.detail-long-head > *,
.visual-document > *,
.amazon-showcase > *,
.render-board > *,
.video-showcase > *,
.thanks-shell > * {
  position: relative;
  z-index: 2;
}

.project-page-hero::after,
.detail-index-hero::before,
.detail-long-head::before {
  background:
    radial-gradient(circle at 77% 28%, rgba(101, 214, 255, 0.56) 0 1px, transparent 2px),
    radial-gradient(circle at 89% 68%, rgba(140, 243, 193, 0.42) 0 1px, transparent 2px),
    radial-gradient(circle at 76% 50%, transparent 0 62px, rgba(101, 214, 255, 0.2) 63px 64px, transparent 65px),
    linear-gradient(90deg, transparent 0 70%, rgba(101, 214, 255, 0.18) 70.1% 70.28%, transparent 70.42% 100%),
    linear-gradient(180deg, transparent 0 30%, rgba(140, 243, 193, 0.16) 30.1% 30.28%, transparent 30.44% 100%),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(101, 214, 255, 0.055) 29px 30px, transparent 31px 64px),
    linear-gradient(90deg, transparent, rgba(101, 214, 255, 0.12), transparent),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 12px);
  background-position:
    right 18% top 22%,
    right 8% bottom 26%,
    right 17% center,
    0 0,
    0 0,
    right 0 top 0,
    0 0,
    0 0;
  background-size:
    120px 120px,
    180px 180px,
    320px 260px,
    100% 100%,
    100% 100%,
    42% 100%,
    100% 100%,
    100% 100%;
  clip-path: polygon(58% 0, 100% 0, 100% 100%, 54% 100%);
  opacity: 0.42;
  animation:
    heroHudSlide 14s linear infinite,
    heroHudPulse 5.6s ease-in-out infinite alternate;
}

@keyframes scanline {
  0% {
    transform: translateY(-220px);
  }

  100% {
    transform: translateY(calc(100vh + 220px));
  }
}

@keyframes fxDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(140px, 90px, 0);
  }
}

@keyframes codeStreamFall {
  0% {
    transform: translateY(-52%);
  }

  100% {
    transform: translateY(18%);
  }
}

@keyframes codeScan {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

@keyframes hudPageScan {
  0% {
    transform: translateY(-34%);
  }

  100% {
    transform: translateY(34%);
  }
}

@keyframes hudPanelSweep {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(110%);
  }
}

@keyframes heroHudSlide {
  0% {
    transform: translate3d(-2%, -1%, 0);
    background-position:
      right 18% top 22%,
      right 8% bottom 26%,
      right 17% center,
      0 0,
      0 0,
      right 0 top 0,
      0 0,
      0 0;
  }

  100% {
    transform: translate3d(2%, 1%, 0);
    background-position:
      right 16% top 24%,
      right 10% bottom 24%,
      right 18% center,
      0 0,
      0 0,
      right 42px top 0,
      18% 0,
      0 18px;
  }
}

@keyframes heroHudPulse {
  0% {
    filter: brightness(0.82) saturate(0.9);
    opacity: 0.28;
  }

  100% {
    filter: brightness(1.16) saturate(1.22);
    opacity: 0.48;
  }
}

@keyframes thanksOrbit {
  0% {
    transform: translate3d(-6px, 4px, 0);
    filter: brightness(0.9);
  }

  100% {
    transform: translate3d(6px, -4px, 0);
    filter: brightness(1.18);
  }
}

@keyframes thanksDataDrift {
  0% {
    background-position:
      0 0,
      0 0,
      0 0,
      0 0,
      center,
      0 0,
      0 0,
      0 0;
  }

  100% {
    background-position:
      28px -18px,
      -20px 26px,
      18px 24px,
      -24px -16px,
      center,
      34px 0,
      0 68px,
      68px 0;
  }
}

@keyframes qrScan {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(390px);
  }
}

@keyframes floatDoodle {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(7deg);
  }
}

@keyframes cardSweep {
  0% {
    transform: translateX(-22%) rotate(8deg);
  }

  100% {
    transform: translateX(22%) rotate(8deg);
  }
}

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

  .fx-field {
    display: none;
  }

  .code-stream {
    display: none;
  }
}

.experience-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 58px;
  min-height: 760px;
  padding: 70px 84px 178px;
  overflow: hidden;
  border: 1px solid rgba(93, 227, 255, 0.42);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(65, 204, 255, 0.18), transparent 32%),
    radial-gradient(circle at 74% 18%, rgba(55, 133, 255, 0.22), transparent 22%),
    linear-gradient(180deg, rgba(5, 21, 40, 0.96), rgba(3, 11, 24, 0.98));
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 58px rgba(76, 218, 255, 0.12);
}

.experience-panel::before,
.experience-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.experience-panel::before {
  background:
    linear-gradient(rgba(87, 212, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(87, 212, 255, 0.08) 1px, transparent 1px),
    radial-gradient(rgba(102, 218, 255, 0.7) 1px, transparent 1px);
  background-size: 52px 52px, 52px 52px, 120px 120px;
  opacity: 0.44;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), transparent 86%);
}

.experience-panel::after {
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(114, 235, 255, 0.14) 48%, transparent 55%),
    radial-gradient(ellipse at 50% 108%, rgba(50, 210, 255, 0.34), transparent 45%);
  mix-blend-mode: screen;
  animation: cardSweep 7s linear infinite;
}

.experience-stars {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 12% 76%, rgba(101, 214, 255, 0.86) 0 2px, transparent 3px),
    radial-gradient(circle at 74% 42%, rgba(101, 214, 255, 0.7) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.8) 0 1px, transparent 2px),
    radial-gradient(circle at 58% 70%, rgba(140, 243, 193, 0.7) 0 1px, transparent 2px);
  animation: starDrift 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.identity-panel,
.career-panel {
  position: relative;
  z-index: 3;
  border: 2px solid rgba(91, 230, 255, 0.72);
  background: linear-gradient(180deg, rgba(9, 45, 76, 0.72), rgba(4, 18, 38, 0.82));
  box-shadow:
    inset 0 0 35px rgba(65, 204, 255, 0.13),
    0 0 34px rgba(65, 204, 255, 0.18);
}

.identity-panel {
  min-height: 570px;
  padding: 62px 56px 48px;
  clip-path: polygon(7% 0, 92% 0, 100% 8%, 100% 92%, 92% 100%, 7% 100%, 0 92%, 0 8%);
}

.identity-panel::before,
.career-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(91, 230, 255, 0.3);
  pointer-events: none;
}

.qr-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  margin: 0 auto 54px;
  padding: 20px;
  border: 1px solid rgba(122, 236, 255, 0.8);
  background: rgba(229, 253, 255, 0.96);
  border-radius: 8px;
  box-shadow:
    0 0 24px rgba(91, 230, 255, 0.4),
    inset 0 0 18px rgba(91, 230, 255, 0.12);
  cursor: pointer;
  overflow: visible;
}

.qr-orbit img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-orbit__ring {
  position: absolute;
  inset: -34px;
  border: 2px dashed rgba(91, 230, 255, 0.55);
  border-radius: 50%;
  animation: orbitSpin 8s linear infinite;
}

.qr-orbit:hover,
.qr-orbit.is-zoomed {
  transform: scale(1.08);
  box-shadow: 0 0 42px rgba(91, 230, 255, 0.58);
}

.identity-list {
  display: grid;
  gap: 24px;
  margin: 0;
}

.identity-list div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 8px;
}

.identity-list dt,
.identity-list dd {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 760;
  text-shadow: 0 0 18px rgba(91, 230, 255, 0.18);
}

.identity-list dd {
  color: rgba(234, 249, 255, 0.88);
  font-size: 19px;
  overflow-wrap: anywhere;
}

.career-panel {
  min-height: 570px;
  padding: 74px 88px 58px;
  border-radius: 64px 8px 64px 8px;
}

.career-panel h3 {
  margin: 0 0 74px;
  color: #ffffff;
  font-size: 52px;
  line-height: 1;
  font-weight: 800;
  text-shadow: 0 0 22px rgba(91, 230, 255, 0.32);
}

.career-pills {
  display: grid;
  gap: 42px;
  margin-bottom: 40px;
}

.career-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 80px;
  padding: 0 42px;
  border: 2px solid rgba(91, 230, 255, 0.82);
  border-radius: 999px;
  background: rgba(1, 18, 37, 0.62);
  color: #ffffff;
  box-shadow:
    inset 0 0 22px rgba(91, 230, 255, 0.12),
    0 0 28px rgba(91, 230, 255, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.career-pill:hover {
  transform: translateX(12px);
  box-shadow:
    inset 0 0 28px rgba(91, 230, 255, 0.18),
    0 0 42px rgba(91, 230, 255, 0.34);
}

.career-pill strong,
.career-pill span {
  font-size: 26px;
  line-height: 1.35;
  font-weight: 760;
}

.career-panel p {
  max-width: 880px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 28px;
  line-height: 1.65;
  font-weight: 720;
}

.career-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.career-metrics span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(91, 230, 255, 0.42);
  background: rgba(91, 230, 255, 0.08);
  color: rgba(234, 249, 255, 0.88);
  border-radius: 8px;
}

.career-metrics strong {
  color: #79edff;
  font-size: 24px;
}

.equalizer {
  position: absolute;
  z-index: 2;
  left: 80px;
  right: 80px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(32, 1fr);
  align-items: end;
  gap: 12px;
  height: 150px;
  pointer-events: none;
}

.equalizer::before {
  content: "";
  position: absolute;
  left: -80px;
  right: -80px;
  bottom: -28px;
  height: 220px;
  background:
    radial-gradient(ellipse at 50% 70%, rgba(91, 230, 255, 0.34), transparent 50%),
    repeating-radial-gradient(ellipse at 50% 100%, rgba(91, 230, 255, 0.24) 0 2px, transparent 2px 12px);
  opacity: 0.72;
  animation: wavePulse 4.5s ease-in-out infinite alternate;
}

.equalizer span {
  position: relative;
  z-index: 2;
  height: calc(22px + (var(--i) % 9) * 12px);
  background: linear-gradient(180deg, #88f5ff, #22b9ff);
  box-shadow: 0 0 18px rgba(91, 230, 255, 0.52);
  animation: equalize 1.2s ease-in-out infinite alternate;
  animation-delay: calc(var(--i) * -0.07s);
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes equalize {
  0% {
    transform: scaleY(0.58);
    opacity: 0.68;
  }

  100% {
    transform: scaleY(1.12);
    opacity: 1;
  }
}

@keyframes wavePulse {
  0% {
    transform: translateY(10px) scaleX(0.98);
  }

  100% {
    transform: translateY(-8px) scaleX(1.02);
  }
}

@keyframes starDrift {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0.65;
  }

  100% {
    transform: translate3d(18px, -12px, 0);
    opacity: 1;
  }
}

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

  .code-stream {
    display: none;
  }
}
