:root {
  color-scheme: dark;
  --bg: #000;
  --bg-deep: #000;
  --surface: #000;
  --surface-2: #000;
  --surface-3: #000;
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.72);
  --dim: rgba(255, 255, 255, 0.46);
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(146, 255, 0, 0.66);
  --lime: #92ff00;
  --lime-soft: #92ff00;
  --white: #fff;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.68);
  --header: 72px;
  --mx: 50%;
  --my: 42%;
}

@property --lanyard-idle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-y: auto;
  overscroll-behavior-y: auto;
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--header-actual, var(--header)) + 18px);
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-height: 100%;
  min-width: 320px;
  background:
    radial-gradient(circle at 88% 8%, rgba(146, 255, 0, 0.13), transparent 24rem),
    linear-gradient(118deg, rgba(146, 255, 0, 0.1), transparent 30%),
    linear-gradient(245deg, rgba(255, 255, 255, 0.07), transparent 34%),
    linear-gradient(180deg, #000 0%, var(--bg) 44%, #000 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(146, 255, 0, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    repeating-linear-gradient(115deg, transparent 0 27px, rgba(255, 255, 255, 0.026) 28px 29px);
  background-size: 86px 86px, 86px 86px, 220px 220px;
  mask-image: linear-gradient(to bottom, black 0 58%, transparent 96%);
  pointer-events: none;
  content: "";
}

body::after {
  position: fixed;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.42));
  pointer-events: none;
  content: "";
}

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

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

button {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: rgba(167, 255, 0, 0.28);
  color: var(--text);
}

.scroll-meter {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.scroll-meter span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--lime), #fff);
  box-shadow: 0 0 18px rgba(167, 255, 0, 0.65);
}

.scroll-assist {
  position: fixed;
  z-index: 95;
  right: clamp(0.7rem, 2vw, 1.1rem);
  bottom: clamp(0.8rem, 2vw, 1.15rem);
  display: grid;
  gap: 0.42rem;
  pointer-events: none;
}

.scroll-assist button {
  display: grid;
  width: 2.6rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid rgba(167, 255, 0, 0.28);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.68);
  color: var(--text);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  pointer-events: auto;
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.scroll-assist button:hover,
.scroll-assist button:focus-visible {
  border-color: rgba(167, 255, 0, 0.72);
  background: rgba(167, 255, 0, 0.11);
  color: var(--lime);
  transform: translateY(-1px);
}

.isekai-opening {
  position: fixed;
  z-index: 140;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(0.8rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 50% 50%, rgba(167, 255, 0, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.9));
  opacity: 0;
  pointer-events: none;
  transition: opacity 380ms ease, visibility 380ms ease;
  visibility: hidden;
}

.isekai-opening.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.isekai-opening.is-complete {
  display: none;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.isekai-panel {
  position: relative;
  width: min(1180px, 96vw);
  min-height: min(720px, 88vh);
  overflow: hidden;
  border: 1px solid rgba(167, 255, 0, 0.38);
  border-radius: 8px;
  background: #000;
  box-shadow: 0 34px 140px rgba(0, 0, 0, 0.76), 0 0 80px rgba(167, 255, 0, 0.16);
  cursor: pointer;
  isolation: isolate;
  transform-style: preserve-3d;
}

.isekai-panel::before {
  position: absolute;
  z-index: 3;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 48%, rgba(0, 0, 0, 0.22) 74%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.027) 0 1px, transparent 1px 5px);
  pointer-events: none;
  content: "";
}

.isekai-panel::after {
  position: absolute;
  z-index: 6;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  pointer-events: none;
  clip-path: polygon(0 0, 100% 0, 100% 1px, 1px 1px, 1px 100%, 100% 100%, 100% calc(100% - 1px), 0 calc(100% - 1px));
  content: "";
}

.isekai-panel.is-flipping {
  animation: comicPanelFlip 520ms cubic-bezier(0.2, 0.84, 0.2, 1);
}

.isekai-panel.is-flipping::before {
  animation: comicFlash 520ms ease both;
}

.isekai-art {
  position: absolute;
  z-index: 1;
  inset: 0;
}

.isekai-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.035);
}

.isekai-hit {
  position: absolute;
  z-index: 5;
  inset: 0;
  border: 0;
  background: transparent;
  color: transparent;
  cursor: pointer;
  font-size: 0;
}

.isekai-skip {
  position: absolute;
  z-index: 8;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.isekai-skip:hover,
.isekai-skip:focus-visible {
  border-color: var(--line-strong);
  color: var(--lime);
}

.isekai-progress {
  position: absolute;
  z-index: 8;
  right: 1.1rem;
  bottom: 1.1rem;
  display: flex;
  gap: 0.42rem;
  pointer-events: none;
}

.isekai-progress span {
  width: 0.58rem;
  height: 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
}

.isekai-progress span.is-active {
  width: 1.55rem;
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 0 16px rgba(167, 255, 0, 0.65);
}

.isekai-opening[data-step="0"] .isekai-art img {
  animation: openingSlowZoom 5s ease-in-out infinite alternate;
}

.isekai-opening[data-step="1"] .isekai-art img {
  animation: openingScan 1600ms ease both;
}

.isekai-opening[data-step="2"] .isekai-art img {
  animation: openingRift 1400ms ease both;
}

.isekai-opening[data-step="3"] .isekai-art img,
.isekai-opening[data-step="4"] .isekai-art img,
.isekai-opening[data-step="5"] .isekai-art img {
  animation: openingPulse 1500ms ease-in-out infinite alternate;
}

.site-header {
  position: sticky;
  z-index: 70;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header);
  padding: 0.86rem clamp(1rem, 4vw, 3.6rem);
  background:
    linear-gradient(90deg, rgba(146, 255, 0, 0.1), transparent 30%, rgba(255, 255, 255, 0.04)),
    rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(146, 255, 0, 0.34);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42), inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand img {
  width: 2.35rem;
  height: 2.35rem;
  padding: 0.14rem;
  border: 1px solid rgba(146, 255, 0, 0.42);
  background: #000;
  box-shadow: 0 0 26px rgba(146, 255, 0, 0.16);
  object-fit: cover;
}

.brand span {
  color: var(--text);
  text-shadow: 0 0 24px rgba(146, 255, 0, 0.2);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 2.4vw, 1.4rem);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-header nav a {
  position: relative;
  padding: 0.35rem 0;
  transition: color 180ms ease;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), var(--white));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--text);
}

.site-header nav a[aria-current="true"] {
  color: var(--lime);
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after,
.site-header nav a[aria-current="true"]::after {
  transform: scaleX(1);
}

main {
  position: relative;
  touch-action: pan-y;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header));
  overflow: hidden;
  border-bottom: 1px solid rgba(146, 255, 0, 0.22);
  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.94;
  transform: scale(1.02);
  animation: heroImageSettle 1200ms ease both;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.12) contrast(1.08) brightness(0.92);
}

.hyperspeed-field {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.68;
  mix-blend-mode: screen;
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent 0%, black 18%, black 86%, transparent 100%);
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.76) 34%, rgba(0, 0, 0, 0.24) 68%, rgba(0, 0, 0, 0.5) 100%),
    radial-gradient(circle at 74% 30%, rgba(146, 255, 0, 0.18), transparent 35%),
    linear-gradient(0deg, var(--bg) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 72%);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  height: 32%;
  background:
    linear-gradient(90deg, transparent, rgba(146, 255, 0, 0.34), rgba(255, 255, 255, 0.18), transparent),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(255, 255, 255, 0.1) 35px 36px);
  opacity: 0.36;
  transform: skewY(-4deg) translateY(42%);
  pointer-events: none;
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
  gap: clamp(1.45rem, 4.6vw, 3.8rem);
  align-items: start;
  width: min(1180px, calc(100% - 2rem));
  min-height: calc(100svh - var(--header));
  margin: 0 auto;
  padding: clamp(2rem, 5.4vh, 4.2rem) 0 clamp(4rem, 9vh, 6.4rem);
}

.hero-copy {
  grid-column: 2;
  max-width: 720px;
  padding-top: clamp(0.4rem, 1.4vh, 1.2rem);
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.82);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--lime);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 1rem;
  max-width: 760px;
  font-size: clamp(2.7rem, 6.2vw, 5.8rem);
  line-height: 0.94;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1rem;
  max-width: 900px;
  font-size: clamp(2.1rem, 4.8vw, 4.4rem);
  line-height: 1;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.35rem;
  line-height: 1.12;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.lede {
  max-width: 710px;
  margin-bottom: 1.65rem;
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions,
.panel-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.95rem;
  padding: 0.82rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 6px;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button-primary {
  background: linear-gradient(135deg, var(--lime), var(--lime-soft));
  border-color: rgba(167, 255, 0, 0.84);
  color: #000;
  box-shadow: 0 0 34px rgba(146, 255, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.button-ghost {
  background: rgba(0, 0, 0, 0.56);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(146, 255, 0, 0.08);
}

.button:hover,
.button:focus-visible {
  border-color: var(--line-strong);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.hero-panel,
.reel-notes,
.process-card,
.service-card,
.contact-panel,
.link-grid a,
.image-card,
.identity-visual,
.concept-board,
.showcase-feature,
.showcase-metrics div {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(146, 255, 0, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022));
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(146, 255, 0, 0.035);
}

.depth-card {
  --rx: 0deg;
  --ry: 0deg;
  --scroll-tilt: 0deg;
  --float: 0px;
  backface-visibility: hidden;
  contain: paint;
  transform: perspective(1100px) rotateX(calc(var(--rx) + var(--scroll-tilt))) rotateY(var(--ry)) translate3d(0, var(--float), 0);
  transform-style: preserve-3d;
  will-change: transform;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.depth-card.tilt-active,
.depth-card.is-activated {
  border-color: var(--line-strong);
  box-shadow: 0 28px 110px rgba(0, 0, 0, 0.5), 0 0 36px rgba(167, 255, 0, 0.13);
}

.hero-panel {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  gap: 1.15rem;
  padding: 1.15rem;
  background:
    linear-gradient(135deg, rgba(146, 255, 0, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.68));
  border-color: rgba(146, 255, 0, 0.3);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.72), 0 0 46px rgba(146, 255, 0, 0.08), inset 0 0 34px rgba(146, 255, 0, 0.06);
  backdrop-filter: blur(14px);
}

.lanyard-profile {
  --lanyard-x: 0deg;
  --lanyard-y: 0deg;
  --lanyard-swing: 0deg;
  --eye-x: 0px;
  --eye-y: 0px;
  --eye-tilt: 0deg;
  --eye-glow-x: 50%;
  --eye-glow-y: 48%;
  position: relative;
  display: grid;
  min-height: 300px;
  margin: 0;
  place-items: start center;
  perspective: 1000px;
  isolation: isolate;
}

.evil-eye-shell {
  position: absolute;
  z-index: 0;
  top: 1.55rem;
  left: 50%;
  width: min(22rem, 104%);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(146, 255, 0, 0.34);
  border-radius: 999px;
  background:
    radial-gradient(circle at var(--eye-glow-x) var(--eye-glow-y), rgba(146, 255, 0, 0.26), transparent 31%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.12), transparent 18%),
    #000;
  box-shadow:
    0 0 46px rgba(146, 255, 0, 0.22),
    0 0 120px rgba(146, 255, 0, 0.1),
    inset 0 0 54px rgba(146, 255, 0, 0.14);
  opacity: 0.94;
  pointer-events: none;
  transform: translateX(-50%) translateY(0.45rem) scale(0.8);
  transform-origin: center;
  animation: evilEyePulse 5.4s ease-in-out infinite;
  contain: paint;
  will-change: transform, filter;
}

.evil-eye-shell::before,
.evil-eye-shell::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.evil-eye-shell::before {
  inset: -9%;
  background:
    repeating-conic-gradient(
      from 0deg,
      rgba(146, 255, 0, 0) 0deg 7deg,
      rgba(146, 255, 0, 0.5) 9deg 12deg,
      rgba(255, 255, 255, 0.34) 13deg 15deg,
      rgba(146, 255, 0, 0) 18deg 27deg
    );
  filter: blur(8px);
  opacity: 0.56;
  animation: evilEyeFlame 7s linear infinite;
}

.evil-eye-shell::after {
  background:
    linear-gradient(120deg, transparent 0 44%, rgba(255, 255, 255, 0.42) 46%, transparent 50% 100%),
    repeating-linear-gradient(100deg, transparent 0 12px, rgba(146, 255, 0, 0.1) 13px 14px, transparent 15px 28px),
    radial-gradient(circle at 50% 50%, transparent 0 45%, rgba(0, 0, 0, 0.7) 70%);
  mix-blend-mode: screen;
  opacity: 0.44;
  animation: evilEyeScan 4.8s ease-in-out infinite;
}

.evil-eye-flame {
  position: absolute;
  inset: 11%;
  border-radius: 999px;
  background:
    conic-gradient(from 90deg, rgba(146, 255, 0, 0), rgba(146, 255, 0, 0.6), rgba(255, 255, 255, 0.82), rgba(146, 255, 0, 0.22), rgba(146, 255, 0, 0)),
    radial-gradient(circle at 50% 50%, rgba(146, 255, 0, 0.28), transparent 58%);
  filter: blur(1px);
  opacity: 0.8;
  animation: evilEyeFlame 9s linear infinite reverse;
}

.evil-eye-flame::before,
.evil-eye-flame::after {
  position: absolute;
  content: "";
}

.evil-eye-flame::before {
  inset: 13%;
  border: 1px solid rgba(146, 255, 0, 0.42);
  border-radius: 50% 48% 52% 50%;
  box-shadow: 0 0 34px rgba(146, 255, 0, 0.34), inset 0 0 24px rgba(255, 255, 255, 0.12);
  transform: rotate(-14deg);
}

.evil-eye-flame::after {
  inset: 27% 10%;
  background:
    linear-gradient(90deg, transparent, rgba(146, 255, 0, 0.7), rgba(255, 255, 255, 0.92), rgba(146, 255, 0, 0.56), transparent);
  clip-path: polygon(0 50%, 13% 29%, 50% 9%, 87% 29%, 100% 50%, 87% 71%, 50% 91%, 13% 71%);
  filter: drop-shadow(0 0 18px rgba(146, 255, 0, 0.5));
  opacity: 0.6;
}

.evil-eye-core {
  position: absolute;
  inset: 31% 12%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 44% 35%, rgba(255, 255, 255, 0.92), transparent 12%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.92));
  box-shadow:
    0 0 30px rgba(146, 255, 0, 0.48),
    inset 0 0 18px rgba(0, 0, 0, 0.52);
  clip-path: polygon(0 50%, 13% 27%, 50% 8%, 87% 27%, 100% 50%, 87% 73%, 50% 92%, 13% 73%);
  transform: rotate(var(--eye-tilt));
  transition: transform 180ms ease-out;
}

.evil-eye-core::before {
  position: absolute;
  inset: 14% 11%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(146, 255, 0, 0.16), transparent 44%),
    #000;
  content: "";
  opacity: 0.94;
}

.evil-iris {
  position: relative;
  z-index: 1;
  display: grid;
  width: 5.9rem;
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background:
    radial-gradient(circle at 36% 28%, #fff 0 5%, transparent 6%),
    radial-gradient(circle, #92ff00 0 42%, #000 43% 67%);
  box-shadow:
    0 0 22px rgba(146, 255, 0, 0.72),
    0 0 46px rgba(146, 255, 0, 0.28),
    inset 0 0 18px rgba(255, 255, 255, 0.22);
  transform: translate3d(var(--eye-x), var(--eye-y), 0);
  transition: transform 130ms ease-out;
}

.evil-pupil {
  display: block;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 26%, rgba(255, 255, 255, 0.9) 0 11%, transparent 12%),
    #000;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.9), 0 0 22px rgba(146, 255, 0, 0.42);
}

.lanyard-anchor {
  position: relative;
  z-index: 3;
  display: grid;
  width: 6.4rem;
  height: 1.25rem;
  place-items: center;
  border: 1px solid rgba(146, 255, 0, 0.4);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(146, 255, 0, 0.24), rgba(255, 255, 255, 0.14)),
    #000;
  box-shadow: 0 0 28px rgba(146, 255, 0, 0.18);
}

.lanyard-anchor span {
  width: 4.8rem;
  height: 0.28rem;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, var(--lime) 0 0.52rem, #fff 0.52rem 0.72rem, #000 0.72rem 0.92rem);
}

.lanyard-cord {
  position: absolute;
  z-index: 1;
  top: 0.65rem;
  left: 50%;
  width: 13.75rem;
  height: 9.4rem;
  overflow: visible;
  pointer-events: none;
  transform: translateX(-50%);
}

.lanyard-cord path {
  fill: none;
  stroke: var(--lime);
  stroke-width: 8;
  stroke-linecap: round;
  filter: drop-shadow(0 0 12px rgba(146, 255, 0, 0.32));
}

.lanyard-cord path + path {
  stroke: #fff;
  stroke-width: 5;
  opacity: 0.82;
}

.lanyard-card-shell {
  --lanyard-idle: 0deg;
  position: relative;
  z-index: 2;
  width: min(230px, 78%);
  margin-top: 6.35rem;
  transform:
    rotateZ(calc(var(--lanyard-swing) + var(--lanyard-idle)))
    rotateX(var(--lanyard-x))
    rotateY(var(--lanyard-y));
  transform-origin: 50% -74px;
  transform-style: preserve-3d;
  animation: lanyardIdle 5.2s ease-in-out infinite;
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.lanyard-profile.is-active .lanyard-card-shell {
  animation-play-state: paused;
}

.lanyard-clip {
  position: absolute;
  z-index: 4;
  top: -1rem;
  left: 50%;
  width: 2.2rem;
  height: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(146, 255, 0, 0.18)),
    #000;
  box-shadow: 0 0 20px rgba(146, 255, 0, 0.16);
  transform: translateX(-50%) translateZ(28px);
}

.lanyard-clip::after {
  position: absolute;
  inset: 0.34rem 0.48rem;
  border: 2px solid #000;
  border-radius: 999px;
  content: "";
}

.lanyard-card {
  position: relative;
  display: grid;
  gap: 0.72rem;
  padding: 0.76rem;
  border: 1px solid rgba(146, 255, 0, 0.46);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(146, 255, 0, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.82);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.62), 0 0 34px rgba(146, 255, 0, 0.12);
  overflow: hidden;
}

.lanyard-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 32%, rgba(255, 255, 255, 0.18) 42%, transparent 54%),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(146, 255, 0, 0.07) 19px 20px);
  opacity: 0.52;
  pointer-events: none;
  content: "";
}

.lanyard-card-top,
.lanyard-card-meta {
  position: relative;
  z-index: 1;
}

.lanyard-card-top {
  display: flex;
  justify-content: space-between;
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lanyard-avatar {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08);
}

.lanyard-card-meta {
  display: grid;
  gap: 0.1rem;
}

.lanyard-card-meta strong {
  color: var(--text);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.25rem;
  line-height: 1;
}

.lanyard-card-meta span {
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-label {
  margin-bottom: 0.3rem;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.8vw, 2.4rem);
  line-height: 1;
}

.panel-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.72rem;
  margin: 0;
}

.panel-stats div {
  padding-top: 0.84rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.panel-stats dt {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-stats dd {
  margin: 0.22rem 0 0;
  color: var(--text);
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4.2rem, 8vw, 7.2rem) 0;
  scroll-margin-top: 0;
}

.section + .section {
  border-top: 1px solid rgba(146, 255, 0, 0.16);
}

.section-head {
  max-width: 900px;
  margin-bottom: clamp(1.5rem, 4vw, 2.55rem);
}

.showcase-section {
  position: relative;
}

.showcase-section::before {
  position: absolute;
  top: 3.4rem;
  right: 8%;
  width: min(420px, 46vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), rgba(167, 255, 0, 0.72), transparent);
  transform: rotate(8deg);
  pointer-events: none;
  content: "";
}

.showcase-filters {
  display: flex;
  gap: 0.55rem;
  margin: -0.75rem 0 1rem;
  flex-wrap: wrap;
}

.showcase-filters span {
  display: inline-flex;
  align-items: center;
  min-height: 2.05rem;
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.58fr);
  gap: 1rem;
  align-items: stretch;
}

.showcase-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  gap: 1rem;
  min-height: 520px;
  padding: clamp(0.75rem, 2vw, 1rem);
  overflow: hidden;
}

.showcase-media {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(167, 255, 0, 0.28);
  border-radius: 8px;
  background: #000;
  isolation: isolate;
}

.showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.1);
  transition: scale 420ms ease, filter 420ms ease;
}

.showcase-media.is-activated img,
.showcase-feature:hover .showcase-media img {
  scale: 1.035;
  filter: saturate(1.18) contrast(1.15);
}

.showcase-gridlines {
  position: absolute;
  z-index: 3;
  inset: 0;
  background:
    linear-gradient(rgba(167, 255, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 82%, transparent);
  opacity: 0.7;
  pointer-events: none;
}

.showcase-copy {
  display: flex;
  min-height: 100%;
  padding: clamp(0.4rem, 1vw, 0.8rem);
  flex-direction: column;
  justify-content: center;
}

.showcase-copy h3 {
  max-width: 420px;
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 0.98;
}

.showcase-copy p:not(.eyebrow) {
  max-width: 440px;
  margin-bottom: 1.2rem;
}

.showcase-specs {
  display: grid;
  gap: 0.62rem;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-weight: 800;
}

.showcase-specs li {
  position: relative;
  padding-left: 1.1rem;
}

.showcase-specs li::before {
  position: absolute;
  left: 0;
  color: var(--white);
  content: "/";
  font-weight: 900;
}

.showcase-index {
  display: grid;
  align-content: stretch;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-option {
  display: grid;
  grid-template-columns: 2.15rem minmax(0, 1fr);
  gap: 0.55rem 0.8rem;
  min-height: 124px;
  padding: 1rem 0.15rem 1rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: background 180ms ease, padding-left 180ms ease, border-color 180ms ease;
}

.showcase-option span {
  display: grid;
  height: 2.15rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--lime);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
}

.showcase-option strong {
  align-self: end;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.1rem;
}

.showcase-option em {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 800;
}

.showcase-option:hover,
.showcase-option:focus-visible,
.showcase-option.is-active {
  padding-left: 0.7rem;
  border-color: rgba(167, 255, 0, 0.32);
  background:
    linear-gradient(90deg, rgba(167, 255, 0, 0.13), transparent 72%),
    rgba(255, 255, 255, 0.025);
}

.showcase-option:hover span,
.showcase-option:focus-visible span,
.showcase-option.is-active span {
  border-color: rgba(167, 255, 0, 0.48);
  background: rgba(167, 255, 0, 0.09);
  box-shadow: 0 0 18px rgba(167, 255, 0, 0.11);
}

.showcase-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.showcase-metrics div {
  min-height: 110px;
  padding: 1rem;
  box-shadow: none;
}

.showcase-metrics span {
  display: block;
  margin-bottom: 1.35rem;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase-metrics strong {
  color: var(--text);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.05;
}

.cinema-section {
  position: relative;
}

.cinema-section::before {
  position: absolute;
  inset: 7rem 0 auto;
  height: 26rem;
  background:
    radial-gradient(circle at 20% 35%, rgba(167, 255, 0, 0.16), transparent 34%),
    radial-gradient(circle at 76% 58%, rgba(255, 255, 255, 0.13), transparent 36%);
  filter: blur(10px);
  opacity: 0.72;
  pointer-events: none;
  content: "";
}

.cinema-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.64fr);
  gap: clamp(1rem, 3vw, 1.45rem);
  align-items: start;
}

.cinema-stage {
  position: sticky;
  top: calc(var(--header) + 24px);
  min-height: min(72vh, 660px);
  padding: 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(167, 255, 0, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.cinema-screen {
  min-height: calc(min(72vh, 660px) - 1.44rem);
  border: 1px solid rgba(167, 255, 0, 0.28);
  border-radius: 8px;
  background: #000;
  isolation: isolate;
}

.cinema-screen img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.12);
  transform: scale(1.02);
  transition: opacity 260ms ease, transform 540ms ease, filter 420ms ease;
}

.cinema-screen.is-activated img {
  animation: cinemaImageSwap 620ms ease both;
}

.cinema-aura {
  position: absolute;
  z-index: 3;
  inset: 7%;
  pointer-events: none;
}

.cinema-aura span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(167, 255, 0, 0.2);
  transform: rotate(45deg);
  animation: cinemaRing 9s linear infinite;
}

.cinema-aura span:nth-child(2) {
  inset: 10%;
  border-color: rgba(255, 255, 255, 0.18);
  animation-duration: 11s;
  animation-direction: reverse;
}

.cinema-aura span:nth-child(3) {
  inset: 22%;
  border-color: rgba(255, 255, 255, 0.13);
  animation-duration: 7s;
}

.cinema-hud {
  position: absolute;
  z-index: 4;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  min-width: min(300px, calc(100% - 2rem));
  gap: 0.3rem;
  padding: 0.78rem 0.86rem;
  border: 1px solid rgba(167, 255, 0, 0.28);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.58);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.cinema-hud span {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cinema-hud strong {
  color: var(--text);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.3rem);
  line-height: 0.98;
}

.cinema-chapters {
  display: grid;
  gap: 1rem;
}

.cinema-chapter {
  position: relative;
  min-height: 230px;
  padding: 1rem 1rem 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.cinema-chapter::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--lime), var(--white));
  opacity: 0;
  transition: opacity 220ms ease;
  content: "";
}

.cinema-chapter span {
  display: inline-grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  margin-bottom: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--lime);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
}

.cinema-chapter h3 {
  font-size: clamp(1.28rem, 2vw, 1.75rem);
}

.cinema-chapter p {
  margin-bottom: 0;
}

.cinema-chapter.is-active {
  border-color: rgba(167, 255, 0, 0.34);
  background:
    linear-gradient(135deg, rgba(167, 255, 0, 0.13), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: 0 20px 68px rgba(0, 0, 0, 0.28), inset 0 0 32px rgba(167, 255, 0, 0.05);
  transform: translateX(-0.45rem);
}

.cinema-chapter.is-active::before {
  opacity: 1;
}

.reel-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
  touch-action: pan-y;
}

.video-shell {
  display: grid;
  gap: 0.75rem;
  touch-action: pan-y;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2048 / 1176;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #000;
  cursor: default;
  touch-action: pan-y;
}

.video-frame::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(167, 255, 0, 0.16), transparent 28%),
    linear-gradient(245deg, transparent 55%, rgba(255, 255, 255, 0.12));
  pointer-events: none;
  content: "";
}

.video-frame::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 5px),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.22));
  pointer-events: none;
  content: "";
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.reel-notes {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(280px, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.2rem, 3vw, 2rem);
  align-items: center;
}

.reel-notes .eyebrow,
.reel-notes h3,
.reel-notes > p,
.reel-notes .panel-actions {
  grid-column: 1;
}

.check-list {
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 4;
  gap: 0.72rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.58;
}

.check-list li {
  position: relative;
  padding-left: 1.25rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--lime);
  content: "+";
  font-weight: 900;
}

.panel-actions {
  margin-top: 1.35rem;
}

.motion-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.image-card,
.identity-visual,
.concept-board {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 250px;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
  cursor: pointer;
  isolation: isolate;
  text-align: left;
  touch-action: pan-y;
}

.image-card img,
.identity-visual img,
.concept-board img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.08);
  transition: scale 420ms ease, filter 420ms ease;
}

.image-card::before,
.identity-visual::before,
.concept-board::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.82)),
    linear-gradient(135deg, rgba(167, 255, 0, 0.15), transparent 34%);
  pointer-events: none;
  content: "";
}

.image-card::after,
.identity-visual::after,
.concept-board::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(167, 255, 0, 0);
  pointer-events: none;
  transform: scale(0.96);
  transition: border-color 220ms ease, transform 220ms ease;
  content: "";
}

.image-card span,
.image-card strong,
.identity-visual span,
.concept-board span {
  position: absolute;
  z-index: 3;
  left: 1rem;
  right: 1rem;
}

.image-card span,
.identity-visual span,
.concept-board span {
  bottom: 3.85rem;
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-card strong {
  bottom: 1rem;
  max-width: 90%;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.24rem;
  line-height: 1.08;
}

.image-card:hover img,
.image-card:focus-visible img,
.identity-visual:hover img,
.identity-visual:focus-visible img,
.concept-board:hover img,
.concept-board:focus-visible img,
.image-card.is-activated img,
.identity-visual.is-activated img,
.concept-board.is-activated img {
  scale: 1.045;
  filter: saturate(1.14) contrast(1.14);
}

.image-card:hover::after,
.image-card:focus-visible::after,
.identity-visual:hover::after,
.identity-visual:focus-visible::after,
.concept-board:hover::after,
.concept-board:focus-visible::after,
.image-card.is-activated::after,
.identity-visual.is-activated::after,
.concept-board.is-activated::after {
  border-color: rgba(167, 255, 0, 0.45);
  transform: scale(1);
}

.concept-section {
  position: relative;
}

.concept-section::before {
  position: absolute;
  inset: 2rem auto auto 50%;
  width: min(720px, 80vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167, 255, 0, 0.7), transparent);
  transform: translateX(-50%) rotate(-3deg);
  pointer-events: none;
  content: "";
}

.concept-board {
  width: 100%;
  min-height: auto;
  border-color: rgba(167, 255, 0, 0.28);
  cursor: pointer;
  text-align: left;
  touch-action: pan-y;
}

.concept-board img {
  min-height: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.concept-board::before {
  background:
    linear-gradient(180deg, transparent 54%, rgba(0, 0, 0, 0.72)),
    linear-gradient(135deg, rgba(167, 255, 0, 0.12), transparent 28%),
    repeating-linear-gradient(115deg, transparent 0 42px, rgba(255, 255, 255, 0.055) 43px 44px);
}

.concept-board span {
  bottom: 1rem;
  width: fit-content;
  padding: 0.42rem 0.58rem;
  border: 1px solid rgba(167, 255, 0, 0.25);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(10px);
}

.foil-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(167, 255, 0, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow:
    0 24px 90px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.foil-card::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.2), transparent 22%),
    linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.86)),
    linear-gradient(118deg, transparent 0 24%, rgba(255, 255, 255, 0.34) 35%, rgba(167, 255, 0, 0.28) 41%, rgba(255, 255, 255, 0.23) 47%, rgba(146, 255, 0, 0.16) 52%, transparent 64%),
    repeating-linear-gradient(128deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 8px),
    linear-gradient(135deg, rgba(167, 255, 0, 0.16), transparent 34%);
  background-position: center, center, -130% 50%, 0 0, center;
  background-size: 100% 100%, 100% 100%, 240% 240%, 100% 100%, 100% 100%;
  background-blend-mode: screen, normal, screen, overlay, normal;
  opacity: 0.86;
  pointer-events: none;
  animation: foilDrift 7.6s linear infinite;
  content: "";
}

.foil-card::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(167, 255, 0, 0.28);
  background:
    linear-gradient(112deg, transparent 0 35%, rgba(255, 255, 255, 0.52) 45%, rgba(167, 255, 0, 0.35) 49%, rgba(255, 255, 255, 0.3) 53%, transparent 64%);
  background-position: -150% 0;
  background-size: 260% 100%;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 0 38px rgba(167, 255, 0, 0.08);
  opacity: 0.54;
  pointer-events: none;
  transform: none;
  transition: opacity 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  animation: foilSweep 5.4s ease-in-out infinite;
  content: "";
}

.foil-card span,
.foil-card strong {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.foil-card:hover,
.foil-card:focus-visible,
.foil-card.is-activated {
  border-color: rgba(146, 255, 0, 0.56);
  box-shadow:
    0 30px 115px rgba(0, 0, 0, 0.5),
    0 0 48px rgba(167, 255, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.foil-card:hover::before,
.foil-card:focus-visible::before,
.foil-card.is-activated::before {
  opacity: 1;
  animation-duration: 4.6s;
}

.foil-card:hover::after,
.foil-card:focus-visible::after,
.foil-card.is-activated::after {
  border-color: rgba(146, 255, 0, 0.6);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 0 46px rgba(167, 255, 0, 0.15),
    0 0 30px rgba(255, 255, 255, 0.12);
  opacity: 0.88;
}

.summon-trigger-card {
  border-color: rgba(167, 255, 0, 0.32);
}

.summon-trigger-card strong {
  max-width: 82%;
}

.summon-stage {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.summon-stage.is-open {
  opacity: 1;
  pointer-events: auto;
}

.summon-stage:not(.is-open) {
  display: none;
}

.summon-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    linear-gradient(130deg, rgba(0, 0, 0, 0.84), rgba(4, 12, 8, 0.76)),
    repeating-linear-gradient(115deg, transparent 0 28px, rgba(167, 255, 0, 0.06) 29px 30px);
  cursor: pointer;
}

.summon-card {
  position: relative;
  display: grid;
  width: min(760px, 94vw);
  min-height: min(620px, 86vh);
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(167, 255, 0, 0.46);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(167, 255, 0, 0.16), transparent 34%),
    linear-gradient(235deg, rgba(255, 255, 255, 0.13), transparent 42%),
    linear-gradient(180deg, #000, #000);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.74), 0 0 70px rgba(167, 255, 0, 0.18);
  isolation: isolate;
  transform: perspective(1200px) rotateX(12deg) scale(0.88);
  transition: transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.summon-stage.is-open .summon-card {
  animation: summonEnter 520ms cubic-bezier(0.17, 0.84, 0.34, 1) both;
  transform: perspective(1200px) rotateX(0) scale(1);
}

.summon-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(167, 255, 0, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, black 0 58%, transparent 78%);
  pointer-events: none;
  content: "";
}

.summon-card::after {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
  clip-path: polygon(0 0, 44% 0, 44% 1px, 0 1px, 0 100%, 58% 100%, 58% calc(100% - 1px), 1px calc(100% - 1px), 1px 1px, 0 1px);
  content: "";
}

.summon-character {
  position: relative;
  z-index: 4;
  width: clamp(240px, 42vw, 360px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #000;
  box-shadow:
    0 0 0 1px rgba(167, 255, 0, 0.26),
    0 0 42px rgba(167, 255, 0, 0.34),
    0 0 90px rgba(255, 255, 255, 0.16);
  transform: translateZ(70px);
}

.summon-character::before,
.summon-character::after {
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(167, 255, 0, 0.34);
  pointer-events: none;
  content: "";
}

.summon-character::before {
  transform: rotate(7deg);
}

.summon-character::after {
  border-color: rgba(255, 255, 255, 0.26);
  transform: rotate(-7deg);
}

.summon-character img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.14) contrast(1.08);
}

.summon-ring {
  position: absolute;
  z-index: 2;
  width: clamp(330px, 58vw, 510px);
  aspect-ratio: 1;
  border: 1px solid rgba(167, 255, 0, 0.28);
  pointer-events: none;
  transform: rotate(45deg);
}

.summon-ring-one {
  animation: ringDrift 7s linear infinite;
}

.summon-ring-two {
  width: clamp(390px, 66vw, 600px);
  border-color: rgba(255, 255, 255, 0.18);
  animation: ringDriftReverse 9s linear infinite;
}

.summon-slash {
  position: absolute;
  z-index: 3;
  width: 145%;
  height: 12px;
  background: linear-gradient(90deg, transparent, rgba(167, 255, 0, 0.86), rgba(255, 255, 255, 0.72), transparent);
  filter: drop-shadow(0 0 16px rgba(167, 255, 0, 0.6));
  pointer-events: none;
  transform: rotate(-23deg) translateX(-130%);
}

.summon-slash-one {
  top: 33%;
}

.summon-slash-two {
  bottom: 30%;
  height: 7px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.76), rgba(167, 255, 0, 0.72), transparent);
  transform: rotate(-23deg) translateX(130%);
}

.summon-stage.is-open .summon-slash-one {
  animation: slashSweep 840ms ease 90ms both;
}

.summon-stage.is-open .summon-slash-two {
  animation: slashSweepReverse 900ms ease 180ms both;
}

.summon-caption {
  position: absolute;
  z-index: 5;
  right: clamp(1rem, 5vw, 3rem);
  bottom: clamp(1rem, 5vw, 3rem);
  display: grid;
  max-width: min(360px, calc(100% - 2rem));
  gap: 0.35rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(167, 255, 0, 0.25);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(14px);
}

.summon-caption span {
  color: var(--lime);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summon-caption strong {
  color: var(--text);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.25rem, 3vw, 2.1rem);
  line-height: 1;
}

.summon-close {
  position: absolute;
  z-index: 6;
  top: 1rem;
  right: 1rem;
  min-height: 2.35rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.62);
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
}

.summon-close:hover,
.summon-close:focus-visible {
  border-color: var(--line-strong);
  color: var(--lime);
}

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

.process-card,
.service-card {
  min-height: 240px;
  padding: 1.15rem;
}

.process-card span {
  display: block;
  margin-bottom: 4.5rem;
  color: var(--lime);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 900;
}

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

.service-card h3 {
  color: var(--text);
}

.identity-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 4vw, 2.5rem);
  align-items: center;
}

.identity-visual {
  min-height: 360px;
}

.identity-image {
  min-height: 360px;
}

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

.link-grid a {
  display: flex;
  min-height: 116px;
  padding: 1rem;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.link-grid a:hover,
.link-grid a:focus-visible {
  border-color: var(--line-strong);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  transform: translateY(-2px);
}

.link-grid strong {
  color: var(--text);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.05rem;
}

.link-grid span {
  color: var(--muted);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.contact-section {
  display: grid;
  min-height: 56vh;
  align-items: center;
}

.contact-panel {
  max-width: 880px;
  padding: clamp(1.4rem, 4vw, 2.45rem);
}

.reveal {
  opacity: 0;
  translate: 0 22px;
  filter: blur(8px);
  transition: opacity 680ms ease, translate 680ms ease, filter 680ms ease;
}

.reveal.is-visible {
  opacity: 1;
  translate: 0 0;
  filter: blur(0);
}

.is-activated {
  animation: cardPulse 620ms ease both;
}

@keyframes heroImageSettle {
  from {
    opacity: 0.2;
    transform: scale(1.08);
  }
}

@keyframes lanyardIdle {
  0%,
  100% {
    --lanyard-idle: -2deg;
  }

  50% {
    --lanyard-idle: 2.4deg;
  }
}

@keyframes evilEyePulse {
  0%,
  100% {
    filter: saturate(1.12) brightness(1);
    transform: translateX(-50%) translateY(0.45rem) scale(0.78);
  }

  50% {
    filter: saturate(1.32) brightness(1.08);
    transform: translateX(-50%) translateY(0.18rem) scale(0.83);
  }
}

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

@keyframes evilEyeScan {
  0%,
  100% {
    opacity: 0.32;
    transform: translateX(-4%) skewX(-5deg);
  }

  50% {
    opacity: 0.52;
    transform: translateX(4%) skewX(5deg);
  }
}

@keyframes cardPulse {
  0% {
    --float: 0px;
  }

  45% {
    --float: -10px;
  }

  100% {
    --float: 0px;
  }
}

@keyframes foilDrift {
  from {
    background-position: center, center, -130% 50%, 0 0, center;
  }

  to {
    background-position: center, center, 130% 50%, 120px 0, center;
  }
}

@keyframes foilSweep {
  0%,
  38% {
    background-position: -150% 0;
  }

  68%,
  100% {
    background-position: 150% 0;
  }
}

@keyframes cinemaRing {
  to {
    transform: rotate(405deg);
  }
}

@keyframes cinemaImageSwap {
  0% {
    opacity: 0.34;
    transform: scale(1.08) rotate(-0.6deg);
    filter: saturate(1.35) contrast(1.22) brightness(1.15);
  }

  100% {
    opacity: 1;
    transform: scale(1.02) rotate(0deg);
    filter: saturate(1.12) contrast(1.12) brightness(1);
  }
}

@keyframes openingSlowZoom {
  from {
    transform: scale(1.02) rotate(0deg);
  }

  to {
    transform: scale(1.08) rotate(0.8deg);
  }
}

@keyframes openingScan {
  from {
    transform: scale(1.04) translateX(-14px);
    filter: saturate(1.08) contrast(1.08) brightness(0.9);
  }

  to {
    transform: scale(1.04) translateX(0);
    filter: saturate(1.18) contrast(1.14) brightness(1.04);
  }
}

@keyframes openingRift {
  0% {
    transform: scale(1.12) rotate(-1deg);
    filter: saturate(1.4) contrast(1.25) brightness(0.7);
  }

  45% {
    transform: scale(1.02) rotate(0.6deg);
    filter: saturate(1.8) contrast(1.32) brightness(1.3);
  }

  100% {
    transform: scale(1.06) rotate(0deg);
    filter: saturate(1.18) contrast(1.12) brightness(1);
  }
}

@keyframes openingPulse {
  from {
    transform: scale(1.03);
    filter: saturate(1.08) contrast(1.08) brightness(0.95);
  }

  to {
    transform: scale(1.075);
    filter: saturate(1.34) contrast(1.16) brightness(1.1);
  }
}

@keyframes comicPanelFlip {
  0% {
    transform: perspective(1400px) rotateY(0deg) scale(1);
  }

  48% {
    transform: perspective(1400px) rotateY(-7deg) scale(0.985);
  }

  100% {
    transform: perspective(1400px) rotateY(0deg) scale(1);
  }
}

@keyframes comicFlash {
  0% {
    background-color: transparent;
  }

  38% {
    background-color: rgba(167, 255, 0, 0.28);
  }

  100% {
    background-color: transparent;
  }
}

@keyframes summonEnter {
  from {
    opacity: 0;
    transform: perspective(1200px) rotateX(16deg) rotateY(-10deg) scale(0.82) translateY(28px);
  }

  to {
    opacity: 1;
    transform: perspective(1200px) rotateX(0) rotateY(0) scale(1) translateY(0);
  }
}

@keyframes ringDrift {
  to {
    transform: rotate(405deg);
  }
}

@keyframes ringDriftReverse {
  to {
    transform: rotate(-315deg);
  }
}

@keyframes slashSweep {
  from {
    transform: rotate(-23deg) translateX(-130%);
  }

  to {
    transform: rotate(-23deg) translateX(130%);
  }
}

@keyframes slashSweepReverse {
  from {
    transform: rotate(-23deg) translateX(130%);
  }

  to {
    transform: rotate(-23deg) translateX(-130%);
  }
}

@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;
  }

  .depth-card {
    transform: none !important;
  }

  .hyperspeed-field {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero-inner,
  .showcase-layout,
  .showcase-feature,
  .cinema-layout,
  .reel-layout,
  .reel-notes,
  .identity-section {
    grid-template-columns: 1fr;
  }

  .reel-notes .eyebrow,
  .reel-notes h3,
  .reel-notes > p,
  .reel-notes .panel-actions,
  .check-list {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-copy,
  .hero-panel {
    grid-column: 1;
    grid-row: auto;
  }

  .motion-gallery,
  .process-grid,
  .service-grid,
  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel {
    max-width: 540px;
  }

  .showcase-feature {
    min-height: auto;
  }

  .showcase-media {
    min-height: 420px;
  }

  .cinema-stage {
    position: relative;
    top: auto;
    min-height: 520px;
  }

  .cinema-screen {
    min-height: 500px;
  }
}

@media (min-width: 861px) and (max-width: 980px) {
  .hero-inner {
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 1rem;
  }

  .hero-copy {
    grid-column: 2;
  }

  .hero-panel {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
  }

  .lanyard-profile {
    min-height: 260px;
  }

  .evil-eye-shell {
    top: 1.2rem;
    width: min(19.5rem, 108%);
  }

  .lanyard-card-shell {
    width: min(205px, 82%);
  }
}

@media (max-width: 640px) {
  :root {
    --header: 76px;
  }

  .site-header {
    align-items: flex-start;
  }

  .site-header nav {
    gap: 0.58rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 0.82rem;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 2.35rem;
    height: 2.35rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding: 5rem 0 4rem;
  }

  .lanyard-profile {
    min-height: 275px;
  }

  .evil-eye-shell {
    top: 1.4rem;
    width: min(19rem, 108%);
  }

  .evil-iris {
    width: 4.75rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.3rem);
  }

  .button {
    width: 100%;
  }

  .isekai-opening {
    padding: 0.7rem;
  }

  .isekai-panel {
    min-height: 86vh;
  }

  .isekai-progress {
    right: 50%;
    transform: translateX(50%);
  }

  .motion-gallery,
  .showcase-metrics,
  .process-grid,
  .service-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .showcase-media {
    min-height: 350px;
  }

  .cinema-stage {
    min-height: 380px;
  }

  .cinema-screen {
    min-height: 360px;
  }

  .cinema-hud {
    right: 0.75rem;
    bottom: 0.75rem;
    min-width: calc(100% - 1.5rem);
  }

  .cinema-chapter {
    min-height: 210px;
  }

  .showcase-option {
    min-height: 108px;
  }

  .reel-notes,
  .image-card,
  .image-card img,
  .identity-visual,
  .identity-image {
    min-height: 340px;
  }

  .summon-card {
    min-height: min(620px, 82vh);
  }

  .summon-caption {
    right: 1rem;
    left: 1rem;
  }
}
