/* ============================================================
   HUNGRY CLIONE — "The Abyss"
   Deep-sea cinematic identity. Hand-built, no framework.
   ============================================================ */

:root{
  /* depth palette */
  --abyss:        #03070d;
  --abyss-2:      #060d16;
  --deep:         #0a1a2f;
  --deep-2:       #0d2540;
  --ink:          #eaf3f8;
  --muted:        #8aa6b8;
  --muted-2:      #5b7588;
  --line:         rgba(120,170,200,.14);
  --line-strong:  rgba(120,170,200,.28);

  /* bioluminescence + signature red */
  --cyan:         #45e6d4;
  --cyan-soft:    #7ff2e6;
  --red:          #ff4034;
  --red-soft:     #ff6a60;

  --glass:        rgba(8,18,30,.55);

  --serif: "Fraunces", Georgia, serif;
  --sans: "Space Grotesk", system-ui, -apple-system, sans-serif;

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 80px);
  --r: 16px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; overflow-x:clip; }
body{
  font-family:var(--sans);
  background:var(--abyss);
  color:var(--ink);
  line-height:1.6;
  overflow-x:clip; /* NOT hidden — overflow-x:hidden breaks position:sticky (the descent) */
  letter-spacing:.01em;
  -webkit-font-smoothing:antialiased;
}
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; color:inherit; }
::selection{ background:var(--red); color:#fff; }
:focus-visible{ outline:2px solid var(--cyan); outline-offset:3px; border-radius:4px; }

/* ---------- backdrop layers ---------- */
/* --depth: 0 at the surface → 1 at the bottom of the page (set by JS).
   The deeper you scroll, the darker the water gets. */
:root{ --depth:0; }
.depth-bg{
  position:fixed; inset:0; z-index:-4;
  background:
    radial-gradient(120% 80% at 50% -10%, #0b2138 0%, var(--abyss-2) 42%, var(--abyss) 78%);
}
.depth-bg::after{
  content:""; position:absolute; inset:0;
  background:#010204;
  opacity:calc(var(--depth) * .82);
  transition:opacity .25s linear;
}
#abyss{
  position:fixed; inset:0; width:100%; height:100%;
  z-index:-3;
}

/* something passes by, far away */
.lurker{
  position:fixed; top:30vh; left:-30vw; z-index:-2;
  width:clamp(280px,30vw,520px); pointer-events:none;
  opacity:0; filter:blur(14px);
}
.lurker svg{ width:100%; height:auto; fill:#000a14; }
.lurker.swim{ animation:lurk var(--lurk-dur,26s) linear forwards; }
@keyframes lurk{
  0%   { transform:translateX(0) translateY(0) scaleX(var(--lurk-flip,1)) rotate(4deg); opacity:0; }
  12%  { opacity:var(--lurk-op,.5); }
  50%  { transform:translateX(calc(70vw * var(--lurk-dir,1))) translateY(-6vh) scaleX(var(--lurk-flip,1)) rotate(-3deg); }
  88%  { opacity:var(--lurk-op,.5); }
  100% { transform:translateX(calc(140vw * var(--lurk-dir,1))) translateY(2vh) scaleX(var(--lurk-flip,1)) rotate(2deg); opacity:0; }
}

/* ---------- depth gauge (fixed dive instrument) ---------- */
.depth-gauge{
  position:fixed; right:26px; top:50%; transform:translateY(-50%);
  z-index:60; display:flex; flex-direction:column; align-items:center; gap:16px;
  pointer-events:none;
}
.dg-reading{
  writing-mode:vertical-rl; font-size:.68rem; letter-spacing:.34em;
  text-transform:uppercase; color:var(--cyan); font-variant-numeric:tabular-nums;
  text-shadow:0 0 12px rgba(69,230,212,.5);
}
.dg-line{ width:1px; height:120px; background:var(--line-strong); position:relative; overflow:hidden; }
.dg-line i{
  position:absolute; left:-1px; width:3px; height:14px; border-radius:3px;
  background:var(--cyan); box-shadow:0 0 10px var(--cyan);
  top:calc(var(--depth) * 106px);
  transition:top .25s linear;
}
.dg-jp{
  writing-mode:vertical-rl; font-size:.72rem; letter-spacing:.5em;
  color:var(--muted-2);
}
@media (max-width:1340px){ .depth-gauge{ display:none; } }
.grain{
  position:fixed; inset:0; z-index:-2; pointer-events:none; opacity:.5;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  mix-blend-mode:overlay;
}
.cursor-glow{
  position:fixed; top:0; left:0; width:420px; height:420px; z-index:-1;
  margin:-210px 0 0 -210px; pointer-events:none; opacity:0;
  background:radial-gradient(circle, rgba(69,230,212,.10) 0%, transparent 60%);
  transition:opacity .4s;
}

/* ---------- scroll progress ---------- */
.scroll-progress{ position:fixed; top:0; left:0; right:0; height:2px; z-index:200; }
.scroll-progress span{
  display:block; height:100%; width:0;
  background:linear-gradient(90deg, var(--cyan), var(--red));
  box-shadow:0 0 12px var(--cyan);
}

/* ---------- shared ---------- */
.section{ max-width:var(--maxw); margin:0 auto; padding:clamp(90px,12vw,160px) var(--pad); }
.section-label{
  font-size:.72rem; letter-spacing:.42em; text-transform:uppercase;
  color:var(--cyan); margin-bottom:18px; font-weight:500;
}
.section-title{
  font-family:var(--serif); font-weight:300;
  font-size:clamp(2.4rem,6vw,4.6rem); line-height:1.02;
  letter-spacing:-.02em;
}
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:24px; margin-bottom:clamp(40px,6vw,72px); flex-wrap:wrap;
}
.eyebrow{
  font-size:.74rem; letter-spacing:.4em; text-transform:uppercase; color:var(--muted);
}
em{ font-style:italic; color:var(--cyan-soft); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:14px 26px; border-radius:100px;
  font-size:.86rem; font-weight:500; letter-spacing:.04em;
  transition:transform .3s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .3s;
  white-space:nowrap;
}
.btn-primary{
  background:var(--red); color:#fff;
  box-shadow:0 8px 30px rgba(255,64,52,.32);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 14px 40px rgba(255,64,52,.5); }
.btn-line{ border:1px solid var(--line-strong); color:var(--ink); }
.btn-line:hover{ border-color:var(--cyan); color:var(--cyan); transform:translateY(-2px); }
.btn-ghost{ border:1px solid var(--line); padding:9px 18px; font-size:.8rem; }
.btn-ghost:hover{ border-color:var(--red); color:var(--red-soft); }
.btn-block{ width:100%; justify-content:center; }
.btn-dot{
  width:8px; height:8px; border-radius:50%; background:#fff;
  box-shadow:0 0 0 0 rgba(255,255,255,.6); animation:pulse 2.2s infinite;
}
@keyframes pulse{ 0%{box-shadow:0 0 0 0 rgba(255,255,255,.5);} 70%{box-shadow:0 0 0 8px rgba(255,255,255,0);} 100%{box-shadow:0 0 0 0 rgba(255,255,255,0);} }

/* ---------- header ---------- */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding:18px var(--pad);
  transition:padding .4s var(--ease), background .4s, backdrop-filter .4s, border-color .4s;
  border-bottom:1px solid transparent;
}
.site-header.scrolled{
  padding:12px var(--pad);
  background:rgba(4,9,15,.72);
  backdrop-filter:blur(16px) saturate(140%);
  border-bottom:1px solid var(--line);
}
.brand-mark{ height:30px; width:auto; transition:height .4s var(--ease); }
.site-header.scrolled .brand-mark{ height:24px; }
.nav{ display:flex; gap:34px; }
.nav a{
  font-size:.82rem; letter-spacing:.06em; color:var(--muted);
  position:relative; transition:color .3s; padding:4px 0;
}
.nav a::after{
  content:""; position:absolute; left:0; bottom:-2px; height:1px; width:0;
  background:var(--cyan); transition:width .3s var(--ease);
}
.nav a:hover, .nav a.active{ color:var(--ink); }
.nav a:hover::after, .nav a.active::after{ width:100%; }
.header-actions{ display:flex; align-items:center; gap:14px; }

.nav-toggle{ display:none; flex-direction:column; gap:5px; padding:8px; }
.nav-toggle span{ width:22px; height:2px; background:var(--ink); transition:.3s var(--ease); }
.nav-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-menu{
  position:fixed; inset:0; z-index:90;
  background:rgba(3,7,13,.97); backdrop-filter:blur(20px);
  display:flex; flex-direction:column; justify-content:center; gap:8px;
  padding:0 var(--pad);
  transform:translateY(-100%); transition:transform .5s var(--ease);
}
.mobile-menu.open{ transform:translateY(0); }
.mobile-menu a{
  font-family:var(--serif); font-size:2rem; font-weight:300; padding:10px 0;
  color:var(--ink); border-bottom:1px solid var(--line);
}
.mobile-menu .mm-sub{ font-family:var(--sans); font-size:1rem; color:var(--cyan); border:none; margin-top:20px; }

/* ============ HERO ============ */
.hero{
  position:relative; min-height:100svh;
  display:flex; flex-direction:column; justify-content:center;
  /* full-bleed: the surface video spans the entire viewport, no side bars.
     Horizontal padding grows on wide screens so the text still lines up
     with the page's centered content column. */
  width:100%; max-width:none; margin:0;
  padding:140px max(var(--pad), calc((100% - var(--maxw)) / 2 + var(--pad))) 80px;
  overflow:hidden; /* clip rays + presence so they never cause sideways scroll */
}
/* ---------- the sunlit surface (hero video) ----------
   --dive: 0 at the top of the page → 1 after ~one screen of scrolling.
   The bright reef sinks away and the abyss takes over. */
:root{ --dive:0; }
.hero-surface{
  position:absolute; inset:0; z-index:-2; overflow:hidden;
  opacity:calc(1 - var(--dive));
}
.hero-surface video{
  width:100%; height:100%; object-fit:cover;
  /* no filters, no tint — the video's own colors, untouched */
}
/* invisible at the surface; darkness arrives only as you dive */
.hero-scrim{
  position:absolute; inset:0;
  background:linear-gradient(var(--abyss), var(--abyss));
  opacity:calc(var(--dive) * .9);
}
/* readability without overlays: anime-title treatment — white type with a
   tight dark edge that holds on any color. The video pixels stay untouched. */
.hero .hero-title span,
.hero .hero-sub,
.hero .eyebrow,
.hero .hero-stats b,
.hero .hero-stats span,
.hero .scroll-cue{ color:#fff; }
/* like the logo: a real dark rim around every glyph, not a soft glow */
.hero{
  --rim-sm:
    0 1px 0 rgba(2,6,12,.85), 0 -1px 0 rgba(2,6,12,.85),
    1px 0 0 rgba(2,6,12,.85), -1px 0 0 rgba(2,6,12,.85),
    0 2px 6px rgba(2,6,12,.75), 0 6px 20px rgba(2,6,12,.5);
  --rim-lg:
    0 2px 0 rgba(2,6,12,.8), 0 -2px 0 rgba(2,6,12,.8),
    2px 0 0 rgba(2,6,12,.8), -2px 0 0 rgba(2,6,12,.8),
    2px 2px 0 rgba(2,6,12,.7), -2px 2px 0 rgba(2,6,12,.7),
    0 4px 8px rgba(2,6,12,.8), 0 12px 32px rgba(2,6,12,.55),
    0 26px 70px rgba(2,6,12,.4);
  text-shadow:var(--rim-sm);
}
.hero .hero-title{ text-shadow:var(--rim-lg); }
/* the signature line wears the brand color — same as the wordmark */
.hero .hero-title .accent-line{ color:var(--red); }
.hero .btn{ text-shadow:none; }
.hero-title{ font-weight:460; }
.hero .eyebrow, .hero-stats span{ font-weight:500; }
.hero .btn-line{
  color:#fff; border-color:rgba(255,255,255,.65);
  background:rgba(3,7,13,.18); backdrop-filter:blur(6px);
}
/* header over the bright surface: white links with the same glyph edge */
.site-header:not(.scrolled){
  text-shadow:0 1px 2px rgba(2,6,12,.85), 0 2px 8px rgba(2,6,12,.6);
}
.site-header:not(.scrolled) .nav a{ color:#fff; }
.site-header:not(.scrolled) .btn-ghost{
  color:#fff; border-color:rgba(255,255,255,.55); text-shadow:none;
  background:rgba(3,7,13,.18); backdrop-filter:blur(6px);
}

/* sunlight from the surface, fading as it reaches you */
.hero-rays{
  position:absolute; inset:-10% -5% 30% -5%; pointer-events:none; z-index:-1;
  opacity:var(--dive); /* shafts of light only show once the water darkens */
  background:
    repeating-linear-gradient(101deg,
      transparent 0 120px,
      rgba(127,200,235,.045) 120px 170px,
      transparent 170px 300px,
      rgba(127,200,235,.03) 300px 340px);
  -webkit-mask-image:linear-gradient(#000 0%, transparent 72%);
          mask-image:linear-gradient(#000 0%, transparent 72%);
  animation:rays 26s var(--ease) infinite alternate;
}
@keyframes rays{ from{ transform:translateX(-30px) } to{ transform:translateX(40px) } }

/* he is already here — barely */
.hero-presence{
  position:absolute; right:clamp(-6%,2vw,6%); top:50%; transform:translateY(-52%);
  width:clamp(340px,38vw,620px); pointer-events:none; z-index:-1;
  /* invisible in the sunlight — he emerges as the water darkens */
  opacity:calc(.18 * var(--dive));
}
.hero-presence img{
  width:100%; height:auto;
  filter:brightness(.62) blur(1.5px)
         drop-shadow(0 0 70px rgba(69,230,212,.3));
  transform:rotate(-8deg);
  animation:float 11s var(--ease) infinite;
}
@media (max-width:920px){ .hero-presence{ opacity:calc(.12 * var(--dive)); right:-30%; } }
.hero-inner{ max-width:900px; }
.hero-title{
  font-family:var(--serif); font-weight:300;
  font-size:clamp(3.2rem, 11vw, 8.5rem); line-height:.92; letter-spacing:-.03em;
  margin:18px 0 22px;
}
.hero-title span{ display:block; }
.accent-line{ font-style:italic; color:var(--ink); }
.accent-line::after{
  content:""; display:inline-block; width:.32em; height:.32em; margin-left:.18em;
  border-radius:50%; background:var(--red); box-shadow:0 0 24px var(--red);
  vertical-align:baseline; animation:breathe 3s var(--ease) infinite;
}
@keyframes breathe{ 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(1.25);opacity:.7;} }
.hero-sub{ font-size:clamp(1.05rem,2.2vw,1.4rem); color:var(--muted); max-width:520px; }
.hero-cta{ display:flex; gap:14px; margin:40px 0 56px; flex-wrap:wrap; }

.hero-stats{ display:flex; gap:clamp(28px,5vw,64px); list-style:none; flex-wrap:wrap; }
.hero-stats li{ display:flex; flex-direction:column; }
.hero-stats b{
  font-family:var(--serif); font-size:clamp(1.6rem,3.4vw,2.6rem); font-weight:400;
  color:var(--ink); line-height:1; font-variant-numeric:tabular-nums;
}
.hero-stats span{ font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; color:var(--muted-2); margin-top:8px; }

.scroll-cue{
  position:absolute; bottom:34px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:10px;
  font-size:.66rem; letter-spacing:.34em; text-transform:uppercase; color:var(--muted-2);
}
.scroll-cue-line{ width:1px; height:46px; background:linear-gradient(var(--cyan), transparent); position:relative; overflow:hidden; }
.scroll-cue-line::after{ content:""; position:absolute; top:-50%; left:0; width:100%; height:50%; background:var(--cyan); animation:drip 1.8s var(--ease) infinite; }
@keyframes drip{ 0%{top:-50%;} 100%{top:120%;} }

/* ============ THE DESCENT (scroll-scrubbed dive) ============ */
/* Tall scroll track; the video is pinned while scroll drives playback.
   The user's scroll IS the camera descending. */
.descent{ height:400vh; position:relative; } /* roomier — four manifesto phases need reading time */
.descent-sticky{
  position:sticky; top:0; height:100svh; overflow:hidden;
  background:var(--abyss);
}
.descent-sticky video{
  width:100%; height:100%; object-fit:cover; display:block;
  /* no filters — the footage's own colors, per the owner's rule */
}
/* darkness only at the very end of the dive, blending into the deep sections */
.descent-veil{
  position:absolute; inset:0; background:var(--abyss);
  opacity:0; pointer-events:none;
}
/* the manifesto, narrated over the dive — phases fade with scrub progress */
.anchor-mark{ display:block; height:0; }
.descent-copy{ position:absolute; inset:0; pointer-events:none; }
.dc-phase{
  position:absolute; left:50%; top:50%;
  transform:translate(-50%,-50%);
  width:min(720px, calc(100% - 2 * var(--pad)));
  text-align:center; opacity:0; will-change:opacity, transform;
  /* same glyph-hugging rim as the hero — the footage stays untinted */
  text-shadow:
    0 1px 0 rgba(2,6,12,.85), 0 -1px 0 rgba(2,6,12,.85),
    1px 0 0 rgba(2,6,12,.85), -1px 0 0 rgba(2,6,12,.85),
    0 2px 8px rgba(2,6,12,.75), 0 8px 28px rgba(2,6,12,.5);
}
.dc-phase p{
  font-family:var(--serif); font-weight:340;
  font-size:clamp(1.25rem, 2.6vw, 1.8rem); line-height:1.5; color:#fff;
}
.dc-phase .ink{ color:var(--red); font-style:italic; }
.dc-phase em{ color:var(--cyan-soft); }
.dc-display h2{
  font-family:var(--serif); font-weight:380; letter-spacing:-.02em;
  font-size:clamp(2.6rem, 7vw, 5.4rem); line-height:1.02; color:#fff;
  margin-top:16px;
}
.dc-display .section-label{ color:var(--cyan-soft); text-shadow:0 1px 4px rgba(2,6,12,.8); }

/* reduced motion: no pinning, no scrubbing — the manifesto reads as a column */
@media (prefers-reduced-motion:reduce){
  .descent{ height:auto; }
  .descent-sticky{ position:relative; height:auto; }
  .descent-sticky video{ height:46svh; }
  .descent-copy{ position:static; padding:40px var(--pad) 70px; }
  .dc-phase{ position:static; transform:none; opacity:1; margin:38px auto; }
}

/* ============ MARQUEE ============ */
.marquee{
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  padding:22px 0; overflow:hidden; background:rgba(6,13,22,.4);
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
          mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
}
.marquee-track{ display:flex; gap:34px; white-space:nowrap; width:max-content; animation:scroll-x 48s linear infinite; }
.marquee:hover .marquee-track{ animation-play-state:paused; }
.marquee span{ font-family:var(--serif); font-style:italic; font-size:clamp(1.1rem,2.4vw,1.7rem); color:var(--muted); font-weight:300; }
.marquee span:lang(ja){ font-style:normal; letter-spacing:.14em; color:var(--cyan-soft); opacity:.85; }
.marquee .dot{ color:var(--red); font-style:normal; }
@keyframes scroll-x{ to{ transform:translateX(-50%); } }

/* ============ WATCH ============ */
.film-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:clamp(16px,2vw,26px); margin-bottom:clamp(60px,8vw,96px); }
.film-lg{ grid-column:1 / -1; }
.film{ text-align:left; display:block; group:film; transition:transform .4s var(--ease); }
.film:hover{ transform:translateY(-6px); }
.film-thumb{
  position:relative; border-radius:var(--r); overflow:hidden; aspect-ratio:16/9;
  border:1px solid var(--line); background:var(--deep);
}
.film-lg .film-thumb{ aspect-ratio:21/9; }
.film-thumb img{ width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease), filter .5s; filter:saturate(.92) brightness(.82); }
.film:hover .film-thumb img{ transform:scale(1.06); filter:saturate(1.05) brightness(.95); }
.film-thumb::after{ content:""; position:absolute; inset:0; background:linear-gradient(transparent 40%, rgba(3,7,13,.7)); }
.play{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:74px; height:74px; border-radius:50%; z-index:2;
  background:rgba(255,64,52,.92); backdrop-filter:blur(4px);
  box-shadow:0 10px 40px rgba(255,64,52,.4);
  transition:transform .4s var(--ease), background .3s;
}
.play::before{ content:""; position:absolute; top:50%; left:54%; transform:translate(-50%,-50%); border-style:solid; border-width:11px 0 11px 18px; border-color:transparent transparent transparent #fff; }
.film:hover .play{ transform:translate(-50%,-50%) scale(1.12); }
.play-sm{ width:50px; height:50px; }
.play-sm::before{ border-width:8px 0 8px 13px; }
.film-dur{ position:absolute; bottom:12px; right:12px; z-index:3; font-size:.74rem; padding:4px 9px; border-radius:6px; background:rgba(3,7,13,.7); backdrop-filter:blur(6px); letter-spacing:.05em; }
.film-meta{ padding:18px 4px 0; }
.film-tag{ font-size:.7rem; letter-spacing:.28em; text-transform:uppercase; color:var(--cyan); }
.film-views{ font-style:normal; color:var(--muted-2); letter-spacing:.12em; }
.film-meta h3{ font-family:var(--serif); font-weight:300; font-size:clamp(1.2rem,2.4vw,1.9rem); margin-top:8px; line-height:1.15; }

/* shorts rail */
.rail-head{ display:flex; align-items:baseline; gap:18px; margin-bottom:22px; }
.rail-head h3{ font-family:var(--serif); font-weight:400; font-size:1.6rem; }
.rail-hint{ font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; color:var(--muted-2); }
.rail{
  display:flex; gap:16px; overflow-x:auto; padding-bottom:20px; scroll-snap-type:x mandatory;
  scrollbar-width:thin; scrollbar-color:var(--line-strong) transparent; cursor:grab;
}
.rail.dragging{ cursor:grabbing; scroll-snap-type:none; }
.rail::-webkit-scrollbar{ height:6px; }
.rail::-webkit-scrollbar-thumb{ background:var(--line-strong); border-radius:10px; }
.short{
  position:relative; flex:0 0 auto; width:200px; aspect-ratio:9/16;
  border-radius:14px; overflow:hidden; border:1px solid var(--line);
  scroll-snap-align:start; transition:transform .4s var(--ease), border-color .3s;
}
.short:hover{ transform:translateY(-6px); border-color:var(--cyan); }
.short img{ width:100%; height:100%; object-fit:cover; filter:saturate(.95) brightness(.78); transition:filter .4s; }
.short:hover img{ filter:saturate(1.1) brightness(.95); }
.short::after{ content:""; position:absolute; inset:0; background:linear-gradient(transparent 45%, rgba(3,7,13,.85)); }
.short .play-sm{ z-index:2; }
.short-views{ position:absolute; top:10px; left:10px; z-index:3; font-size:.66rem; letter-spacing:.06em; padding:4px 8px; border-radius:6px; background:rgba(255,64,52,.85); }
.short p{ position:absolute; bottom:12px; left:12px; right:12px; z-index:3; font-size:.82rem; line-height:1.25; }

/* ============ CLIONE ============ */
.clione{ display:grid; grid-template-columns:1fr 1.05fr; gap:clamp(40px,7vw,90px); align-items:center; }
.clione-art{ display:flex; justify-content:center; }
.specimen{ position:relative; width:min(420px,80vw); aspect-ratio:1; display:grid; place-items:center; }
.specimen-img{
  width:78%; z-index:2;
  filter:drop-shadow(0 0 44px rgba(69,230,212,.4)) drop-shadow(0 0 120px rgba(69,230,212,.18));
  animation:float 7s var(--ease) infinite;
}
@keyframes float{ 0%,100%{transform:translateY(-10px) rotate(-2deg);} 50%{transform:translateY(10px) rotate(2deg);} }
.specimen-ring{ position:absolute; inset:0; border:1px solid var(--line-strong); border-radius:50%; }
.specimen-ring.r2{ inset:14%; border-color:var(--line); border-style:dashed; animation:spin 60s linear infinite; }
.specimen::before{ content:""; position:absolute; inset:18%; border-radius:50%; background:radial-gradient(circle, rgba(69,230,212,.18), transparent 70%); filter:blur(20px); }
@keyframes spin{ to{ transform:rotate(360deg); } }
.clione-copy p{ color:var(--muted); font-size:1.05rem; margin-top:18px; max-width:520px; }
.clione-copy .section-title{ margin-top:8px; }
.spec{ margin-top:34px; display:grid; gap:1px; background:var(--line); border:1px solid var(--line); border-radius:12px; overflow:hidden; max-width:480px; }
.spec div{ display:flex; justify-content:space-between; gap:20px; padding:15px 20px; background:var(--abyss-2); }
.spec dt{ color:var(--muted-2); font-size:.78rem; letter-spacing:.16em; text-transform:uppercase; }
.spec dd{ color:var(--ink); text-align:right; }

/* ============ THE CRAFT ============ */
.craft{
  display:grid; grid-template-columns:1fr 1.2fr;
  gap:clamp(40px,7vw,90px); align-items:center;
}
.craft-copy p{ color:var(--muted); font-size:1.05rem; margin-top:18px; max-width:480px; }
.craft-copy .section-title{ margin-top:8px; }
.craft-sheet{ margin:0; position:relative; }
.craft-sheet img{
  width:100%; border-radius:10px;
  transform:rotate(-1.4deg);
  box-shadow:
    0 2px 0 rgba(255,255,255,.06) inset,
    0 24px 70px rgba(0,0,0,.55),
    0 6px 18px rgba(0,0,0,.4);
  transition:transform .6s var(--ease);
}
.craft-sheet:hover img{ transform:rotate(0deg) scale(1.015); }
.craft-sheet figcaption{
  margin-top:18px; text-align:center;
  font-size:.74rem; letter-spacing:.22em; text-transform:uppercase;
  color:var(--muted-2);
}
/* more sheets from across the series */
.sheet-strip{
  grid-column:1 / -1;
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:clamp(12px,2vw,24px); margin-top:clamp(28px,4vw,48px);
}
.sheet-strip figure{ margin:0; }
.sheet-strip img{
  width:100%; border-radius:8px;
  transform:rotate(var(--tilt,-1.1deg));
  box-shadow:0 12px 36px rgba(0,0,0,.5), 0 3px 10px rgba(0,0,0,.35);
  transition:transform .5s var(--ease);
}
.sheet-strip figure:nth-child(even) img{ --tilt:1.2deg; }
.sheet-strip figure:hover img{ transform:rotate(0deg) scale(1.05); }
.sheet-strip figcaption{
  margin-top:12px; text-align:center;
  font-size:.7rem; letter-spacing:.26em; text-transform:uppercase;
  color:var(--muted-2);
}
@media (max-width:920px){
  .craft{ grid-template-columns:1fr; }
  .sheet-strip{ grid-template-columns:repeat(2,1fr); }
}

/* ============ REACH ============ */
.reach{ border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:rgba(6,13,22,.4); }
.reach-grid{ max-width:var(--maxw); margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); }
.reach-item{ padding:clamp(40px,6vw,70px) var(--pad); text-align:center; border-left:1px solid var(--line); }
.reach-item:first-child{ border-left:none; }
.reach-item b{ display:block; font-family:var(--serif); font-weight:300; font-size:clamp(2.2rem,5vw,3.6rem); color:var(--ink); font-variant-numeric:tabular-nums; line-height:1; }
.reach-item span{ display:block; margin-top:12px; font-size:.74rem; letter-spacing:.18em; text-transform:uppercase; color:var(--muted-2); }

/* ============ DISPATCHES ============ */
.news-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(18px,2.5vw,30px); }
.news-card{ border:1px solid var(--line); border-radius:var(--r); overflow:hidden; background:var(--abyss-2); transition:transform .4s var(--ease), border-color .3s; }
.news-card:hover{ transform:translateY(-6px); border-color:var(--line-strong); }
.news-img{ aspect-ratio:16/10; overflow:hidden; }
.news-img img{ width:100%; height:100%; object-fit:cover; filter:saturate(.9) brightness(.8); transition:transform .8s var(--ease), filter .5s; }
.news-card:hover .news-img img{ transform:scale(1.06); filter:saturate(1.05) brightness(.95); }
.news-body{ padding:24px; }
.news-body time{ font-size:.72rem; letter-spacing:.16em; text-transform:uppercase; color:var(--cyan); }
.news-body h3{ font-family:var(--serif); font-weight:400; font-size:1.35rem; margin:12px 0 10px; line-height:1.2; }
.news-body p{ color:var(--muted); font-size:.92rem; }
.news-read{ display:inline-block; margin-top:18px; font-size:.82rem; color:var(--ink); transition:color .3s, transform .3s; }
.news-card:hover .news-read{ color:var(--red-soft); transform:translateX(4px); }

/* ============ SIGNUP ============ */
.signup{ text-align:center; }
.signup-inner{ max-width:680px; margin:0 auto; }
.signup-head{ font-family:var(--serif); font-weight:300; font-size:clamp(2.2rem,6vw,4rem); line-height:1.02; letter-spacing:-.02em; margin:14px 0 16px; }
.signup-sub{ color:var(--muted); margin-bottom:40px; }
.lead-form{ max-width:520px; margin:0 auto; }
.field{ display:flex; gap:10px; border:1px solid var(--line-strong); border-radius:100px; padding:6px 6px 6px 22px; background:rgba(8,18,30,.6); transition:border-color .3s, box-shadow .3s; }
.field:focus-within{ border-color:var(--cyan); box-shadow:0 0 0 4px rgba(69,230,212,.1); }
.field input{ flex:1; background:none; border:none; color:var(--ink); font-size:1rem; outline:none; min-width:0; }
.field input::placeholder{ color:var(--muted-2); }
.hp{ position:absolute; left:-9999px; width:1px; height:1px; opacity:0; }
.form-msg{ margin-top:16px; font-size:.88rem; min-height:1.2em; transition:color .3s; }
.form-msg.ok{ color:var(--cyan); } .form-msg.err{ color:var(--red-soft); }

/* spinner */
.btn-spinner{ display:none; width:16px; height:16px; border:2px solid rgba(255,255,255,.35); border-top-color:#fff; border-radius:50%; animation:spin .7s linear infinite; }
.btn.loading .btn-label{ opacity:.5; }
.btn.loading .btn-spinner{ display:inline-block; }

/* ============ CONTACT ============ */
.contact{ display:grid; grid-template-columns:1fr 1.1fr; gap:clamp(40px,7vw,90px); align-items:start; }
.contact-left p{ color:var(--muted); margin-top:18px; max-width:380px; }
.contact-channels{ list-style:none; margin-top:34px; display:grid; gap:1px; background:var(--line); border:1px solid var(--line); border-radius:12px; overflow:hidden; max-width:380px; }
.contact-channels a{ display:flex; justify-content:space-between; padding:16px 20px; background:var(--abyss-2); transition:background .3s, color .3s; }
.contact-channels a:hover{ background:var(--deep); color:var(--cyan); }
.contact-channels span{ color:var(--cyan); }

.contact-form{ display:grid; gap:16px; }
.cf-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field-block{ display:grid; gap:8px; }
.field-block span{ font-size:.74rem; letter-spacing:.16em; text-transform:uppercase; color:var(--muted); }
.field-block input,.field-block select,.field-block textarea{
  background:rgba(8,18,30,.6); border:1px solid var(--line-strong); border-radius:12px;
  padding:14px 16px; color:var(--ink); font-family:inherit; font-size:.96rem; outline:none;
  transition:border-color .3s, box-shadow .3s; width:100%; resize:vertical;
}
.field-block input:focus,.field-block select:focus,.field-block textarea:focus{ border-color:var(--cyan); box-shadow:0 0 0 4px rgba(69,230,212,.1); }
.field-block select{ appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238aa6b8' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 18px center; }

/* ============ FOOTER ============ */
.site-footer{ border-top:1px solid var(--line); padding:clamp(60px,8vw,90px) var(--pad) 40px; max-width:var(--maxw); margin:0 auto; }
.footer-ghost{
  font-family:var(--serif); font-style:italic; font-weight:300;
  font-size:clamp(2.8rem,9vw,7rem); line-height:1; letter-spacing:-.02em;
  color:transparent;
  -webkit-text-stroke:1px rgba(138,166,184,.22);
  margin-bottom:clamp(50px,7vw,90px);
  white-space:nowrap;
}
@supports not (-webkit-text-stroke:1px #000){
  .footer-ghost{ color:rgba(138,166,184,.14); }
}
.footer-top{ display:flex; align-items:center; gap:24px; flex-wrap:wrap; padding-bottom:50px; border-bottom:1px solid var(--line); }
.footer-mark{ height:34px; }
.footer-tag{ font-family:var(--serif); font-style:italic; font-size:1.3rem; color:var(--muted); }
.footer-cols{ display:flex; gap:clamp(40px,8vw,120px); flex-wrap:wrap; padding:50px 0; }
.footer-cols h4{ font-size:.74rem; letter-spacing:.2em; text-transform:uppercase; color:var(--muted-2); margin-bottom:18px; font-weight:500; }
.footer-cols a{ display:block; color:var(--muted); padding:7px 0; transition:color .3s; }
.footer-cols a:hover{ color:var(--cyan); }
.footer-bottom{ display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; font-size:.8rem; color:var(--muted-2); }
.footer-made{ font-style:italic; }

/* ============ LIGHTBOX ============ */
.lightbox{
  position:fixed; inset:0; z-index:300; display:flex; align-items:center; justify-content:center;
  padding:24px; background:rgba(3,7,13,.92); backdrop-filter:blur(10px);
  opacity:0; pointer-events:none; transition:opacity .4s;
}
.lightbox.open{ opacity:1; pointer-events:auto; }
.lightbox-frame{ width:min(1000px,100%); aspect-ratio:16/9; border-radius:var(--r); overflow:hidden; box-shadow:0 30px 90px rgba(0,0,0,.6); transform:scale(.96); transition:transform .4s var(--ease); }
.lightbox.open .lightbox-frame{ transform:scale(1); }
.lightbox-frame.vertical{ aspect-ratio:9/16; width:auto; height:min(86vh,800px); }
.lightbox-frame iframe{ width:100%; height:100%; border:none; }
.lightbox-close{ position:absolute; top:24px; right:28px; font-size:1.4rem; width:46px; height:46px; border-radius:50%; border:1px solid var(--line-strong); transition:background .3s, transform .3s; }
.lightbox-close:hover{ background:var(--red); transform:rotate(90deg); }

/* ============ ARTICLE / DISPATCH PAGES ============ */
.post{ padding-top:84px; }
.post-hero{ position:relative; height:min(62vh,560px); overflow:hidden; }
.post-hero img{
  width:100%; height:100%; object-fit:cover;
  filter:saturate(.95) brightness(.85);
}
.post-hero::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(3,7,13,.35) 0%, transparent 35%, rgba(3,7,13,.55) 70%, var(--abyss) 100%);
}
.post-head{
  max-width:760px; margin:-110px auto 0; position:relative; z-index:2;
  padding:0 var(--pad);
}
.post-kicker{
  font-size:.72rem; letter-spacing:.42em; text-transform:uppercase;
  color:var(--cyan); margin-bottom:16px;
}
.post-kicker a{ color:inherit; }
.post-kicker a:hover{ color:var(--cyan-soft); }
.post-head h1{
  font-family:var(--serif); font-weight:330;
  font-size:clamp(2.4rem,6.5vw,4.4rem); line-height:1.02; letter-spacing:-.02em;
  text-shadow:0 2px 24px rgba(3,7,13,.8);
}
.post-meta{ margin-top:18px; font-size:.8rem; letter-spacing:.14em; text-transform:uppercase; color:var(--muted-2); }
.post-meta time{ color:var(--muted); }

.post-body{ max-width:680px; margin:0 auto; padding:clamp(40px,6vw,70px) var(--pad) 0; }
.post-body p{ color:var(--muted); font-size:1.08rem; line-height:1.85; margin-bottom:26px; }
.post-body .lede{ font-family:var(--serif); font-weight:300; font-size:1.45rem; line-height:1.55; color:var(--ink); }
.post-body .lede::first-letter{
  font-size:3.4em; float:left; line-height:.82; padding:6px 14px 0 0;
  color:var(--red); font-style:italic;
}
.post-body h2{
  font-family:var(--serif); font-weight:400; font-size:1.7rem; letter-spacing:-.01em;
  color:var(--ink); margin:46px 0 18px;
}
.post-body blockquote{
  margin:38px 0; padding:6px 0 6px 28px; border-left:2px solid var(--cyan);
  font-family:var(--serif); font-style:italic; font-weight:300;
  font-size:1.4rem; line-height:1.5; color:var(--ink);
}
.post-body figure{ margin:42px 0; }
.post-body figure img{
  width:100%; border-radius:12px;
  box-shadow:0 18px 50px rgba(0,0,0,.5);
}
.post-body figure.sheet img{ transform:rotate(-1deg); }
.post-body figcaption{
  margin-top:14px; text-align:center; font-size:.74rem;
  letter-spacing:.2em; text-transform:uppercase; color:var(--muted-2);
}
.post-cta{ display:flex; gap:14px; flex-wrap:wrap; margin:40px 0 10px; }

.post-nav{
  max-width:980px; margin:clamp(60px,9vw,110px) auto 0; padding:0 var(--pad);
  display:grid; grid-template-columns:1fr 1fr; gap:clamp(14px,2vw,24px);
}
.post-nav-label{
  grid-column:1/-1; font-size:.72rem; letter-spacing:.4em; text-transform:uppercase;
  color:var(--cyan); margin-bottom:6px;
}
.post-nav a{
  border:1px solid var(--line); border-radius:var(--r); padding:24px 26px;
  background:var(--abyss-2); transition:transform .4s var(--ease), border-color .3s;
}
.post-nav a:hover{ transform:translateY(-4px); border-color:var(--line-strong); }
.post-nav .pn-dir{ font-size:.7rem; letter-spacing:.26em; text-transform:uppercase; color:var(--muted-2); }
.post-nav .pn-title{ display:block; font-family:var(--serif); font-weight:400; font-size:1.2rem; color:var(--ink); margin-top:10px; line-height:1.25; }
@media (max-width:680px){ .post-nav{ grid-template-columns:1fr; } }

/* ============ LEGAL PAGES ============ */
.legal-doc{
  max-width:760px; margin:0 auto;
  padding:150px var(--pad) clamp(70px,9vw,110px);
}
.legal-doc h1{
  font-family:var(--serif); font-weight:330;
  font-size:clamp(2.2rem,5.5vw,3.6rem); line-height:1.05; letter-spacing:-.02em;
  margin:14px 0 10px;
}
.legal-doc h2{
  font-family:var(--serif); font-weight:400; font-size:1.45rem;
  color:var(--cyan); margin:54px 0 8px;
  padding-bottom:12px; border-bottom:1px solid var(--line);
}
.legal-doc h3{
  font-size:1.05rem; font-weight:600; color:var(--ink);
  margin:30px 0 6px; letter-spacing:.01em;
}
.legal-doc p{ color:var(--muted); font-size:.96rem; line-height:1.8; margin-bottom:12px; }
.legal-doc p.sub{ padding-left:26px; }
.legal-doc a{ color:var(--cyan); word-break:break-all; }
.legal-doc a:hover{ color:var(--cyan-soft); }
.legal-doc .post-meta{ margin-bottom:8px; }

/* ============ REVEAL ============ */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .9s var(--ease) var(--d,0s), transform .9s var(--ease) var(--d,0s); }
.reveal.in{ opacity:1; transform:none; }

/* ============ RESPONSIVE ============ */
@media (max-width:920px){
  .nav, .header-actions .btn-ghost{ display:none; }
  .nav-toggle{ display:flex; }
  .clione{ grid-template-columns:1fr; }
  .clione-art{ order:-1; }
  .reach-grid{ grid-template-columns:repeat(2,1fr); }
  .reach-item:nth-child(3){ border-left:none; }
  .news-grid{ grid-template-columns:1fr; }
  .contact{ grid-template-columns:1fr; }
  .film-grid{ grid-template-columns:1fr; }
}
@media (max-width:560px){
  .footer-ghost{ white-space:normal; }
  .reach-grid{ grid-template-columns:1fr; }
  .reach-item{ border-left:none; border-top:1px solid var(--line); }
  .reach-item:first-child{ border-top:none; }
  .cf-row{ grid-template-columns:1fr; }
  .hero-stats{ gap:24px; }
  .field{ flex-direction:column; padding:8px; border-radius:18px; }
  .field input{ padding:10px 14px; text-align:center; }
  .field .btn{ width:100%; justify-content:center; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
  .reveal{ opacity:1; transform:none; }
}
