﻿/*
Theme Name: Gene-Chun
Theme URI: https://gene-chun.com
Author: Gene-Chun Studio
Description: ??皞?蝬脖蜓憿????望??賂?Source Core嚗疵蝛踹蝡?擃垢??擃?
Version: 0.2.0
*/

/* =============================================
   DESIGN TOKENS ???賜?游?
   ============================================= */
:root {

  /* --- Color: Background嚗澈?掖?踝?蝝撐??--- */
  --color-bg-core:     #F4F1EC;
  --color-bg-deep:     #EDE9E2;
  --color-bg-surface:  #E6E2D9;
  --color-bg-elevated: rgba(0,0,0,0.02);

  /* --- Color: Text嚗?隤踵楛?脫?摮?--- */
  --color-text-primary:   #1A1814;
  --color-text-secondary: #4A4540;
  --color-text-muted:     #8A8680;

  /* --- Theme Borders & Dividers --- */
  --color-border:       rgba(30,24,16,0.18);
  --color-border-hover: rgba(30,24,16,0.45);
  --color-bg-hover:     rgba(30,24,16,0.04);
  --color-divider:      rgba(30,24,16,0.1);

  /* --- Color: Source Core Energy嚗?????嚗?-- */
  --color-core-white:    #EEF2FF;
  --color-core-pulse:    #5260FF;
  --color-core-indigo:   #3A45CC;
  --color-core-mist:     #7A88DD;
  --color-core-shadow:   #2A2A30;
  --color-core-glow:     #3D4DCC;
  --color-core-rim:      rgba(60,70,140,0.35);

  /* --- Color: 撟喲閮剛?撣怠?瑞泵蝣?--- */
  --color-print-mark:    rgba(30,24,16,0.25);   /* ?啣???蝺?*/
  --color-print-accent:  rgba(30,24,16,0.06);   /* 憭折? Case No. */
  --font-primary:        var(--font-body);

  /* --- Spacing --- */
  --space-4:   4px;
  --space-8:   8px;
  --space-16:  16px;
  --space-24:  24px;
  --space-32:  32px;
  --space-48:  48px;
  --space-64:  64px;
  --space-96:  96px;
  --space-120: 120px;
  --space-160: 160px;

  /* --- Typography --- */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Inter', 'Helvetica Neue', sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  /* --- Motion --- */
  --motion-fast:   0.18s;
  --motion-base:   0.36s;
  --motion-medium: 0.6s;
  --motion-slow:   1.0s;
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-refined: cubic-bezier(0.16, 1, 0.3, 1);

  /* --- Z-index --- */
  --z-base:        0;
  --z-content:     10;
  --z-overlay:     20;
  --z-nav:         30;
  --z-core-canvas: 15;   /* 擃??摰孵?憛?雿撠汗??*/
  --z-noise:       2;
  --z-modal:       50;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  /* ?渡??冽迨?身摰?scroll-behavior: smooth嚗??頝?Lenis ??JS ?撠?湧?撱園?⊿? */
}

/* =============================================
   THEMES (Scrolling dynamically applied)
   ============================================= */
body {
  background-color: var(--color-bg-core);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 1.5s cubic-bezier(0.16, 1, 0.3, 1), 
              color 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

body.theme-light {
  --color-bg-core:     #F5F3EF;
  --color-text-primary:   #1A1A1A;
  --color-text-secondary: #4A4A4A;
  --color-text-muted:     #8A8A85;
  --color-border:       rgba(50,55,80,0.3);
  --color-border-hover: rgba(50,55,80,0.6);
  --color-bg-hover:     rgba(50,55,80,0.04);
  --color-divider:      rgba(0,0,0,0.08);
}

body.theme-dark {
  --color-bg-core:     #0D0F16;
  --color-text-primary:   #F2EEE5;
  --color-text-secondary: #C4BEB2;
  --color-text-muted:     #888E9A;
  --color-border:       rgba(255,255,255,0.25);
  --color-border-hover: rgba(255,255,255,0.5);
  --color-bg-hover:     rgba(255,255,255,0.05);
  --color-divider:      rgba(255,255,255,0.08);
}

body.theme-vibrant {
  --color-bg-core:     #121822; /* 瞈葬瘛望絲??蝬?*/
  --color-text-primary:   #EEF8F3;
  --color-text-secondary: #AFCFC3;
  --color-text-muted:     #84A399;
  --color-border:       rgba(175,207,195,0.3);
  --color-border-hover: rgba(175,207,195,0.6);
  --color-bg-hover:     rgba(175,207,195,0.05);
  --color-divider:      rgba(175,207,195,0.12);
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =============================================
   LAYOUT PRIMITIVES
   ============================================= */
.page-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-48);
}

.page-container--narrow {
  max-width: 1200px;
}

.section-shell {
  position: relative;
  padding-top: var(--space-120);
  padding-bottom: var(--space-120);
}

/* =============================================
   SOURCE CORE CANVAS
   ============================================= */
#source-core-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-core-canvas);
  pointer-events: none;
}

/* Reduced motion ?? */
@media (prefers-reduced-motion: reduce) {
  #source-core-canvas {
    opacity: 0.5;
    filter: none;
  }
}

/* ==========================================================================
   5. SOURCE ORBITAL MENU (皞?頂蝣??詨)
   ========================================================================== */
.source-orbital-menu {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  z-index: 100;
  pointer-events: none;
}

.orbital-item {
  position: absolute;
  bottom: 6vh; /* 隞?VH 摰?嚗?◤??????雿?*/
  left: 0;
  /* ?靽桀儔嚗ㄐ閮剔 0x0 Flex 摰孵嚗ㄐ?Ｙ?????撠望??芸?蝯?蝵桐葉 
     ?見 GSAP ?∟??獐閬神 x, y嚗??葉敹?瘞賊?蝎暹?撠?摨扳?嚗?*/
  width: 0;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 0;
  transform: scale(0.2);
}

.orbital-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  
  /* ??瘛箄??芸??楛?脩?釭??(Dark Glassmorphism) */
  background: linear-gradient(135deg, rgba(20, 20, 22, 0.65) 0%, rgba(20, 20, 22, 0.45) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  
  /* 憭惜甈∠?擃?獢?銝敺桐漁???寞楛??*/
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 100px;
  
  color: #FFFFFF;
  font-family: var(--font-primary, sans-serif);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  
  /* 瘛梢??啣蔣??澆?蝯?嚗???瘛箄????箸? */
  box-shadow: 
    0 24px 48px rgba(0, 0, 0, 0.35), 
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.orbital-item a:hover {
  background: linear-gradient(135deg, rgba(20, 20, 22, 0.8) 0%, rgba(20, 20, 22, 0.6) 100%);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 
    0 32px 64px rgba(0, 0, 0, 0.5), 
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 0 24px rgba(255, 255, 255, 0.1);
  transform: translateY(-5px) scale(1.03);
}  

/* =============================================
   TV SCANLINE NOISE OVERLAY
   ============================================= */
#tv-noise-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-noise);
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: multiply;
}

@media (prefers-reduced-motion: reduce) {
  #tv-noise-canvas {
    display: none;
  }
}

/* =============================================
   NAVIGATION
   ============================================= */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-24) var(--space-48);
  mix-blend-mode: normal;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-32);
  list-style: none;
}

.nav-links a {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--motion-base) var(--ease-soft);
  font-family: var(--font-mono);
}

.nav-links a:hover {
  color: var(--color-text-primary);
}

/* =============================================
   HERO SECTION
   ============================================= */
/* ?? 閫?啣??璅? ??????????????????????????? */
.print-cross {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: var(--z-content);
  pointer-events: none;
}
.print-cross::before,
.print-cross::after {
  content: '';
  position: absolute;
  background: var(--color-print-mark);
}
.print-cross::before { width: 1px; height: 100%; left: 50%; top: 0; }
.print-cross::after  { height: 1px; width: 100%; top: 50%; left: 0; }
.print-cross--tl { top: var(--space-32); left: var(--space-32); }
.print-cross--tr { top: var(--space-32); right: var(--space-32); }
.print-cross--bl { bottom: var(--space-32); left: var(--space-32); }
.print-cross--br { bottom: var(--space-32); right: var(--space-32); }

/* ?? ? Metadata 璇??????????????????????????? */
.meta-strip {
  position: absolute;
  top: var(--space-64);
  left: var(--space-48);
  right: var(--space-48);
  z-index: var(--z-content);
  display: flex;
  gap: var(--space-48);
  align-items: flex-start;
  border-bottom: 1px solid var(--color-divider);
  padding-bottom: var(--space-16);
}
.meta-strip__item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.meta-strip__key {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.meta-strip__val {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
}

/* ?? Hero Section ?????????????????????????????? */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: var(--z-content);
  padding-top: 7rem;
  width: 100%;
}

/* Hero Headline */
.hero__headline-wrap {
  position: relative;
  margin-top: clamp(1rem, 3vw, 2rem);
  min-height: clamp(180px, 30vw, 420px);
  --field-x: 50%;
  --field-y: 50%;
  --field-radius: 0px;
}

.hero__headline {
  margin: 0;
  max-width: 10.5ch;
}

.hero__headline-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(58px, 9.5vw, 156px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.075em;
  color: rgba(24, 24, 24, 0.96);
  text-wrap: balance;
}

.hero__headline--semantic {
  position: relative;
  z-index: 8;
  color: rgba(23, 23, 23, 0.94);
}

.hero__headline--visual,
.hero__headline--front-slice {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__headline--visual {
  z-index: 9;
}

.hero__headline-line--visual,
.hero__headline-line--slice {
  --line-shift-x: 0px;
  --line-shift-y: 0px;
  --line-scale-x: 1;
  --line-track: 0em;
  transform-origin: left center;
  transform: translate3d(var(--line-shift-x), var(--line-shift-y), 0) scaleX(var(--line-scale-x));
  letter-spacing: calc(-0.075em + var(--line-track));
  will-change: transform, letter-spacing, opacity;
}

.hero__headline-line--visual {
  color: rgba(18, 18, 18, 0.9);
  opacity: 0.94;
}

.hero__headline--front-slice {
  z-index: 14;
  clip-path: circle(var(--field-radius) at var(--field-x) var(--field-y));
  -webkit-clip-path: circle(var(--field-radius) at var(--field-x) var(--field-y));
}

.hero__headline-line--slice {
  color: #4658e2;
  opacity: 0.96;
  text-shadow: 0 0 18px rgba(91, 109, 240, 0.16);
}

.hero__headline-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 13;
  pointer-events: none;
  background: radial-gradient(circle at var(--field-x) var(--field-y), rgba(118, 138, 255, 0.15), transparent var(--field-radius));
  filter: blur(20px);
}

.hero__core-placeholder {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(92px, 17vw, 228px);
  height: clamp(92px, 17vw, 228px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ??蝺?*/
.hero__rule {
  width: 100%;
  height: 1px;
  background: var(--color-divider);
  margin: var(--space-32) 0;
}

/* 銝?舀?? */
.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-48);
}

.hero__content {
  display: grid;
  gap: 1rem;
  max-width: 44rem;
}

.hero__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.1vw, 1.8rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: var(--color-text-primary);
  text-transform: uppercase;
  max-width: 24ch;
  margin-bottom: 0;
}

.hero__title em {
  font-style: italic;
  color: var(--color-core-pulse);
}

.hero__lead {
  max-width: 40rem;
  font-size: 1.02rem;
  line-height: 1.9;
  color: rgba(26, 24, 20, 0.8);
}

.hero__services,
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__services span,
.hero__proof span {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(45, 56, 74, 0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.68);
  box-shadow: 0 12px 24px rgba(119, 133, 156, 0.08);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(40, 49, 64, 0.72);
}

.hero__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.25rem;
  padding-bottom: 0.25rem;
}

.hero__subtitle {
  font-size: 0.96rem;
  color: rgba(42, 50, 64, 0.76);
  max-width: 29rem;
  line-height: 1.9;
  margin-bottom: 0;
  text-align: right;
}

/* =============================================
   CTA BUTTONS
   ============================================= */
.cta-cluster {
  display: flex;
  align-items: center;
  gap: var(--space-24);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-16) var(--space-32);
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color var(--motion-base) var(--ease-soft),
    color var(--motion-base) var(--ease-soft),
    background var(--motion-base) var(--ease-soft);
}

.btn-primary:hover {
  border-color: var(--color-border-hover);
  color: var(--color-text-primary);
  background: var(--color-bg-hover);
}

.btn-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color var(--motion-base) var(--ease-soft);
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.btn-text:hover {
  color: var(--color-text-primary);
}

/* =============================================
   MANIFESTO ??Poster Grid Layout
   ============================================= */
.manifesto {
  position: relative;
  z-index: var(--z-content);
  min-height: 100vh;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.manifesto__poster {
  position: relative;
  min-height: calc(100vh - 2rem);
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 244, 232, 0.28);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 235, 207, 0.4), transparent 22%),
    radial-gradient(circle at 82% 20%, rgba(255, 240, 219, 0.18), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(119, 14, 16, 0.3), transparent 30%),
    linear-gradient(180deg, #ef6d54 0%, #df573d 38%, #c83a25 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.08),
    0 18px 50px rgba(71, 10, 8, 0.22);
}

.manifesto__poster::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,245,236,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,245,236,0.12) 1px, transparent 1px);
  background-size: clamp(28px, 3vw, 42px) clamp(28px, 3vw, 42px);
  opacity: 0.34;
  pointer-events: none;
}

.manifesto__poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,255,255,0.2), transparent 12%),
    radial-gradient(circle at 100% 100%, rgba(255,255,255,0.14), transparent 16%),
    radial-gradient(circle at 100% 0%, rgba(255,255,255,0.12), transparent 12%),
    radial-gradient(circle at 0% 100%, rgba(255,255,255,0.09), transparent 12%);
  mix-blend-mode: screen;
  opacity: 0.5;
  pointer-events: none;
}

.manifesto__meta {
  position: absolute;
  top: clamp(1.25rem, 2vw, 2rem);
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  line-height: 1.8;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 248, 239, 0.92);
  text-shadow: 0 1px 10px rgba(84, 19, 12, 0.18);
}

.manifesto__meta--left {
  left: clamp(1.25rem, 2vw, 2rem);
}

.manifesto__meta--right {
  right: clamp(1.25rem, 2vw, 2rem);
  text-align: right;
}

.manifesto__field {
  position: absolute;
  inset: 0;
}

.manifesto__object {
  position: absolute;
  border-radius: 42% 58% 61% 39% / 39% 35% 65% 61%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 231, 206, 0.95), rgba(255, 231, 206, 0) 28%),
    radial-gradient(circle at 68% 62%, rgba(140, 14, 17, 0.45), rgba(140, 14, 17, 0) 32%),
    linear-gradient(145deg, rgba(126, 14, 17, 0.22), rgba(255, 116, 91, 0.78) 38%, rgba(156, 18, 25, 0.92) 72%, rgba(255, 147, 113, 0.55));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.16),
    inset 14px 16px 32px rgba(255,255,255,0.18),
    inset -16px -22px 34px rgba(99, 10, 12, 0.3),
    0 20px 40px rgba(98, 11, 12, 0.18);
  filter: saturate(1.06);
}

.manifesto__object::before {
  content: '';
  position: absolute;
  inset: 12% 14% 16% 12%;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.14);
  opacity: 0.55;
}

.manifesto__object--one {
  width: clamp(180px, 18vw, 320px);
  aspect-ratio: 0.84;
  top: 14%;
  left: 16%;
  transform: rotate(-14deg);
}

.manifesto__object--two {
  width: clamp(120px, 12vw, 210px);
  aspect-ratio: 0.82;
  top: 20%;
  right: 14%;
  transform: rotate(18deg);
}

.manifesto__object--three {
  width: clamp(160px, 14vw, 260px);
  aspect-ratio: 0.86;
  top: 43%;
  left: 39%;
  transform: rotate(8deg);
}

.manifesto__object--four {
  width: clamp(210px, 23vw, 380px);
  aspect-ratio: 0.84;
  bottom: 11%;
  left: 27%;
  transform: rotate(-10deg);
}

.manifesto__frame {
  position: absolute;
  border: 1px solid rgba(255, 247, 237, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.manifesto__frame::before,
.manifesto__frame::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 248, 239, 0.98);
  box-shadow:
    0 100% 0 rgba(255, 248, 239, 0.98),
    100% 0 0 rgba(255, 248, 239, 0.98),
    100% 100% 0 rgba(255, 248, 239, 0.98);
}

.manifesto__frame::before {
  top: -3px;
  left: -3px;
}

.manifesto__frame::after {
  bottom: -3px;
  right: -3px;
  display: none;
}

.manifesto__frame--one {
  top: 10%;
  left: 24%;
  width: 24%;
  height: 30%;
}

.manifesto__frame--two {
  top: 18%;
  right: 8%;
  width: 21%;
  height: 23%;
}

.manifesto__frame--three {
  top: 49%;
  left: 4%;
  width: 16%;
  height: 18%;
}

.manifesto__frame--four {
  right: 16%;
  bottom: 14%;
  width: 39%;
  height: 24%;
}

.manifesto__content {
  position: absolute;
  left: clamp(1.25rem, 2vw, 2rem);
  top: 50%;
  z-index: 3;
  width: min(46ch, 42%);
  transform: translateY(-22%);
}

.manifesto__overline {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 245, 236, 0.84);
  margin-bottom: clamp(1.25rem, 2vw, 2rem);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.manifesto__overline::before {
  content: '';
  display: inline-block;
  width: 2.2rem;
  height: 1px;
  background: rgba(255, 245, 236, 0.74);
}

.manifesto__lines {
  display: grid;
  gap: clamp(0.9rem, 1.3vw, 1.2rem);
}

.manifesto__line {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.7rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: #fff6ed;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s var(--ease-out-refined),
    transform 0.8s var(--ease-out-refined);
  text-wrap: balance;
  text-shadow: 0 6px 24px rgba(104, 16, 11, 0.22);
}

.manifesto__line.visible {
  opacity: 1;
  transform: translateY(0);
}

.manifesto__line--muted {
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  color: rgba(255, 239, 227, 0.82);
  padding-left: clamp(1.2rem, 3vw, 3rem);
}

.manifesto__footer {
  position: absolute;
  left: clamp(1.25rem, 2vw, 2rem);
  right: clamp(1.25rem, 2vw, 2rem);
  bottom: clamp(1.25rem, 2vw, 2rem);
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.manifesto__title-lockup {
  display: flex;
  align-items: flex-end;
  gap: clamp(0.8rem, 1.3vw, 1.4rem);
  max-width: 70%;
}

.manifesto__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 11vw, 9.5rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.07em;
  color: rgba(255, 247, 239, 0.98);
  text-shadow: 0 10px 30px rgba(93, 14, 10, 0.2);
}

.manifesto__title-side {
  display: grid;
  gap: 0.25rem;
  padding-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.4vw, 1.4rem);
  line-height: 1.08;
  color: rgba(255, 243, 232, 0.95);
}

.manifesto__title-side span:last-child {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 242, 230, 0.72);
}

.manifesto__right-quote {
  max-width: 24ch;
  margin: 0;
  padding-bottom: 0.55rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.25;
  color: rgba(255, 240, 230, 0.86);
  text-align: right;
}

@media (max-width: 1024px) {
  .manifesto__content {
    width: min(56ch, 54%);
    transform: translateY(-15%);
  }

  .manifesto__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .manifesto__title-lockup {
    max-width: 100%;
  }

  .manifesto__right-quote {
    text-align: left;
    max-width: 30ch;
  }
}

@media (max-width: 768px) {
  .manifesto {
    min-height: auto;
    padding: 0;
  }

  .manifesto__poster {
    min-height: 980px;
    border-radius: 0;
  }

  .manifesto__meta {
    font-size: 0.58rem;
    line-height: 1.6;
  }

  .manifesto__meta--left {
    top: 1rem;
    left: 1rem;
  }

  .manifesto__meta--right {
    top: 1rem;
    right: 1rem;
    max-width: 42%;
  }

  .manifesto__content {
    top: 8rem;
    left: 1rem;
    right: 1rem;
    width: min(78vw, 19rem);
    transform: none;
  }

  .manifesto__overline {
    margin-bottom: 1rem;
  }

  .manifesto__lines {
    gap: 0.7rem;
  }

  .manifesto__line {
    font-size: clamp(1.2rem, 7vw, 1.85rem);
    line-height: 1.05;
  }

  .manifesto__line--muted {
    padding-left: 1rem;
  }

  .manifesto__field {
    opacity: 0.82;
  }

  .manifesto__object--one {
    width: 26vw;
    top: 14%;
    left: auto;
    right: 10%;
  }

  .manifesto__object--two {
    width: 30vw;
    top: 36%;
    right: auto;
    left: 6%;
  }

  .manifesto__object--three {
    width: 24vw;
    top: 46%;
    left: auto;
    right: 9%;
  }

  .manifesto__object--four {
    width: 46vw;
    bottom: 15%;
    left: 12%;
  }

  .manifesto__frame--one {
    top: 11%;
    left: auto;
    right: 8%;
    width: 30%;
    height: 18%;
  }

  .manifesto__frame--two {
    top: 33%;
    right: auto;
    left: 4%;
    width: 34%;
    height: 19%;
  }

  .manifesto__frame--three {
    top: 43%;
    left: auto;
    right: 6%;
    width: 28%;
    height: 16%;
  }

  .manifesto__frame--four {
    right: 10%;
    bottom: 14%;
    width: 58%;
    height: 16%;
  }

  .manifesto__footer {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    gap: 0.8rem;
  }

  .manifesto__title-lockup {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    max-width: 78%;
  }

  .manifesto__title {
    font-size: clamp(3.3rem, 16vw, 5.2rem);
  }

  .manifesto__title-side {
    padding-bottom: 0;
    gap: 0.15rem;
  }

  .manifesto__right-quote {
    max-width: 18ch;
    font-size: 0.82rem;
    line-height: 1.2;
  }
}


/* =============================================
   CORE LAB SECTION
   ============================================= */
.core-lab {
  position: relative;
  z-index: var(--z-content);
  padding: var(--space-120) 0;
}

.core-lab__shell {
  display: grid;
  gap: var(--space-48);
}

.core-lab__hero {
  display: block;
}

.core-lab__media {
  position: relative;
  min-height: min(76vw, 860px);
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  background:
    radial-gradient(circle at 14% 18%, rgba(255,255,255,0.66), rgba(255,255,255,0) 18%),
    radial-gradient(circle at 82% 22%, rgba(204, 232, 255, 0.24), rgba(204, 232, 255, 0) 18%),
    radial-gradient(circle at 78% 82%, rgba(255, 237, 214, 0.34), rgba(255, 237, 214, 0) 20%),
    linear-gradient(180deg, #d7dfe6 0%, #c9d4dc 44%, #d8dde2 100%);
  box-shadow: 0 24px 60px rgba(103, 137, 168, 0.18);
}

.core-lab__bg,
.core-lab__subject,
.core-lab__glass,
.core-lab__overlay {
  position: absolute;
}

.core-lab__bg {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(241, 245, 248, 0.16), rgba(225, 231, 236, 0.1)),
    var(--core-lab-image) center center / cover no-repeat;
  filter: saturate(0.92) contrast(1.02) brightness(1.02);
  transform: scale(1.02);
  opacity: 1;
}

.core-lab__subject {
  display: none;
}

.core-lab__glass {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.08)),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.04), rgba(255,255,255,0));
  backdrop-filter: blur(12px) saturate(0.92) contrast(0.98);
  -webkit-backdrop-filter: blur(12px) saturate(0.92) contrast(0.98);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.18),
    inset 0 1px 0 rgba(255,255,255,0.28);
  opacity: 0.96;
}

.core-lab__overlay {
  z-index: 2;
  color: #ffffff;
}

.core-lab__overlay--top-left {
  top: 1.8rem;
  left: 1.8rem;
  max-width: 18rem;
}

.core-lab__overlay--left-mid {
  left: 2rem;
  top: 49%;
  transform: translateY(-50%);
}

.core-lab__overlay--right-top {
  top: 1.8rem;
  right: 1.8rem;
}

.core-lab__overlay--center {
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.core-lab__overlay--bottom-left {
  left: 1.8rem;
  bottom: 1.6rem;
  max-width: 24rem;
}

.core-lab__overlay--bottom-right {
  right: 1.8rem;
  bottom: 1.6rem;
  text-align: right;
}

.core-lab__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin-bottom: 0.5rem;
}

.core-lab__meta {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  line-height: 1.8;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

.core-lab__section-no {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.92);
}

.core-lab__vertical {
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.8vw, 3.4rem);
  line-height: 0.82;
  letter-spacing: -0.06em;
  color: rgba(255,255,255,0.95);
}

.core-lab__title {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.86;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.97);
  text-shadow: 0 4px 18px rgba(0,0,0,0.14);
}

.core-lab__lead {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  line-height: 1.4;
  color: rgba(255,255,255,0.92);
}

.core-lab__note {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
}

.core-lab__micro {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  line-height: 1.7;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
}

.core-states {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-24);
}

.core-state {
  position: relative;
  padding: var(--space-24);
  border-radius: 1.25rem;
  border: 1px solid rgba(130, 182, 223, 0.16);
  background: linear-gradient(180deg, rgba(10, 23, 39, 0.92), rgba(8, 17, 29, 0.8));
  overflow: hidden;
}

.core-state::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(143,213,255,0.6), rgba(143,213,255,0));
}

.core-state__index {
  display: inline-block;
  margin-bottom: var(--space-16);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(143, 213, 255, 0.7);
}

.core-state__name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #dff4ff;
  margin-bottom: var(--space-16);
  font-style: italic;
}

.core-state__desc {
  font-size: 0.875rem;
  color: rgba(219, 238, 250, 0.72);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .core-lab__media {
    min-height: 92vw;
  }

  .core-states {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .core-lab__overlay--center {
    left: 52%;
    width: min(60vw, 34rem);
  }

  .core-lab__title {
    font-size: clamp(2.6rem, 8vw, 4.8rem);
  }
}

@media (max-width: 768px) {
  .core-lab__media {
    min-height: 148vw;
    border-radius: 1.4rem;
  }

  .core-lab__subject {
    display: none;
  }

  .core-lab__glass {
    inset: 0;
  }

  .core-lab__overlay--top-left {
    top: 1rem;
    left: 1rem;
    max-width: 12rem;
  }

  .core-lab__overlay--left-mid {
    top: 43%;
    left: 1rem;
  }

  .core-lab__overlay--right-top {
    top: 1rem;
    right: 1rem;
  }

  .core-lab__overlay--center {
    top: 54%;
    left: 50%;
    width: calc(100% - 2.5rem);
  }

  .core-lab__overlay--bottom-left {
    left: 1rem;
    right: 1rem;
    bottom: 3.8rem;
    max-width: none;
  }

  .core-lab__overlay--bottom-right {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    text-align: left;
  }

  .core-lab__vertical {
    font-size: 1.8rem;
  }

  .core-lab__title {
    font-size: clamp(2.2rem, 12vw, 3.8rem);
  }

  .core-lab__lead {
    font-size: 0.95rem;
  }

  .core-lab__note {
    font-size: 0.74rem;
  }

  .core-states {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   SCROLL INDICATOR
   ============================================= */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-48);
  left: var(--space-48);
  z-index: var(--z-content);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-8);
}

.scroll-indicator__line {
  width: 1px;
  height: 48px;
  background: linear-gradient(
    to bottom,
    var(--color-border-hover),
    transparent
  );
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-indicator__label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  writing-mode: horizontal-tb;
  opacity: 0.5;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* =============================================
   SECTION PATTERN: SELECTED WORK ??Curated Showcase
   ============================================= */
.selected-work {
  padding: var(--space-120) 0 var(--space-160);
  position: relative;
  z-index: var(--z-content);
  background:
    radial-gradient(circle at 18% 34%, rgba(133, 167, 186, 0.34), transparent 30%),
    radial-gradient(circle at 84% 22%, rgba(204, 211, 214, 0.42), transparent 28%),
    radial-gradient(circle at 62% 72%, rgba(170, 184, 191, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(227,231,232,0.98), rgba(214,218,220,1));
  overflow: clip;
  isolation: isolate;
}

.selected-work::before,
.selected-work::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.selected-work::before {
  background:
    radial-gradient(circle at 18% 42%, rgba(147, 182, 203, 0.34), transparent 0 18%),
    radial-gradient(circle at 72% 62%, rgba(244, 241, 237, 0.34), transparent 0 26%),
    radial-gradient(circle at 88% 16%, rgba(157, 181, 191, 0.24), transparent 0 14%);
  filter: blur(34px);
  opacity: 0.92;
}

.selected-work::after {
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 140px 140px;
  mix-blend-mode: multiply;
}

.work-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: var(--space-32);
  margin-bottom: var(--space-96);
  border-top: 1px solid var(--color-divider);
  padding-top: var(--space-24);
}

.work-header__index {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.work-header__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: var(--space-16);
}

.work-header__desc {
  max-width: 52ch;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.work-stage {
  position: relative;
  min-height: min(42vw, 560px);
  max-height: 56vh;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(circle at 24% 30%, rgba(145, 180, 196, 0.24), transparent 24%),
    radial-gradient(circle at 74% 74%, rgba(237, 234, 230, 0.22), transparent 20%),
    linear-gradient(180deg, rgba(233,236,237,0.94), rgba(219,223,225,0.98));
  box-shadow: 0 24px 60px rgba(103, 114, 148, 0.1);
  margin-bottom: var(--space-32);
}

@media (min-width: 1025px) {
  .work-index {
    margin-bottom: 1rem;
  }

  .work-stage {
    min-height: clamp(360px, calc(100svh - 24rem), 560px);
    height: min(42vw, calc(100svh - 24rem));
    max-height: calc(100svh - 24rem);
  }
}

.work-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(15,23,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.42;
  pointer-events: none;
}

.work-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  opacity: 0.16;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.work-echo-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 1rem;
  height: clamp(52px, 6vw, 76px);
  margin: -0.25rem 0 0.6rem;
  z-index: 6;
  pointer-events: none;
}

.work-echo-slot {
  position: relative;
}

.work-echo-anchor {
  --echo-size: clamp(64px, 8vw, 112px);
  position: absolute;
  top: 0;
  left: 0;
  width: var(--echo-size);
  height: var(--echo-size);
  transform: translate(-50%, 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 7;
  filter: drop-shadow(0 18px 34px rgba(97, 110, 123, 0.18));
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,0.95), rgba(255,255,255,0.12) 34%, rgba(178,202,226,0.08) 62%, rgba(255,255,255,0) 74%),
    radial-gradient(circle at 68% 72%, rgba(173, 210, 255, 0.46), rgba(255,255,255,0));
}

.work-echo-flight {
  --echo-size: clamp(64px, 8vw, 112px);
  --echo-hue-a: rgba(255,255,255,0.95);
  --echo-hue-b: rgba(173, 210, 255, 0.82);
  --echo-hue-c: rgba(192, 250, 248, 0.58);
  position: fixed;
  top: 0;
  left: 0;
  width: var(--echo-size);
  height: var(--echo-size);
  z-index: 24;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  filter: drop-shadow(0 18px 34px rgba(97, 110, 123, 0.18));
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,0.95), rgba(255,255,255,0.12) 34%, rgba(178,202,226,0.08) 62%, rgba(255,255,255,0) 74%),
    radial-gradient(circle at 68% 72%, rgba(173, 210, 255, 0.46), rgba(255,255,255,0));
}

.work-echo-anchor::before,
.work-echo-flight::before {
  content: '';
  position: absolute;
  inset: -26%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(177, 197, 212, 0.24), rgba(255,255,255,0));
  filter: blur(16px);
  opacity: 0.72;
}

.work-echo-trail {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--trail-length, 0px);
  height: 2px;
  transform-origin: 0 50%;
  transform: translate(var(--trail-origin-x, 0px), var(--trail-origin-y, 0px)) rotate(var(--trail-angle, 0deg));
  border-radius: 999px;
  opacity: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0),
    rgba(246,246,244,0.94) 22%,
    rgba(160, 182, 198, 0.72) 58%,
    rgba(255,255,255,0)
  );
  filter: blur(1.6px);
  pointer-events: none;
  z-index: 20;
  box-shadow: 0 0 18px rgba(177, 198, 214, 0.32);
}

.work-echo-core,
.work-echo-flight__core {
  inset: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
}

.selected-work[data-echo-palette="manifesto"] .work-echo-anchor,
.selected-work[data-echo-palette="manifesto"] .work-echo-flight {
  --echo-hue-b: rgba(179, 212, 255, 0.88);
  --echo-hue-c: rgba(206, 244, 239, 0.62);
}

.selected-work[data-echo-palette="process"] .work-echo-anchor,
.selected-work[data-echo-palette="process"] .work-echo-flight {
  --echo-hue-b: rgba(196, 211, 255, 0.82);
  --echo-hue-c: rgba(225, 226, 255, 0.62);
}

.selected-work[data-echo-palette="hero"] .work-echo-anchor,
.selected-work[data-echo-palette="hero"] .work-echo-flight {
  --echo-hue-b: rgba(255, 223, 188, 0.82);
  --echo-hue-c: rgba(255, 244, 201, 0.62);
}

.work-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.7s var(--ease-out-refined),
    transform 0.7s var(--ease-out-refined);
  pointer-events: none;
}

.work-scene.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.work-scene__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.95) contrast(1.02);
}

.work-scene__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(249,250,252,0.08), rgba(249,250,252,0.1) 36%, rgba(249,250,252,0.92) 100%),
    linear-gradient(90deg, rgba(249,250,252,0.84), rgba(249,250,252,0.12) 42%, rgba(249,250,252,0.02) 100%);
  opacity: 1;
  transition: opacity 0.4s ease;
}

@media (hover: hover) and (pointer: fine) {
  .selected-work .work-scene:hover .work-scene__media::after,
  .selected-work .work-scene:focus-within .work-scene__media::after {
    opacity: 0;
  }
}

.selected-work .work-scene.is-unveiled .work-scene__media::after {
  opacity: 0;
}

.work-scene__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 1.5rem;
}

.work-scene__topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.52);
}

.work-scene__layout {
  align-self: end;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: clamp(1rem, 2vw, 2rem);
  align-items: end;
}

.work-scene__copy,
.work-scene__aside {
  display: grid;
  gap: 1rem;
}

.work-scene__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(46, 71, 124, 0.76);
}

.work-scene__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #111827;
  max-width: 12ch;
}

.work-scene__summary {
  font-size: 0.9rem;
  color: rgba(31, 41, 55, 0.76);
  line-height: 1.6;
  max-width: 34ch;
}

.work-scene__meta {
  display: grid;
  gap: 0.75rem;
}

.work-scene__meta span {
  display: flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.72rem;
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.45;
}

.work-scene__cta {
  justify-self: start;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1d4ed8;
}

.work-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: var(--space-24);
}

.work-selector {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  width: 100%;
  padding: 1.15rem 1.15rem 1.2rem;
  text-align: left;
  border-radius: 1.3rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247,248,251,0.98));
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    transform 0.35s ease;
  box-shadow: 0 10px 24px rgba(99, 113, 146, 0.06);
}

.work-selector:hover,
.work-selector:focus-visible,
.work-selector.is-active {
  border-color: rgba(59, 130, 246, 0.18);
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(244,247,255,1));
  transform: translateY(-2px);
}

.work-selector__number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
  color: rgba(17, 24, 39, 0.88);
}

.work-selector__body {
  display: grid;
  gap: 0.5rem;
}

.work-selector__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #111827;
}

.work-selector__category {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(71, 85, 105, 0.62);
}

.work-footer {
  display: flex;
  justify-content: flex-end;
  padding-top: var(--space-48);
}

/* =============================================
   SECTION DIVIDER
   ============================================= */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--color-divider) 30%,
    var(--color-divider) 70%,
    transparent
  );
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .work-echo-row {
    height: 60px;
  }

  .work-stage {
    min-height: 56vw;
    max-height: none;
  }

  .work-index {
    grid-template-columns: 1fr;
  }

  .work-scene__layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .work-echo-anchor,
  .work-echo-flight {
    --echo-size: clamp(56px, 9vw, 88px);
  }
}

@media (max-width: 768px) {
  .hero__headline-wrap {
    min-height: clamp(120px, 28vw, 220px);
  }
  .hero__headline {
    max-width: 8.5ch;
  }
  .hero__headline-line {
    font-size: clamp(42px, 11.5vw, 70px);
    line-height: 0.94;
  }
  .hero__core-placeholder {
    width: clamp(58px, 14vw, 94px);
    height: clamp(58px, 14vw, 94px);
  }
  .meta-strip {
    display: none;
  }
  .page-container {
    padding: 0 var(--space-24);
  }
  .main-nav {
    padding: var(--space-24) var(--space-24);
  }
  .nav-links {
    display: none;
  }
  .core-states {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-32);
  }
  .meta-strip {
    display: none;
  }
  .print-cross--tr,
  .print-cross--bl,
  .print-cross--br {
    display: none;
  }
  .hero__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-24);
  }
  .hero__aside {
    align-items: flex-start;
    width: 100%;
  }
  .hero__subtitle {
    text-align: left;
    max-width: none;
  }
  .hero__lead {
    font-size: 0.96rem;
  }
  .hero__services,
  .hero__proof {
    gap: 0.65rem;
  }
  .hero__services span,
  .hero__proof span {
    width: fit-content;
    min-height: auto;
    padding: 0.7rem 0.95rem;
  }

  .work-stage {
    min-height: auto;
    border-radius: 1.4rem;
    padding-bottom: 0;
  }

  .work-echo-row {
    height: 54px;
    margin: 0.25rem 0 0.8rem;
    overflow: visible;
  }

  .work-echo-anchor,
  .work-echo-flight {
    --echo-size: 62px;
  }

  .work-index {
    display: flex;
    overflow-x: auto;
    gap: 0.75rem;
    padding-bottom: 0.25rem;
    margin-bottom: 1rem;
    scroll-snap-type: x mandatory;
  }

  .work-selector {
    min-width: 74vw;
    scroll-snap-align: start;
  }

  .work-scene {
    position: relative;
    inset: auto;
    display: none;
    transform: none;
  }

  .work-scene.is-active {
    display: block;
  }

  .work-scene__media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 4 / 4.4;
  }

  .work-scene__content {
    position: relative;
    inset: auto;
    padding: 1rem;
    gap: 1rem;
  }

  .work-scene__topline {
    flex-direction: column;
    align-items: flex-start;
  }

  .work-scene__title {
    max-width: none;
    font-size: clamp(1.75rem, 8vw, 2.6rem);
  }

  .work-scene__summary {
    max-width: none;
    font-size: 0.88rem;
  }

  .work-scene__meta span {
    padding: 0.45rem 0.75rem;
    font-size: 0.68rem;
  }
}

@media (max-width: 480px) {
  .core-states {
    grid-template-columns: 1fr 1fr;
  }
}

/* =============================================
   SELECTION & SCROLLBAR
   ============================================= */
::selection {
  background: rgba(82,96,255,0.15);
  color: var(--color-text-primary);
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-core);
}
::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 3px;
}

/* =============================================
   CUSTOM MAGNETIC CURSOR
   ============================================= */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  margin-top: -7px;
  border: 1.5px solid var(--color-text-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  /* 雿輻 backdrop-filter ?Ｙ??祉?榆嚗??mix-blend-mode ?函摰??舀?憭?*/
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: invert(1) grayscale(1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.3s var(--ease-out-refined), height 0.3s var(--ease-out-refined), background 0.3s var(--ease-out-refined);
}

.cursor-dot.is-active {
  width: 48px;
  height: 48px;
  margin-left: -24px;
  margin-top: -24px;
  background: var(--color-text-primary);
  border-color: transparent;
}

.cursor-dot.is-view {
  width: 80px;
  height: 80px;
  margin-left: -40px;
  margin-top: -40px;
}

.cursor-label {
  color: var(--color-bg-core);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out-refined);
  /* ?Ｙ?游??質◤ invert 鈭?鋆⊿??摮停??嗥??撌?*/
}

.cursor-dot.is-view .cursor-label {
  opacity: 1;
}

/* ?脣?璈嚗? JavaScript 蝣箄??箸?璈蒂銝?????摰Ｚˊ?虜璅????梯???皜豢? */
body.has-custom-cursor, 
body.has-custom-cursor a, 
body.has-custom-cursor button, 
body.has-custom-cursor .work-card, 
body.has-custom-cursor .orbital-item {
  cursor: none !important;
}

/* =============================================
   CAPABILITIES MARQUEE
   ============================================= */
.capabilities-marquee {
  padding: 4rem 0;
  overflow: hidden;
  /* 撌血瞍賊?桃蔗 */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: marquee-scroll 30s linear infinite;
  white-space: nowrap;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.marquee-item {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 7rem);
  font-style: italic;
  font-weight: 300;
  color: var(--color-text-primary);
  opacity: 0.25;
  transition: opacity 0.4s var(--ease-out-refined);
  user-select: none;
}

.marquee-item:hover {
  opacity: 0.8;
}

.marquee-dot {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  opacity: 0.3;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   PROCESS POSTER ??隞??絲?梢◢??   ============================================= */
.process-poster {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #1833CC;        /* 憌賢?瘛梯?嚗 Selected Work ??? */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
}

/* ??暺蝝釭瘚惜 */
.process-poster::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

/* 撠劑?渡? ??撠? Metadata */
.process-poster__corner {
  position: absolute;
  top: 3rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  z-index: 2;
  line-height: 1.6;
}
.process-poster__corner--left  { left:  3rem; }
.process-poster__corner--right { right: 3rem; text-align: right; }

/* 撠劑??蝺?*/
.process-poster__divider {
  position: absolute;
  top: 5.5rem;
  left: 3rem;
  right: 3rem;
  height: 1px;
  background: rgba(255,255,255,0.2);
  z-index: 2;
}

/* 撠 ????瘚格郊撽?刻?港葉 */
.process-steps-field {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 70vh;
  min-height: 500px;
}

/* 瘥郊撽??*/
.process-float {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 2rem;
  /* ?質???拙耦獢?隞輸????絲?望葫?? */
  border: 1.5px dashed rgba(255,255,255,0.45);
  /* ?郊撽??之撠?鋆賡楛摨行? */
  max-width: 340px;
}

/* Process Float Positions */
.process-float--01 { top: 8%;  left:  5%;   width: 260px; }
.process-float--02 { top: 6%;  right: 8%;   width: 300px; transform: rotate(1.5deg); }
.process-float--03 { top: 48%; left:  12%;  width: 280px; transform: rotate(-1deg); }
.process-float--04 { top: 42%; right: 5%;   width: 320px; transform: rotate(0.8deg); }

.process-float__num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
}

.process-float__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.process-float__desc {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 28ch;
}

/* 摨頞之撅內璅?????隞踴trawberry?之摮?*/
.process-poster__display {
  position: relative;
  z-index: 2;
  padding: 0 3rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.process-poster__display-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 13vw, 180px);
  font-weight: 400;
  font-style: italic;
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  user-select: none;
}

.process-poster__display-sub {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 0.5rem;
}

.process-poster__display-sub span:first-child {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.process-poster__display-sub span:last-child {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* 摨撘???*/
.process-poster__quote {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
  z-index: 2;
}

/* RWD */
@media (max-width: 768px) {
  .process-steps-field { height: auto; min-height: 0; padding: 6rem 1.5rem 2rem; }
  .process-float {
    position: static;
    transform: none !important;
    width: 100% !important;
    max-width: 100%;
    margin-bottom: 1rem;
  }
  .process-poster__corner--right { display: none; }
  .process-poster__display { padding: 1.5rem 1.5rem 2rem; }
  .process-poster__quote { display: none; }
}

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
  padding: 3rem 0 6rem;
  text-align: center;
}

.trust-strip__text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-text-muted);
  opacity: 0.5;
}

.trust-strip__text strong {
  color: var(--color-text-primary);
  opacity: 0.8;
}

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta {
  padding: 10rem 0;
  text-align: center;
  position: relative;
}

.final-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.final-cta__title em {
  font-style: italic;
  color: var(--color-accent);
}

.final-cta__desc {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  margin-bottom: 3rem;
}

.btn-primary--large {
  padding: 1.2rem 3.5rem;
  font-size: 0.85rem;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--color-divider);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.footer-social {
  display: flex;
  gap: 2rem;
}

.footer-social a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.3s var(--ease-out-refined);
}

.footer-social a:hover {
  color: var(--color-text-primary);
}

/* =============================================
   LENIS SMOOTH SCROLL REQUIRED STYLES
   ============================================= */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* =============================================
   WORK PAGE
   ============================================= */
.page-work {
  background:
    radial-gradient(circle at 14% 18%, rgba(184, 207, 223, 0.34), transparent 24%),
    radial-gradient(circle at 84% 22%, rgba(225, 231, 236, 0.82), transparent 30%),
    linear-gradient(180deg, #f6f5f1 0%, #f1f4f5 42%, #f8f8f6 100%);
}

.work-page-hero,
.work-page-intro,
.work-filter-panel,
.web-constellation,
.work-case-bridge {
  position: relative;
  z-index: var(--z-content);
}

.work-page-hero {
  padding: 10rem 0 4rem;
}

.work-page-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.work-page-hero__eyebrow,
.work-page-intro__label,
.work-filter-panel__eyebrow,
.web-constellation__eyebrow,
.work-case-bridge__eyebrow {
  margin: 0 0 1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(53, 64, 79, 0.56);
}

.work-page-hero__title,
.work-page-intro__title,
.web-constellation__title,
.work-case-bridge__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: #18202c;
}

.work-page-hero__title {
  max-width: 11ch;
  font-size: clamp(3.25rem, 7vw, 6.2rem);
}

.work-page-hero__desc,
.work-page-intro__text,
.web-constellation__desc,
.work-preview__text,
.work-case-bridge__points p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(32, 42, 58, 0.78);
}

.work-page-hero__desc {
  max-width: 52ch;
  margin: 1.25rem 0 0;
}

.work-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  margin-top: 2rem;
}

.work-page-hero__poster {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(152, 176, 198, 0.24);
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.88), rgba(232,240,244,0.72)),
    linear-gradient(135deg, rgba(177, 199, 214, 0.52), rgba(244, 240, 234, 0.92));
  box-shadow:
    0 30px 80px rgba(132, 149, 170, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.work-page-hero__mist,
.work-page-hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.work-page-hero__mist {
  background:
    radial-gradient(circle at 22% 28%, rgba(163, 203, 228, 0.45), transparent 24%),
    radial-gradient(circle at 76% 24%, rgba(237, 222, 210, 0.5), transparent 26%),
    radial-gradient(circle at 50% 76%, rgba(184, 191, 213, 0.28), transparent 34%);
  filter: blur(28px);
}

.work-page-hero__grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.36) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.36) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.55;
}

.work-page-hero__orb {
  position: absolute;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.92), rgba(255,255,255,0.2) 34%, rgba(129, 171, 194, 0.32) 68%, rgba(255,255,255,0) 78%),
    linear-gradient(135deg, rgba(149, 175, 192, 0.75), rgba(237, 227, 219, 0.35));
  box-shadow:
    0 22px 44px rgba(97, 117, 137, 0.18),
    inset 0 0 40px rgba(255,255,255,0.34);
}

.work-page-hero__orb--one {
  top: 10%;
  left: 10%;
  width: 170px;
  height: 170px;
}

.work-page-hero__orb--two {
  top: 37%;
  right: 14%;
  width: 138px;
  height: 138px;
}

.work-page-hero__orb--three {
  bottom: 6%;
  left: 28%;
  width: 220px;
  height: 220px;
}

.work-page-hero__caption {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(40, 55, 69, 0.46);
}

.work-page-hero__caption--top {
  top: 1.2rem;
  left: 1.3rem;
}

.work-page-hero__caption--bottom {
  right: 1.3rem;
  bottom: 1.2rem;
}

.work-page-intro {
  padding: 1rem 0 2rem;
}

.work-page-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.8fr);
  gap: 2rem;
  align-items: end;
}

.work-page-intro__title,
.web-constellation__title,
.work-case-bridge__title {
  font-size: clamp(2rem, 4.2vw, 3.6rem);
}

.work-filter-panel {
  padding: 2rem 0 2.5rem;
}

.work-filter-panel__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.work-touch-hint {
  display: none;
  margin: 0.35rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(72, 88, 106, 0.48);
}

.work-filter-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.work-filter,
.web-constellation__tab {
  padding: 0.78rem 1.2rem;
  border: 1px solid rgba(149, 172, 196, 0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  font-family: var(--font-mono);
  font-size: 0.71rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(40, 56, 73, 0.72);
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.work-filter:hover,
.work-filter.is-active,
.web-constellation__tab:hover,
.web-constellation__tab.is-active {
  border-color: rgba(105, 145, 194, 0.26);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(240,245,250,0.92));
  color: #18304e;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(123, 144, 166, 0.12);
}

.work-editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.1rem;
}

.work-tile {
  grid-column: span 4;
  border: 1px solid rgba(153, 176, 196, 0.18);
  border-radius: 1.7rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(243,247,250,0.88));
  box-shadow: 0 20px 50px rgba(134, 150, 169, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    opacity 0.35s ease,
    filter 0.35s ease;
}

.work-tile--feature {
  grid-column: span 7;
}

.work-tile--wide {
  grid-column: span 5;
}

.work-tile.is-hidden {
  opacity: 0.18;
  filter: grayscale(0.2);
}

.work-tile__link {
  display: grid;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.work-tile__media {
  min-height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.work-touch-dot {
  position: fixed;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background:
    radial-gradient(circle at 28% 28%, rgba(255, 248, 244, 0.94), transparent 48%),
    conic-gradient(from 0deg, rgba(255, 170, 189, 0.84), rgba(255, 214, 153, 0.82), rgba(173, 227, 211, 0.82), rgba(165, 201, 255, 0.84), rgba(215, 180, 255, 0.84), rgba(255, 170, 189, 0.84));
  background-size: 220% 220%;
  box-shadow:
    0 0 0 10px rgba(255,255,255,0.14),
    0 16px 34px rgba(73, 88, 108, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: auto;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.82);
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  z-index: 9999;
  animation: workTouchMorandiShift 11s ease-in-out infinite alternate;
  touch-action: none;
  appearance: none;
  -webkit-appearance: none;
}

.work-touch-dot.is-hint {
  opacity: 0.82;
  transform: translate3d(-50%, -50%, 0) scale(1);
  animation: workTouchHintFloat 2.6s ease-in-out infinite;
}

.work-touch-dot.is-active {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1.08);
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 251, 247, 0.98), transparent 44%),
    conic-gradient(from 28deg, rgba(255, 154, 182, 0.9), rgba(255, 210, 145, 0.88), rgba(153, 226, 196, 0.86), rgba(150, 196, 255, 0.9), rgba(207, 171, 255, 0.9), rgba(255, 154, 182, 0.9));
  box-shadow:
    0 0 0 14px rgba(255,255,255,0.14),
    0 18px 40px rgba(73, 88, 108, 0.26);
}

.work-touch-dot.is-dragging {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1.04);
  animation: none;
}

.work-touch-dot__core,
.work-touch-dot__ring {
  position: absolute;
  border-radius: 50%;
}

.work-touch-dot__core {
  inset: 4px;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,0.98), transparent 38%),
    conic-gradient(from 180deg, rgba(255, 189, 205, 0.92), rgba(255, 227, 171, 0.88), rgba(188, 235, 222, 0.86), rgba(184, 214, 255, 0.9), rgba(225, 195, 255, 0.9), rgba(255, 189, 205, 0.92));
  background-size: 240% 240%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95);
  animation: workTouchMorandiShift 9s ease-in-out infinite alternate-reverse;
}

.work-touch-dot__ring {
  inset: 0;
  border: 1px solid rgba(255,255,255,0.72);
}

@keyframes workTouchHintFloat {
  0%,
  100% {
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
  50% {
    transform: translate3d(-50%, calc(-50% - 6px), 0) scale(1.04);
  }
}

@keyframes workTouchMorandiShift {
  0% {
    background-position: 0% 24%;
    filter: hue-rotate(0deg) saturate(1.02);
  }
  33% {
    background-position: 55% 0%;
    filter: hue-rotate(28deg) saturate(1.08);
  }
  66% {
    background-position: 100% 76%;
    filter: hue-rotate(-22deg) saturate(1.04);
  }
  100% {
    background-position: 18% 100%;
    filter: hue-rotate(18deg) saturate(1.1);
  }
}

.work-tile__body {
  display: grid;
  gap: 0.9rem;
  padding: 1.25rem 1.25rem 1.35rem;
}

.work-tile__meta,
.web-preview__label,
.web-preview__metrics,
.work-scene__meta {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  line-height: 1.7;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(73, 89, 107, 0.58);
}

.work-tile__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.work-tile__title,
.web-preview__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.98;
  color: #1a2330;
}

.work-tile__title {
  font-size: clamp(1.6rem, 2.2vw, 2.6rem);
}

.work-tile__desc,
.web-preview__text {
  margin: 0;
  color: rgba(35, 47, 61, 0.78);
  line-height: 1.8;
}

.work-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(122, 140, 160, 0.14);
}

.web-constellation {
  padding: 3.5rem 0;
  overflow: visible;
}

.web-constellation__header {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 0.84fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.4rem;
}

.web-constellation__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.web-constellation__stage {
  position: relative;
}

.web-preview {
  display: none;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: 1.2rem;
  align-items: stretch;
}

.web-preview.is-active {
  display: grid;
}

.web-preview__main,
.web-preview__aside {
  border: 1px solid rgba(153, 176, 196, 0.18);
  border-radius: 1.9rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(241,246,248,0.9));
  box-shadow: 0 20px 55px rgba(131, 148, 168, 0.1);
}

.web-preview__main {
  padding: 1rem;
}

.web-preview__browser {
  overflow: hidden;
  height: 100%;
  border-radius: 1.35rem;
  background: rgba(234, 239, 244, 0.88);
}

.web-preview__browser-top {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(135, 152, 173, 0.14);
}

.web-preview__browser-top span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: rgba(132, 146, 164, 0.46);
}

.web-preview__screen {
  min-height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.web-preview__aside {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 1.5rem;
}

.web-preview__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.web-preview__metrics span {
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(154, 176, 197, 0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.76);
}

.work-case-bridge {
  padding: 1rem 0 6rem;
}

.work-case-bridge__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.86fr);
  gap: 2rem;
  padding: 1.8rem;
  border: 1px solid rgba(156, 178, 194, 0.18);
  border-radius: 1.9rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(190, 214, 224, 0.28), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(242,246,247,0.9));
}

.work-case-bridge__points {
  display: grid;
  gap: 0.8rem;
}

@media (max-width: 1024px) {
  .work-page-hero__layout,
  .work-page-intro__grid,
  .web-constellation__header,
  .web-preview,
  .work-case-bridge__layout {
    grid-template-columns: 1fr;
  }

  .work-editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-tile,
  .work-tile--feature,
  .work-tile--wide {
    grid-column: span 1;
  }

  .work-page-hero__poster {
    min-height: 420px;
  }

}

@media (max-width: 768px) {
  .work-page-hero {
    padding: 8.6rem 0 3rem;
  }

  .work-page-hero__title {
    max-width: 9.5ch;
    font-size: clamp(2.6rem, 13vw, 4.1rem);
  }

  .work-page-hero__poster {
    min-height: 340px;
    border-radius: 1.55rem;
  }

  .work-page-hero__orb--one {
    width: 110px;
    height: 110px;
  }

  .work-page-hero__orb--two {
    width: 92px;
    height: 92px;
  }

  .work-page-hero__orb--three {
    width: 142px;
    height: 142px;
  }

  .work-filter-panel__chips,
  .web-constellation__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.3rem;
  }

  .work-touch-hint {
    display: block;
  }

  .work-touch-dot.is-global {
    opacity: 0.96;
  }

  .work-editorial-grid {
    grid-template-columns: 1fr;
  }

  .work-tile__media {
    min-height: 220px;
    touch-action: none;
  }

  .web-preview__screen {
    min-height: 340px;
    touch-action: none;
  }

  .work-case-bridge {
    padding-bottom: 4rem;
  }

  .work-case-bridge__layout {
    padding: 1.2rem;
  }
}

/* =============================================
   CASE STUDY PAGE
   ============================================= */
.case-page-hero,
.case-statement,
.case-section,
.case-next {
  position: relative;
  z-index: var(--z-content);
}

.case-page-hero {
  padding: 10rem 0 4rem;
  overflow: hidden;
}

.case-page-hero__atmosphere,
.case-entry-wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.case-page-hero__atmosphere {
  opacity: 1;
}

.case-page-hero__glow,
.case-page-hero__grid {
  position: absolute;
  inset: 0;
}

.case-page-hero__glow--one {
  background: radial-gradient(circle at 18% 24%, rgba(196, 210, 224, 0.34), transparent 24%);
  filter: blur(10px);
}

.case-page-hero__glow--two {
  background: radial-gradient(circle at 78% 18%, rgba(236, 226, 214, 0.38), transparent 26%);
  filter: blur(14px);
}

.case-page-hero__grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.22) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.5;
}

.case-entry-wash {
  background:
    radial-gradient(circle at 20% 18%, rgba(198, 211, 224, 0.28), transparent 24%),
    radial-gradient(circle at 78% 24%, rgba(237, 225, 214, 0.34), transparent 26%),
    linear-gradient(180deg, rgba(248,248,246,0.7), rgba(241,244,245,0));
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.9s ease, transform 1.2s ease;
}

.case-page-hero.is-entering .case-entry-wash {
  opacity: 1;
  transform: scale(1);
}

.case-page-hero__topline,
.case-grid__index,
.case-statement__label,
.case-next__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(63, 78, 95, 0.54);
}

.case-page-hero__topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.case-page-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.96fr);
  gap: 1.4rem;
  align-items: center;
}

.case-page-hero__eyebrow {
  margin: 0 0 1rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(69, 85, 102, 0.6);
}

.case-page-hero__title,
.case-grid__title,
.case-next__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #192330;
}

.case-page-hero__title {
  max-width: 10.5ch;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.case-page-hero__desc {
  max-width: 54ch;
  margin: 1.2rem 0 0;
  line-height: 1.9;
  color: rgba(33, 45, 60, 0.78);
}

.case-page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.case-page-hero__prompt {
  display: grid;
  gap: 0.2rem;
  margin-top: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(73, 88, 104, 0.54);
}

.case-page-hero__meta span,
.case-impact span,
.case-note {
  border: 1px solid rgba(153, 176, 196, 0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.76);
  box-shadow: 0 12px 28px rgba(132, 148, 168, 0.08);
}

.case-page-hero__meta span {
  padding: 0.75rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(58, 72, 90, 0.7);
}

.case-page-hero__frame {
  overflow: hidden;
  border: 1px solid rgba(154, 178, 198, 0.18);
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(241,246,248,0.88));
  box-shadow: 0 26px 70px rgba(128, 146, 166, 0.12);
}

.case-page-hero__frame-top {
  display: flex;
  gap: 0.42rem;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(139, 157, 177, 0.14);
}

.case-page-hero__frame-top span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: rgba(136, 151, 169, 0.5);
}

.case-page-hero__image {
  min-height: 560px;
  background-size: cover;
  background-position: center;
}

.case-page-hero__visual {
  position: relative;
}

.case-page-hero__detail-card {
  position: absolute;
  right: -1.2rem;
  bottom: 1.4rem;
  max-width: 260px;
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(154, 178, 198, 0.18);
  border-radius: 1.3rem;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(125, 144, 164, 0.12);
}

.case-page-hero__detail-card span {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(75, 89, 106, 0.54);
}

.case-page-hero__detail-card strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.02;
  color: #1d2735;
}

.case-statement {
  padding: 0 0 2rem;
}

.case-statement__layout {
  display: grid;
  gap: 1rem;
  padding: 1.6rem 0;
  border-top: 1px solid rgba(159, 180, 197, 0.18);
  border-bottom: 1px solid rgba(159, 180, 197, 0.18);
}

.case-statement__quote {
  max-width: 24ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1;
  color: #202b38;
}

.case-section {
  padding: 3rem 0;
}

.case-grid {
  display: grid;
  gap: 1.5rem;
}

.case-grid__head {
  display: grid;
  grid-template-columns: minmax(180px, 0.22fr) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.case-grid__title {
  max-width: 13ch;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.case-grid__body {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 0.74fr);
  gap: 1.3rem;
}

.case-grid__body p,
.case-note p,
.case-system-board__list p,
.case-flow__step p {
  margin: 0;
  line-height: 1.9;
  color: rgba(36, 49, 64, 0.78);
}

.case-grid__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.case-note {
  padding: 1.15rem;
  border-radius: 1.4rem;
}

.case-note h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: #1d2735;
}

.case-system-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: 1rem;
}

.case-system-board__image,
.case-flow__media {
  border-radius: 1.6rem;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 22px 52px rgba(133, 149, 168, 0.12);
}

.case-system-board__list {
  display: grid;
  align-content: center;
  gap: 0.8rem;
  padding: 1.2rem;
  border: 1px solid rgba(154, 178, 198, 0.18);
  border-radius: 1.6rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(242,246,248,0.88));
}

.case-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.case-flow__step {
  display: grid;
  gap: 0.8rem;
}

.case-impact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.case-impact span {
  padding: 0.9rem 1.15rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(60, 74, 91, 0.72);
}

.case-next {
  padding: 2rem 0 6rem;
}

.case-next__layout {
  display: flex;
  justify-content: space-between;
  gap: 1.4rem;
  align-items: end;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(154, 178, 198, 0.18);
}

@media (max-width: 1024px) {
  .case-page-hero__layout,
  .case-grid__head,
  .case-grid__body,
  .case-grid__cards,
  .case-system-board,
  .case-flow {
    grid-template-columns: 1fr;
  }

  .case-page-hero__image {
    min-height: 420px;
  }

  .case-page-hero__detail-card {
    right: 1rem;
    bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .case-page-hero {
    padding: 8.6rem 0 3rem;
  }

  .case-page-hero__topline,
  .case-next__layout {
    flex-direction: column;
    align-items: flex-start;
  }

  .case-page-hero__title {
    max-width: 9.8ch;
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .case-page-hero__image {
    min-height: 320px;
  }

  .case-page-hero__detail-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 0.9rem;
    max-width: none;
  }

  .case-statement__quote {
    max-width: none;
    font-size: clamp(1.55rem, 8vw, 2.4rem);
  }

  .case-section {
    padding: 2.2rem 0;
  }

  .case-next {
    padding-bottom: 4rem;
  }
}
