/* ────────────────────────────────────────────────────────────
   ✺ neon specimen 01
   hero + floating nav + project cards
   void black · dual glow · nature under artificial light
   ──────────────────────────────────────────────────────────── */

@property --glow {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}

:root {
  /* palette — oklch with hex fallback */
  --void:        #070709;
  --void-2:      #0e0e14;
  --ink:         oklch(0.07 0.01 270);
  --blue:        oklch(0.62 0.24 264);
  --blue-hex:    #0066ff;
  --pink:        oklch(0.65 0.28 340);
  --pink-hex:    #ff1493;
  --violet:      oklch(0.55 0.26 300);
  --bio:         oklch(0.88 0.35 142);
  --bio-hex:     #39ff14;
  --orange:      oklch(0.72 0.22 40);
  --text:        oklch(0.94 0 0 / 0.92);
  --text-dim:    oklch(0.94 0 0 / 0.55);
  --text-mute:   oklch(0.94 0 0 / 0.32);
  --rule:        oklch(1 0 0 / 0.08);

  /* glow stacks — always two sources */
  --glow-dual:
    -24px 0 80px -10px oklch(0.62 0.24 264 / 0.55),
     24px 0 80px -10px oklch(0.65 0.28 340 / 0.55);
  --glow-dual-soft:
    -16px 0 60px -14px oklch(0.62 0.24 264 / 0.35),
     16px 0 60px -14px oklch(0.65 0.28 340 / 0.35);
  --glow-seam: 0 0 14px oklch(0.62 0.24 264 / 0.65);

  /* type */
  --f-display: "Syne", "Dela Gothic One", sans-serif;
  --f-body:    "Space Grotesk", system-ui, sans-serif;
  --f-mono:    "Space Mono", ui-monospace, monospace;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  background: var(--void);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

::selection {
  background: oklch(0.65 0.28 340 / 0.6);
  color: #fff;
}

/* ────── grain + backdrop orbs ────── */

.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 200;
  mix-blend-mode: overlay;
  opacity: 0.12;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.backdrop {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.orb {
  position: absolute;
  width: 60vmax; height: 60vmax;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  will-change: transform;
  animation: float 18s var(--ease) infinite alternate;
}
.orb--blue {
  background: radial-gradient(circle, var(--blue) 0%, transparent 60%);
  top: -20vmax; left: -20vmax;
}
.orb--pink {
  background: radial-gradient(circle, var(--pink) 0%, transparent 60%);
  bottom: -25vmax; right: -20vmax;
  animation-delay: -6s;
}
@keyframes float {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(6vmax, -4vmax, 0) scale(1.08); }
}

/* ────── custom cursor ────── */

.cursor { display: none; }
.cursor__dot,
.cursor__ring {
  position: absolute; top: 0; left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform, width, height;
}
.cursor__dot {
  width: 8px; height: 8px;
  background: #fff;
  box-shadow: 0 0 14px rgba(255,255,255,0.9),
              0 0 28px var(--pink-hex);
}
.cursor__ring {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 0 22px rgba(0,102,255,0.35);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.cursor.is-hover .cursor__ring {
  width: 64px; height: 64px;
  background: rgba(255, 20, 147, 0.08);
  border-color: var(--pink-hex);
}
@media (max-width: 820px), (hover: none) {
  .cursor { display: none; }
}

/* ────── floating nav ────── */

.nav {
  position: fixed;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 42px);
  padding: 10px 14px 10px 22px;
  border-radius: 999px;
  background: color-mix(in oklch, var(--void) 72%, transparent);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--rule);
  box-shadow: var(--glow-dual-soft);
  font-size: 13px;
  animation: nav-breathe 6s ease-in-out infinite;
}
@keyframes nav-breathe {
  0%, 100% {
    box-shadow:
      -16px 0 60px -14px oklch(0.62 0.24 264 / 0.35),
       16px 0 60px -14px oklch(0.65 0.28 340 / 0.35);
  }
  50% {
    box-shadow:
      -22px 0 80px -10px oklch(0.62 0.24 264 / 0.55),
       22px 0 80px -10px oklch(0.65 0.28 340 / 0.55);
  }
}
.nav__mark {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.nav__glyph {
  display: inline-block;
  font-size: 15px;
  color: var(--text);
  animation: spin 24s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.nav__links {
  display: flex; gap: clamp(14px, 2vw, 28px);
  list-style: none;
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav__links a {
  position: relative;
  display: inline-block;
  padding: 6px 4px;
  color: var(--text-dim);
  transition: color 0.3s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute; left: 4px; right: 4px; bottom: 2px;
  height: 1px;
  background: linear-gradient(90deg, #c8a2ff 0%, #dca0d8 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
  box-shadow: 0 0 10px rgba(220, 160, 216, 0.55);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
  border: 1px solid var(--rule);
  color: var(--text);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.nav__cta:hover { transform: translateY(-1px); border-color: var(--pink); }
.nav__cta em { color: var(--bio-hex); font-style: normal; }
.nav__cta i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--bio-hex);
  box-shadow: 0 0 8px var(--bio-hex), 0 0 14px var(--bio-hex);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: 0.4; } }

/* ─── nav toggle (hamburger) ─── */
.nav__toggle {
  display: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: transparent;
  cursor: pointer;
  position: relative;
  padding: 0;
  flex-shrink: 0;
}
.nav__toggle span {
  position: absolute;
  left: 12px; right: 12px;
  height: 1px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.4s var(--ease), top 0.4s var(--ease), opacity 0.3s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 14px; }
.nav__toggle span:nth-child(2) { top: 21px; }
.nav.is-open .nav__toggle span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { top: 17px; transform: rotate(-45deg); }

/* ─── tablet: tighter spacing ─── */
@media (max-width: 1024px) {
  .nav { gap: clamp(12px, 2vw, 28px); padding: 9px 12px 9px 18px; }
  .nav__links { gap: clamp(10px, 1.6vw, 22px); font-size: 11px; }
}

/* ─── mobile: collapse links into dropdown panel ─── */
@media (max-width: 720px) {
  .nav {
    top: 14px;
    padding: 7px 8px 7px 14px;
    gap: 12px;
    max-width: calc(100vw - 28px);
  }
  .nav__mark { font-size: 11px; }
  .nav__name { display: inline; }
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    flex-direction: column;
    gap: 4px;
    padding: 16px 28px;
    border-radius: 22px;
    background: color-mix(in oklch, var(--void) 88%, transparent);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    border: 1px solid var(--rule);
    box-shadow:
      -16px 0 60px -14px oklch(0.62 0.24 264 / 0.35),
       16px 0 60px -14px oklch(0.65 0.28 340 / 0.35);
    opacity: 0;
    transform: translate(-50%, -8px) scale(0.96);
    transform-origin: top center;
    pointer-events: none;
    transition: opacity 0.35s var(--ease), transform 0.4s var(--ease);
  }
  .nav.is-open .nav__links {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
    pointer-events: auto;
  }
  .nav__links li { text-align: center; }
  .nav__links a { display: inline-block; padding: 8px 14px; font-size: 12px; }
}

/* ─── very small: hide name, keep glyph + toggle ─── */
@media (max-width: 420px) {
  .nav__name { display: none; }
  .nav { padding: 7px 8px 7px 12px; }
}

/* ────── HERO ────── */

.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(100px, 14vh, 160px) clamp(24px, 5vw, 72px) 30px;
  display: flex;
  flex-direction: column;
  z-index: 1;
  isolation: isolate;
}

.hero__meta {
  position: absolute;
  top: clamp(110px, 13vh, 150px);
  display: flex; flex-direction: column; gap: 4px;
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-mute);
}
.hero__meta--tl { left: clamp(24px, 5vw, 72px); }
.hero__meta--tr {
  right: clamp(24px, 5vw, 72px);
  align-items: flex-end;
  padding-top: 11px;
}
.tick {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--bio-hex);
  box-shadow: 0 0 8px var(--bio-hex), 0 0 14px var(--bio-hex);
  animation: blink 2s ease-in-out infinite;
  margin-bottom: 2px;
}

.hero__stage {
  position: relative;
  flex: 1;
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.hero__specimen {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  z-index: -1;
  pointer-events: none;
}
.hero__specimen img {
  width: clamp(340px, 40vw, 569px);
  height: auto;
  opacity: 0.95;
  mix-blend-mode: screen;
  image-rendering: -webkit-optimize-contrast;
  filter: drop-shadow(0 0 60px rgba(255, 20, 147, 0.4))
          drop-shadow(0 0 140px rgba(0, 102, 255, 0.4))
          saturate(1.18) contrast(1.04);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.hero__halo {
  position: absolute;
  width: 62vmin; height: 62vmin;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(0.65 0.28 340 / 0.14) 0%, transparent 65%);
  filter: blur(48px);
  will-change: transform;
}

.hero__title {
  position: relative;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(58px, 12vw, 184px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  text-wrap: balance;
  text-align: left;
  margin: 0 0 -0.45em -0.06em;
  padding: 10px 0 0.62em 0;
  overflow: visible;
}
.hero__title .line {
  display: block;
}
.hero__title .word {
  display: inline-block;
  will-change: transform;
}
.hero__title .word--outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text);
}
.hero__title .word--solid {
  display: inline-block;
  padding-bottom: 0.3em;
  margin-bottom: -0.3em;
  background: linear-gradient(92deg, var(--blue) 0%, var(--pink) 55%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 12px rgba(255, 20, 147, 0.45));
  opacity: 0;
  transform: translateY(38px) rotate(2deg);
  animation: logistRise 1.1s cubic-bezier(.2,.8,.2,1) 0.55s forwards;
}
@keyframes logistRise {
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

.hero__lede {
  max-width: 44ch;
  margin-top: 14px;
  font-size: clamp(15px, 1.15vw, 18px);
  color: var(--text-dim);
  line-height: 1.6;
  text-wrap: pretty;
}
.hero__lede em { color: var(--pink-hex); font-style: normal; margin-right: 6px; filter: drop-shadow(0 0 14px oklch(0.65 0.28 340 / 0.6)); }
.hero__lede--sub { margin-top: 10px; color: var(--text-mute); font-size: clamp(14px, 1vw, 16px); max-width: 48ch; }
.hero__lede u {
  text-decoration-color: var(--pink);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.hero__scroll {
  align-self: center;
  margin-top: 56px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-mute);
  transition: color 0.4s var(--ease);
}
.hero__scroll svg {
  animation: nudge 2.4s ease-in-out infinite;
}
.hero__scroll:hover { color: var(--text); }
@keyframes nudge {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%      { transform: translateY(6px); opacity: 1; }
}

/* hero ticker */
.hero__ticker {
  position: relative;
  margin: 36px calc(-1 * clamp(24px, 5vw, 72px)) 0;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  overflow: hidden;
}
.ticker__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  will-change: transform;
  --row-w: 800px;
  animation: tickerScroll 34s linear infinite;
}
@keyframes tickerScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-1 * var(--row-w)), 0, 0); }
}
.ticker__row {
  display: flex;
  gap: 38px;
  padding-right: 38px;
  flex-shrink: 0;
  align-items: center;
}
.ticker__row span:nth-child(even) { color: var(--pink); }
@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* ────── WORK ────── */

.work {
  position: relative;
  padding: clamp(120px, 18vh, 200px) clamp(24px, 5vw, 72px);
  z-index: 1;
}
.work__head {
  max-width: 1400px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-mute);
}
.eyebrow em {
  font-style: normal;
  font-size: 1.8em;
  vertical-align: -0.2em;
  margin: 0 0.15em;
  color: var(--pink-hex);
  font-weight: 700;
  display: inline-block;
  line-height: 0;
}
.section-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(48px, 8vw, 130px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: lowercase;
  max-width: 14ch;
}
.section-title .line {
  display: block;
  overflow: hidden;
}
.section-title .line--alt {
  font-style: italic;
  font-weight: 500;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--text);
  padding-left: clamp(20px, 8vw, 90px);
}
.section-lede {
  max-width: 48ch;
  color: var(--text-dim);
  font-size: 16px;
  margin-top: 8px;
}

/* bento cards */
.cards {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 140px;
  gap: clamp(16px, 2vw, 28px);
}
.card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, #101018 0%, #07070b 100%);
  border: 1px solid var(--rule);
  transform-style: preserve-3d;
  transform: perspective(1200px);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.6s var(--ease);
  box-shadow: var(--glow-dual-soft);
  will-change: transform;
}
.card:hover {
  box-shadow: var(--glow-dual);
  border-color: oklch(1 0 0 / 0.18);
}
/* wobbly rotations in place */
.card--01 { grid-column: span 7; grid-row: span 3; transform: perspective(1200px) rotate(-1.2deg); }
.card--02 { grid-column: span 5; grid-row: span 3; transform: perspective(1200px) rotate(0.8deg); }
.card--03 { grid-column: span 4; grid-row: span 3; transform: perspective(1200px) rotate(1.4deg); }
.card--04 { grid-column: span 4; grid-row: span 3; transform: perspective(1200px) rotate(-0.8deg); }
.card--05 { grid-column: span 4; grid-row: span 3; transform: perspective(1200px) rotate(1deg); }
.card--06 { grid-column: span 12; grid-row: span 2; transform: perspective(1200px) rotate(-0.4deg); }

@media (max-width: 980px) {
  .cards { grid-auto-rows: 120px; }
  .card--01, .card--02, .card--03, .card--04, .card--05, .card--06 {
    grid-column: span 12; grid-row: span 3; transform: perspective(1200px);
  }
}

.card__img {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.card__img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center;
  mix-blend-mode: screen;
  opacity: 0.72;
  transform: scale(1.08);
  transition: transform 1.2s var(--ease), opacity 0.8s var(--ease), filter 0.8s var(--ease);
  filter: saturate(1.1) contrast(1.05);
}
.card--02 .card__img img { object-position: 60% 40%; }
.card--01 .card__meta span:last-child {
  color: #5af26a;
  font-weight: 400;
  text-shadow: 0 0 8px rgba(90, 242, 106, 0.4);
}
.card__img video {
  width: 100%; height: 100%; object-fit: cover;
  mix-blend-mode: screen;
  opacity: 0.78;
  transform: scale(1.06);
  filter: saturate(1.1) contrast(1.05);
}
.card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 0% 50%, oklch(0.62 0.24 264 / 0.45), transparent 55%),
    radial-gradient(120% 80% at 100% 50%, oklch(0.65 0.28 340 / 0.45), transparent 55%),
    linear-gradient(180deg, transparent 40%, #000 100%);
  z-index: 1;
  opacity: 0.75;
  transition: opacity 0.6s var(--ease);
}
.card:hover::before { opacity: 1; }
.card:hover .card__img img {
  transform: scale(1.14);
  opacity: 0.9;
}

.card__body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 28px;
  z-index: 2;
}
.card__num {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--bio-hex);
  margin-bottom: 10px;
}
.card__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(24px, 2.4vw, 40px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  text-shadow: 0 0 20px oklch(0.62 0.24 264 / 0.25);
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: auto;
}
.card__desc {
  max-width: 44ch;
  margin-top: 10px;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.5;
}
.card__meta {
  display: flex; justify-content: space-between; gap: 20px;
  margin-top: 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  border-top: 1px solid var(--rule);
  padding-top: 12px;
}

/* neon seam — jacket pin reference */
.card__edge {
  position: absolute;
  left: 14px; right: 14px; top: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  box-shadow: 0 0 10px var(--pink), 0 0 22px var(--blue);
  transform-origin: left;
  transform: scaleX(0.2);
  transition: transform 0.8s var(--ease);
  z-index: 3;
}
.card:hover .card__edge { transform: scaleX(1); }

/* ────── statement marquee ────── */
.statement {
  overflow: hidden;
  padding: 36px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  z-index: 1;
}
.statement__row {
  display: inline-flex;
  gap: 60px;
  white-space: nowrap;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(60px, 11vw, 180px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--text);
  animation: ticker 40s linear infinite;
  padding-left: 60px;
}
.statement__flower {
  color: var(--pink);
  -webkit-text-stroke: 0;
}

/* ────── footer ────── */
.foot {
  position: relative;
  min-height: 100svh;
  padding: clamp(64px, 9vh, 110px) clamp(24px, 5vw, 72px) clamp(36px, 5vh, 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  isolation: isolate;
  z-index: 1;
  overflow: hidden;
}
.foot__bloom {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  z-index: -1;
  pointer-events: none;
}
.foot__bloom img {
  width: clamp(500px, 70vw, 1000px);
  mix-blend-mode: screen;
  opacity: 0.75;
  filter: drop-shadow(0 0 80px oklch(0.65 0.28 340 / 0.5))
          drop-shadow(0 0 160px oklch(0.62 0.24 264 / 0.4));
  animation: pulse 6s ease-in-out infinite alternate;
}
@keyframes pulse {
  0%   { transform: scale(1); filter: drop-shadow(0 0 60px rgba(0, 102, 255, 0.4)); }
  100% { transform: scale(1.04); filter: drop-shadow(0 0 140px rgba(255, 20, 147, 0.55)); }
}
.foot__content {
  position: relative;
  text-align: center;
  max-width: 900px;
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.foot__middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.foot__title {
  font-family: var(--f-display);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.foot__title-sm {
  font-weight: 500;
  font-size: clamp(36px, 5.6vw, 92px);
  color: var(--text);
  max-width: 14ch;
  text-wrap: balance;
}
.foot__title em {
  display: inline-block;
  font-style: italic;
  font-weight: 800;
  font-size: clamp(38px, 6vw, 88px);
  line-height: 1.04;
  padding: 0.04em 0.18em 0.2em 0.04em;
  margin: 0 -0.18em 0 -0.04em;
  background: linear-gradient(92deg, var(--blue), var(--pink), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px oklch(0.65 0.28 340 / 0.4));
}
.foot__mail {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: clamp(14px, 1.6vw, 18px);
  letter-spacing: 0.06em;
  padding: 14px 22px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: color-mix(in oklch, var(--void) 70%, transparent);
  backdrop-filter: blur(10px);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.foot__mail:hover {
  transform: translateY(-2px);
  border-color: var(--pink);
  box-shadow: 0 14px 40px -14px oklch(0.65 0.28 340 / 0.65);
}
.foot__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  width: 100%;
}
.foot__links {
  list-style: none;
  display: flex; justify-content: center; gap: 28px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim);
}
.foot__links a { position: relative; }
.foot__links a:hover { color: var(--text); }
.foot__sig {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* ────── scroll to top button ────── */
.to-top {
  position: fixed;
  right: clamp(24px, 5vw, 72px);
  bottom: clamp(28px, 4.5vh, 56px);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: color-mix(in oklch, var(--void) 72%, transparent);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  color: var(--text);
  cursor: pointer;
  z-index: 90;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(12px) scale(0.94);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  box-shadow:
    -14px 0 50px -14px oklch(0.62 0.24 264 / 0.35),
     14px 0 50px -14px oklch(0.65 0.28 340 / 0.35);
}
.to-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.to-top:hover {
  border-color: var(--pink-hex);
  box-shadow:
    -18px 0 60px -10px oklch(0.62 0.24 264 / 0.55),
     18px 0 60px -10px oklch(0.65 0.28 340 / 0.55);
}
.to-top svg { transition: transform 0.4s var(--ease); }
.to-top:hover svg { transform: translateY(-2px); }

/* ────── accessibility ────── */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .cursor { display: none; }
  body { cursor: auto; }
}
