/*
Theme Name: DigitalWebGram Landing
Theme URI: https://digitalwebgram.com/
Author: DigitalWebGram
Description: Self-contained cinematic landing page theme with progressive image-sequence loading, chrome image headings, video work, and responsive interactions.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: digitalwebgram
*/

/* ===========================================================
   DigitalWebGram landing â€” v3
   No panel boxes. Every section is exactly one viewport tall.
   Image-based chrome headings. Spiral video loop. Custom cursor.
   =========================================================== */

@font-face {
  font-family: "Horst";
  src: url("Horst-Blackletter.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Angel Wish";
  src: url("Angel%20wish.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Enchanted Land";
  src: url("Enchanted%20Land.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/space-grotesk-300.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/space-grotesk-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/space-grotesk-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/space-grotesk-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --font-heading: "Horst", serif;
  --font-body: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --font-text: "Enchanted Land", "Space Grotesk", system-ui, -apple-system, sans-serif;
  --c-text: #e8ecf2;
  --c-dim: rgba(232, 236, 242, 0.78);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
  background: #000;
  color: var(--c-text);
  font-family: var(--font-body);
  overscroll-behavior-y: none;
}

html { margin-top: 0 !important; }
body.admin-bar #nav { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar #nav { top: 46px; }
}

.contact-status {
  width: min(100%, 760px);
  margin: 0 0 18px;
  font: 500 15px/1.5 var(--font-body);
  color: #f4f7fb;
}
.contact-status.is-error { color: #ffb4b4; }
.contact-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

/* Custom glitch cursors (uploaded). 128px source scaled to 40px; hotspot
   at 0 0 (arrow tip is top-left). Applied globally; the hand pointer is
   used on interactive elements. Touch devices ignore `cursor` entirely. */
@media (hover: hover) and (pointer: fine) {
  html, body { cursor: url("cursors/glitch-arrow.png") 1 1, auto; }
  a, button, .spiral-item, .website-card-stage, input[type="submit"], .btn, #nav-toggle {
    cursor: url("cursors/glitch-hand.png") 6 2, pointer;
  }
  input, textarea { cursor: text; }
}

/* -----------------------------------------------------------
   Fixed background stage
   ----------------------------------------------------------- */
#seq-stage {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  height: 100lvh;
  overflow: hidden;
  background: #000;
  z-index: 0;
}
#seq-stage:not(.seq-ready) { z-index: 10000; }
html.seq-loading,
html.seq-loading body { overflow: hidden; }
#seq-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; will-change: transform; transform: translateZ(0); backface-visibility: hidden; }

#seq-loader {
  position: fixed;
  inset: 0;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: #000;
  font: 12px/1.4 var(--font-body);
  color: rgba(255,255,255,0.75);
  opacity: 1;
  transition: opacity 0.4s ease;
  pointer-events: auto;
  z-index: 10001;
}
#seq-loader.seq-loader-hidden { opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.4s ease, visibility 0s linear 0.4s; }
#seq-loader-bar { width: 140px; height: 2px; background: rgba(255,255,255,0.2); border-radius: 2px; overflow: hidden; }
#seq-loader-fill { width: 0%; height: 100%; background: rgba(255,255,255,0.85); transition: width 0.15s linear; }
#seq-loader-pct { min-width: 2.5em; text-align: right; font-variant-numeric: tabular-nums; }

/* -----------------------------------------------------------
   NAV
   ----------------------------------------------------------- */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 28px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.15) 80%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  /* Auto-hide on scroll: slides up out of view when scrolling DOWN,
     slides back in when scrolling UP (class toggled in reveal.js). */
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
#nav.nav-hidden {
  transform: translateY(-100%);
}

body.spiral-open #nav {
  transform: translateY(-100%);
  pointer-events: none;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 50%;
  overflow: hidden;
  text-decoration: none;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 8px 28px rgba(0,0,0,0.55);
  background: #05070b;
}
.nav-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a {
  color: var(--c-dim);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  font-size: 0.88rem;
  color: #0b0d10;
  background: linear-gradient(180deg, #f2f5f8, #b9c9d8);
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(160,190,220,0.25); }
#nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
#nav-toggle span { display: block; width: 22px; height: 2px; background: var(--c-text); margin: 5px 0; }

@media (max-width: 820px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(5,6,9,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 340px; }
  .nav-links a { padding: 14px 28px; border-top: 1px solid rgba(255,255,255,0.06); }
  .nav-cta { margin-left: auto; }
  #nav-toggle { display: block; }
}

/* -----------------------------------------------------------
   Sections â€” exactly one viewport each, NO boxes.
   Readability over the moving background comes from a soft
   text-shadow, not scrim panels.
   ----------------------------------------------------------- */
#page { position: relative; z-index: 1; }

.section {
  height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 90px 24px 40px;
  overflow: hidden;
}

.inner {
  max-width: 860px;
  width: 100%;
}
.inner-center { text-align: center; }


/* Headings â€” Horst Blackletter, white, all-caps live text */
.heading {
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0 0 0.5em;
  font-size: clamp(2.4rem, 6vw, 4.2rem);

  /* Chrome / polished-silver text â€” replicates the PSD style (colours
     sampled from it): bright silver crown, cool mid dip, silver body,
     darkening base, with a beveled edge built from stacked text-shadows.
     The gradient is clipped to the glyphs; the shadows give the 3D
     emboss + specular so it reads as metal, not a flat gradient. */
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #d4d8da 14%,
    #aeb9bc 32%,
    #c4cfd0 48%,
    #bcc8c8 56%,
    #9aa2a5 76%,
    #6f757b 90%,
    #babfc2 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

  /* Bevel/emboss + specular depth. Light top-left, shadow bottom-right,
     plus a soft dark halo so the metal stays legible over the bright
     background frames. */
  text-shadow:
    0 1px 0 #ffffff,
    0 -1px 0 rgba(120,130,135,0.6),
    0 2px 1px rgba(0,0,0,0.35),
    0 3px 2px rgba(0,0,0,0.3),
    0 6px 14px rgba(0,0,0,0.55),
    0 0 3px rgba(0,0,0,0.5);
}

/* Stronger live-text chrome treatment: layered CSS approximation of the
   PSD look while keeping headings editable text, not images. */
.heading {
  position: relative;
  display: inline-block;
  isolation: isolate;
  letter-spacing: 0.028em;
  background:
    radial-gradient(95% 58% at 50% -14%, rgba(255,255,255,1) 0 18%, rgba(255,255,255,0) 43%),
    linear-gradient(
      to bottom,
      #ffffff 0%,
      #ffffff 6%,
      #1f252d 10%,
      #6a737d 15%,
      #f8fbff 21%,
      #ffffff 26%,
      #8d99a2 34%,
      #171c23 42%,
      #edf4f8 49%,
      #ffffff 55%,
      #4d5662 62%,
      #0b0f15 70%,
      #c8d4dc 78%,
      #ffffff 84%,
      #343b45 92%,
      #f6fbff 100%
    ),
    repeating-linear-gradient(
      108deg,
      rgba(255,255,255,0.95) 0 5px,
      rgba(36,44,54,0.96) 6px 10px,
      rgba(219,232,240,0.98) 11px 17px,
      rgba(11,15,22,0.92) 18px 25px,
      rgba(255,255,255,0.88) 26px 31px
    );
  background-blend-mode: screen, normal, hard-light;
  background-size: 100% 100%, 100% 100%, 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  -webkit-text-stroke: 0.014em rgba(255,255,255,0.72);
  text-shadow:
    0 -0.032em 0 rgba(255,255,255,1),
    0 0.018em 0 rgba(10,14,20,1),
    0.02em 0.018em 0 rgba(255,255,255,0.7),
    -0.026em -0.018em 0 rgba(16,20,28,0.86),
    0 0.052em 0 rgba(0,0,0,0.95),
    0 0.095em 0.025em rgba(0,0,0,0.88),
    0 0.22em 0.24em rgba(0,0,0,0.86),
    0 0 0.12em rgba(255,255,255,0.32);
  filter: saturate(0.42) contrast(1.68) brightness(1.06) drop-shadow(0 0.13em 0.075em rgba(0,0,0,0.82));
}

.heading::before,
.heading::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: inherit;
}

.heading::before {
  z-index: -1;
  color: rgba(4, 6, 10, 0.96);
  -webkit-text-fill-color: rgba(4, 6, 10, 0.96);
  -webkit-text-stroke: 0.055em rgba(2, 3, 7, 0.98);
  transform: translate(0.055em, 0.078em);
  filter: blur(0.01em);
  text-shadow:
    0.028em 0.048em 0 rgba(0,0,0,0.95),
    0.09em 0.14em 0.16em rgba(0,0,0,0.96);
}

.heading::after {
  z-index: 1;
  background:
    linear-gradient(
      116deg,
      transparent 0%,
      transparent 24%,
      rgba(255,255,255,0.98) 32%,
      rgba(255,255,255,0.38) 37%,
      transparent 45%,
      transparent 62%,
      rgba(255,255,255,0.72) 67%,
      transparent 73%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,0.88) 8%,
      rgba(255,255,255,0) 19%,
      rgba(0,0,0,0) 43%,
      rgba(255,255,255,0.76) 50%,
      rgba(255,255,255,0) 59%,
      rgba(255,255,255,0.58) 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  -webkit-text-stroke: 0;
  opacity: 0.86;
  mix-blend-mode: screen;
  transform: translateY(-0.022em);
  filter: blur(0.002em) contrast(1.25);
}

/* Chrome v4: brighter silver, stronger gleam, less dark/black banding. */
.heading {
  letter-spacing: 0.026em;
  background:
    linear-gradient(
      92deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.85) 9%,
      rgba(255,255,255,0) 18%,
      rgba(255,255,255,0) 58%,
      rgba(255,255,255,0.75) 67%,
      rgba(255,255,255,0) 78%
    ),
    linear-gradient(
      to bottom,
      #ffffff 0%,
      #f8fbff 7%,
      #ccd6dc 12%,
      #ffffff 19%,
      #9ba8b0 28%,
      #eef5f8 36%,
      #ffffff 44%,
      #b6c4cb 52%,
      #f9fdff 61%,
      #7f8a93 70%,
      #d9e4e8 79%,
      #ffffff 88%,
      #b9c2c7 100%
    ),
    repeating-linear-gradient(
      105deg,
      rgba(255,255,255,0.96) 0 10px,
      rgba(188,202,211,0.95) 11px 18px,
      rgba(255,255,255,0.92) 19px 30px,
      rgba(132,145,154,0.88) 31px 39px,
      rgba(247,252,255,0.96) 40px 52px
    );
  background-blend-mode: screen, normal, soft-light;
  background-size: 100% 100%, 100% 100%, 155% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  -webkit-text-stroke: 0.012em rgba(255,255,255,0.88);
  text-shadow:
    0 -0.035em 0 rgba(255,255,255,0.98),
    0 0.018em 0 rgba(105,116,126,0.86),
    0.018em 0.014em 0 rgba(255,255,255,0.64),
    -0.018em -0.012em 0 rgba(96,108,118,0.44),
    0 0.055em 0.02em rgba(23,27,33,0.5),
    0 0.16em 0.18em rgba(0,0,0,0.72),
    0 0 0.16em rgba(255,255,255,0.34);
  filter: saturate(0.38) contrast(1.38) brightness(1.22) drop-shadow(0 0.08em 0.055em rgba(0,0,0,0.68));
}

.heading::before {
  color: rgba(22, 26, 32, 0.82);
  -webkit-text-fill-color: rgba(22, 26, 32, 0.82);
  -webkit-text-stroke: 0.035em rgba(10, 13, 18, 0.84);
  transform: translate(0.036em, 0.052em);
  filter: blur(0.008em);
  text-shadow:
    0.025em 0.042em 0 rgba(0,0,0,0.62),
    0.07em 0.1em 0.14em rgba(0,0,0,0.72);
}

.heading::after {
  background:
    linear-gradient(
      108deg,
      transparent 0%,
      transparent 18%,
      rgba(255,255,255,1) 26%,
      rgba(255,255,255,0.35) 33%,
      transparent 42%,
      transparent 57%,
      rgba(255,255,255,0.95) 64%,
      rgba(255,255,255,0.22) 69%,
      transparent 76%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,0.82) 12%,
      rgba(255,255,255,0) 25%,
      rgba(255,255,255,0) 45%,
      rgba(255,255,255,0.82) 53%,
      rgba(255,255,255,0) 66%,
      rgba(255,255,255,0.72) 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  opacity: 0.92;
  mix-blend-mode: screen;
  transform: translateY(-0.024em);
  filter: blur(0) contrast(1.45) brightness(1.18);
}

/* Firefox falls back to a flat bright silver if background-clip:text on
   the gradient doesn't paint (keeps headings visible everywhere). */
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .heading {
    background: none;
    color: #d7dcde;
    -webkit-text-fill-color: #d7dcde;
  }
}

/* Reset heading experiments: keep the simpler original chrome heading. */
.heading {
  position: static;
  display: block;
  isolation: auto;
  letter-spacing: 0.02em;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #d4d8da 14%,
    #aeb9bc 32%,
    #c4cfd0 48%,
    #bcc8c8 56%,
    #9aa2a5 76%,
    #6f757b 90%,
    #babfc2 100%
  );
  background-blend-mode: normal;
  background-size: auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  -webkit-text-stroke: 0;
  text-shadow:
    0 1px 0 #ffffff,
    0 -1px 0 rgba(120,130,135,0.6),
    0 2px 1px rgba(0,0,0,0.35),
    0 3px 2px rgba(0,0,0,0.3),
    0 6px 14px rgba(0,0,0,0.55),
    0 0 3px rgba(0,0,0,0.5);
  filter: none;
}

.heading::before,
.heading::after {
  content: none;
}

.content-head .heading {
  display: block;
}

.inner-center .heading {
  text-align: center;
}

.heading-img {
  position: relative;
  display: block;
  background: none;
  -webkit-text-fill-color: initial;
  color: inherit;
  text-shadow: none;
  filter: none;
  margin-bottom: -0.28em;
  transform-origin: 50% 72%;
  will-change: transform, opacity, filter;
}

.heading-fallback {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 6.5rem);
  line-height: 0.9;
  color: rgba(238, 242, 246, 0.92);
  text-transform: uppercase;
  text-shadow: 0 10px 24px rgba(0,0,0,0.72), 0 1px 0 rgba(255,255,255,0.38);
  transition: opacity 0.25s ease;
}

.heading-img.heading-img-loaded .heading-fallback {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.heading-img.heading-img-loaded img {
  opacity: 1;
}

.heading-img:not(.heading-img-loaded) img {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.heading-img img {
  display: block;
  width: auto;
  max-width: min(100%, 620px);
  height: clamp(92px, 11vw, 132px);
  margin: 0;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.58));
}

.heading-hero.heading-img img {
  width: min(100%, 1180px);
  max-width: min(100%, 1180px);
  height: auto;
  max-height: clamp(126px, 15vw, 190px);
  object-fit: contain;
  margin-inline: auto;
}

.heading-hero .heading-fallback {
  font-size: clamp(3rem, 10vw, 6.5rem);
}

.heading:not(.heading-hero) .heading-fallback {
  font-size: clamp(2.4rem, 7vw, 4.6rem);
}

.inner-center .heading-img img {
  margin-inline: auto;
}

.content-head .heading-img img {
  max-width: none;
  margin-inline: 0;
}

@media (max-width: 640px) {
  .heading-img img {
    max-width: min(100%, 430px);
    height: clamp(82px, 18vw, 112px);
  }

  .heading-hero.heading-img img {
    width: min(100%, 620px);
    max-width: min(100%, 620px);
    height: auto;
    max-height: clamp(118px, 25vw, 160px);
  }
}

.heading-hero {
  font-size: clamp(3rem, 10vw, 6.5rem);
}
.inner-center .heading { text-align: center; }

.lede {
  font-family: var(--font-text);
  font-size: clamp(1.56rem, 3.2vw, 2rem);
  color: rgba(232, 236, 242, 0.94);
  max-width: 640px;
  margin: 0 auto 2em;
  line-height: 1.42;
  text-shadow: 0 1px 12px rgba(0,0,0,0.85), 0 0 3px rgba(0,0,0,0.9);
}

.body {
  font-family: var(--font-text);
  font-size: clamp(1.42rem, 2.18vw, 1.66rem);
  line-height: 1.5;
  color: rgba(232, 236, 242, 0.92);
  margin: 0 0 1.3em;
  text-shadow: 0 1px 12px rgba(0,0,0,0.85), 0 0 3px rgba(0,0,0,0.9);
}

.plain-list {
  list-style: none;
  padding: 0;
  margin: 0.4em 0 0;
}
.plain-list li {
  font-family: var(--font-text);
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(232, 236, 242, 0.92);
  font-size: 1.42rem;
  line-height: 1.45;
  text-shadow: 0 1px 12px rgba(0,0,0,0.85), 0 0 3px rgba(0,0,0,0.9);
}

.section-websites,
.section-why {
  position: relative;
}

.websites-showcase {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  min-height: min(78vh, 660px);
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
}

.work-kicker,
.websites-showcase-note {
  font-family: var(--font-text);
  letter-spacing: 0;
  text-transform: none;
  color: rgba(232, 236, 242, 0.92);
  text-shadow: 0 1px 12px rgba(0,0,0,0.85), 0 0 3px rgba(0,0,0,0.9);
}

.work-kicker {
  font-size: clamp(1.28rem, 1.98vw, 1.54rem);
  line-height: 1.35;
  margin: 0 0 4px;
}

.websites-showcase .heading-img {
  margin-bottom: -0.16em;
}

.website-card-stage {
  position: relative;
  width: min(82vw, 760px);
  height: clamp(176px, 26vw, 260px);
  margin: clamp(4px, 1.2vh, 12px) auto clamp(18px, 3vh, 30px);
  isolation: isolate;
  perspective: 900px;
}

.website-card {
  --card-w: clamp(150px, 22vw, 230px);
  --card-h: clamp(120px, 16vw, 176px);
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--card-w);
  height: var(--card-h);
  margin-left: calc(var(--card-w) / -2);
  margin-top: calc(var(--card-h) / -2);
  display: block;
  border-radius: 18px;
  text-decoration: none;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.25s ease;
  filter: drop-shadow(0 24px 34px rgba(0,0,0,0.42));
}

.website-card-stage.is-active .website-card {
  transition-duration: 0.2s;
}

.website-card:hover {
  filter: drop-shadow(0 34px 46px rgba(0,0,0,0.62));
}

.website-card em {
  position: absolute;
  left: 50%;
  bottom: -36px;
  transform: translateX(-50%);
  min-width: max-content;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(235,239,246,0.92);
  color: #090b10;
  font-family: var(--font-text);
  font-size: 1.12rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.website-card:hover em {
  opacity: 1;
  transform: translate(-50%, -3px);
}

.site-mock {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.18);
  background: #0b0e15;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.26);
}

.site-mock::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 14px;
  right: 14px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.86) 0 22%, rgba(255,255,255,0.28) 22% 100%);
  opacity: 0.72;
}

.site-mock span,
.site-mock i,
.site-mock b {
  position: absolute;
  display: block;
  border-radius: 12px;
}

.site-mock span {
  left: 14px;
  right: 14px;
  top: 34px;
  height: 38%;
}

.site-mock i {
  left: 14px;
  bottom: 14px;
  width: 42%;
  height: 28%;
}

.site-mock b {
  right: 14px;
  bottom: 14px;
  width: 38%;
  height: 28%;
}

.site-mock-aurora {
  background: radial-gradient(circle at 28% 24%, #8ff8ff, transparent 28%), linear-gradient(135deg, #0b1528, #19395d 52%, #d7f8ff);
}
.site-mock-aurora span { background: linear-gradient(135deg, #effcff, #71daf5); }
.site-mock-aurora i { background: #081525; }
.site-mock-aurora b { background: linear-gradient(135deg, #c8f0ff, #315b84); }

.site-mock-obsidian {
  background: radial-gradient(circle at 74% 26%, #f7f0ff, transparent 24%), linear-gradient(135deg, #05070b, #202733 55%, #8aa2bc);
}
.site-mock-obsidian span { background: linear-gradient(135deg, #e8edf5, #66788d); }
.site-mock-obsidian i { background: #0d1118; }
.site-mock-obsidian b { background: #d9e2ec; }

.site-mock-chrome {
  background: radial-gradient(circle at 35% 68%, #ecfbff, transparent 26%), linear-gradient(135deg, #18222f, #657987 48%, #eff7fb);
}
.site-mock-chrome span { background: linear-gradient(135deg, #ffffff, #9db0bc 55%, #16212d); }
.site-mock-chrome i { background: #dbeaf2; }
.site-mock-chrome b { background: #111923; }

.site-mock-motion {
  background: radial-gradient(circle at 74% 24%, #f5d8ff, transparent 24%), linear-gradient(135deg, #0a0d16, #293b5d 52%, #d8e7ff);
}
.site-mock-motion span { background: linear-gradient(135deg, #d8e7ff, #85a9e8); }
.site-mock-motion i { background: #111827; }
.site-mock-motion b { background: linear-gradient(135deg, #ffffff, #7d8fb7); }

.websites-showcase-note {
  max-width: 680px;
  margin: 0;
  font-size: clamp(1.18rem, 1.85vw, 1.42rem);
  line-height: 1.45;
}

@media (max-width: 820px) {
  .websites-showcase {
    min-height: min(76vh, 620px);
  }

  .website-card-stage {
    width: min(92vw, 620px);
    height: clamp(210px, 42vw, 300px);
  }

  .website-card {
    --card-w: clamp(132px, 30vw, 188px);
    --card-h: clamp(108px, 23vw, 148px);
  }
}

@media (max-width: 540px) {
  .websites-showcase {
    min-height: min(86vh, 700px);
  }

  .work-kicker {
    margin-bottom: 0;
  }

  .website-card-stage {
    width: min(92vw, 390px);
    height: 390px;
    margin-top: 8px;
    margin-bottom: 14px;
  }

  .website-card {
    --card-w: clamp(132px, 39vw, 148px);
    --card-h: clamp(108px, 31vw, 122px);
  }

  .website-card em {
    bottom: -28px;
    font-size: 0.82rem;
    padding: 6px 10px;
    opacity: 1;
    transform: translateX(-50%);
  }
}

.premium-grid {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(390px, 1.14fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.premium-copy .heading-img {
  margin-bottom: -0.12em;
}

.premium-copy .body {
  max-width: 540px;
  margin-bottom: 0;
}

.premium-panel {
  position: relative;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.035) 48%, rgba(3,5,10,0.42)),
    rgba(8,10,14,0.32);
  box-shadow: 0 24px 90px rgba(0,0,0,0.44), inset 0 1px 0 rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
}

.premium-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
}

.why-panel {
  --why-x: 50%;
  --why-y: 50%;
  --why-tilt-x: 0deg;
  --why-tilt-y: 0deg;
  display: grid;
  gap: 20px;
  transform: perspective(900px) rotateX(var(--why-tilt-x)) rotateY(var(--why-tilt-y));
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}

.why-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(90deg, transparent calc(var(--why-x) - 1px), rgba(255,255,255,0.28) var(--why-x), transparent calc(var(--why-x) + 1px)),
    linear-gradient(180deg, transparent calc(var(--why-y) - 1px), rgba(255,255,255,0.16) var(--why-y), transparent calc(var(--why-y) + 1px));
  transition: opacity 0.25s ease;
}

.why-panel.is-active {
  border-color: rgba(255,255,255,0.28);
  box-shadow: 0 30px 110px rgba(0,0,0,0.58), inset 0 1px 0 rgba(255,255,255,0.2);
}

.why-panel.is-active::after {
  opacity: 1;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  margin: -4px 0 18px;
}

.metric {
  padding: 0 16px 18px 0;
  min-height: 82px;
}

.metric + .metric {
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,0.12);
}

.metric strong {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.9;
  color: rgba(248,250,255,0.96);
  letter-spacing: -0.02em;
}

.metric span {
  display: block;
  margin-top: 10px;
  font-family: var(--font-text);
  font-size: clamp(1.08rem, 1.46vw, 1.22rem);
  line-height: 1.25;
  color: rgba(232,236,242,0.78);
  text-shadow: 0 1px 12px rgba(0,0,0,0.8);
}

.premium-list {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.premium-list li {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

.premium-list li:last-child {
  border-bottom: 0;
}

.premium-list span,
.process-step span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
}

.premium-list p,
.process-step strong,
.outcome-line,
.why-statement {
  margin: 0;
  font-family: var(--font-text);
  color: rgba(238,242,246,0.92);
  text-shadow: 0 1px 12px rgba(0,0,0,0.82);
}

.premium-list p {
  font-size: clamp(1.14rem, 1.56vw, 1.3rem);
  line-height: 1.42;
}

.why-statement {
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
  line-height: 1.05;
  max-width: 620px;
}

.why-signal {
  position: relative;
  height: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
}

.why-signal span {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(255,255,255,0.72), rgba(160,196,214,0.18), rgba(255,255,255,0.72));
  opacity: 0.42;
}

.why-signal i {
  position: absolute;
  top: 50%;
  left: -22%;
  width: 22%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.95), transparent);
  animation: why-signal-scan 2.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes why-signal-scan {
  0% { left: -22%; opacity: 0; }
  12% { opacity: 1; }
  72% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.13);
  border-bottom: 1px solid rgba(255,255,255,0.13);
}

.process-step {
  position: relative;
  min-height: 138px;
  padding: 18px 16px 18px 0;
  outline: none;
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s ease, padding-left 0.25s ease;
}

.process-step::before {
  content: attr(data-step);
  position: absolute;
  right: 14px;
  top: 14px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.12em;
}

.process-step::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.85), rgba(160,196,214,0.08));
  transition: width 0.32s ease;
}

.process-step:hover,
.process-step:focus-visible,
.process-step.is-active {
  transform: translateY(-6px);
  padding-left: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.025));
}

.process-step:hover::after,
.process-step:focus-visible::after,
.process-step.is-active::after {
  width: 100%;
}

.process-step:hover span,
.process-step:focus-visible span,
.process-step.is-active span {
  color: rgba(255,255,255,0.86);
}

.process-step + .process-step {
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,0.12);
}

.process-step strong {
  display: block;
  margin-top: 18px;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.34;
}

.outcome-line {
  position: relative;
  font-size: clamp(1.08rem, 1.55vw, 1.26rem);
  line-height: 1.35;
  color: rgba(232,236,242,0.78);
  padding-left: 18px;
}

.outcome-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  box-shadow: 0 0 18px rgba(255,255,255,0.5);
  animation: why-status-pulse 1.9s ease-in-out infinite;
}

@keyframes why-status-pulse {
  0%, 100% { opacity: 0.46; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1.12); }
}

@media (hover: hover) and (pointer: fine) {
  .process-step {
    cursor: url("cursors/glitch-hand.png") 6 2, pointer;
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-panel,
  .process-step,
  .why-signal i,
  .outcome-line::before {
    animation: none;
    transition: none;
  }

  .why-panel {
    transform: none;
  }
}

.reveal-word {
  display: inline-block;
  font-family: inherit;
  color: inherit;
  -webkit-text-fill-color: currentColor;
  opacity: 0.62;
  visibility: visible;
}
.no-js-fallback .reveal-word { opacity: 1; }

/* -----------------------------------------------------------
   Buttons / hero
   ----------------------------------------------------------- */
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary { color: #0b0d10; background: linear-gradient(180deg, #f2f5f8, #aec3d6); border: 0; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(160,190,220,0.3); }
.btn-ghost { color: var(--c-text); border: 1px solid rgba(255,255,255,0.28); background: rgba(255,255,255,0.04); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

.section-hero { position: relative; }
.scroll-hint {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  animation: hint-bob 2.2s ease-in-out infinite;
}
@keyframes hint-bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* -----------------------------------------------------------
   CONTENT â€” spiral video loop (pinned; transforms set by JS)
   ----------------------------------------------------------- */
.section-content {
  position: relative;
  justify-content: center;
  padding-top: 90px;
}
/* Heading + intro pinned to the LEFT and vertically centered, so the
   spiral owns the center of the section and nothing overlaps. */
.content-head {
  position: absolute;
  left: max(5vw, 32px);
  top: 50%;
  transform: translateY(-50%);
  max-width: min(30vw, 360px);
  text-align: left;
  z-index: 3;
}
.content-head .heading { text-align: left; margin-bottom: 0.35em; }
.content-head .body {
  text-align: left;
  margin: 0;
}
.spiral-stage {
  position: absolute;
  /* Centered narrow column â€” not full width. Think the middle third of a
     3-column grid. Cards spiral within this band, keeping the effect
     compact and central. */
  top: 0;
  bottom: 0;
  left: 55%;
  transform: translateX(-50%);
  width: min(26vw, 340px);
  perspective: 1200px;
  transform-style: preserve-3d;
}
.spiral-item {
  position: absolute;
  top: 50%; left: 50%;
  width: clamp(120px, 66%, 190px);
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 60px rgba(0,0,0,0.6);
  will-change: transform, opacity, filter;
  background: #0a0d12;
  --spiral-scale: 1;
}
.spiral-item video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

@media (min-width: 641px) and (max-width: 980px) {
  .content-head {
    max-width: min(28vw, 320px);
  }

  .spiral-stage {
    left: 62%;
    width: min(28vw, 300px);
  }
}

@media (max-width: 980px) {
  .premium-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 760px;
  }

  .premium-copy .body {
    max-width: 680px;
  }

  .premium-panel {
    padding: 20px;
  }
}

@media (max-width: 720px) {
  .metric-strip,
  .process-rail {
    grid-template-columns: 1fr;
  }

  .metric,
  .process-step {
    min-height: auto;
    padding: 13px 0;
  }

  .metric + .metric,
  .process-step + .process-step {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  .premium-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .why-statement {
    font-size: clamp(1.26rem, 7vw, 1.75rem);
  }
}
/* -----------------------------------------------------------
   Contact form (fields only â€” no wrapper box)
   ----------------------------------------------------------- */
.contact-form { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(8,10,14,0.6);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 1.18rem;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(232,236,242,0.4); }
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: rgba(160,195,225,0.55); }
.contact-form .btn { align-self: flex-start; border: 0; cursor: pointer; font-family: var(--font-body); }

@media (hover: hover) and (pointer: fine) {
  .contact-form .btn {
    cursor: url("cursors/glitch-hand.png") 6 2, pointer;
  }
}

/* -----------------------------------------------------------
   Footer (compact; not a 100vh section)
   ----------------------------------------------------------- */
#footer {
  position: relative;
  z-index: 1;
  padding: 60px 28px 26px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8) 35%, rgba(0,0,0,0.94));
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 14px 40px rgba(0,0,0,0.62);
  background: #05070b;
}
.footer-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.footer-blurb { max-width: 480px; color: var(--c-dim); font-family: var(--font-text); font-size: 1.28rem; line-height: 1.45; margin: 12px 0 0; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--c-dim); text-decoration: none; font-size: 1.12rem; }
.footer-links a:hover { color: #fff; }
.footer-copy {
  max-width: 1080px;
  margin: 42px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-text);
  color: rgba(232,236,242,0.45);
  font-size: 1.06rem;
}

/* -----------------------------------------------------------
   Mobile
   ----------------------------------------------------------- */
@media (max-width: 640px) {
  .section { padding: 84px 18px 30px; }
  .section-websites,
  .section-why {
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }
  .section-websites {
    padding-bottom: 48px;
  }
  .section-why {
    padding-top: 96px;
    padding-bottom: 56px;
  }
  .lede {
    font-size: 1.72rem;
    line-height: 1.38;
  }
  .body {
    font-size: 1.56rem;
    line-height: 1.44;
  }
  .work-kicker {
    font-size: 1.42rem;
  }
  .websites-showcase-note {
    font-size: 1.32rem;
    line-height: 1.4;
  }
  .premium-list p,
  .process-step strong,
  .outcome-line {
    font-size: 1.22rem;
  }
  .footer-blurb {
    font-size: 1.38rem;
  }
  .footer-links a {
    font-size: 1.18rem;
  }
  .content-head {
    left: 50%;
    top: 84px;
    transform: translateX(-50%);
    width: min(90vw, 420px);
    max-width: 420px;
    text-align: center;
  }
  .content-head .heading { text-align: center; margin-bottom: -0.24em; }
  .content-head .heading-img img { margin-inline: auto; }
  .content-head .body {
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
  }
  .spiral-stage {
    left: 50%;
    top: 280px;
    width: min(62vw, 280px);
  }
  .spiral-item { width: clamp(140px, 62%, 210px); }
  .content-head .body { font-size: 1.42rem; }
}

/* -----------------------------------------------------------
   Spiral maximize lightbox
   ----------------------------------------------------------- */


/* Center-of-coil card is the interactive one; give it a subtle "click me" ring */
.spiral-item.spiral-center {
  pointer-events: auto;
}
.spiral-item.spiral-center:hover {
  border-color: rgba(255,255,255,0.45);
  box-shadow: 0 24px 80px rgba(0,0,0,0.75);
}
.spiral-item.spiral-center:hover video { transform: scale(1.06); }
.spiral-item:not(.spiral-center) { pointer-events: none; }

/* -----------------------------------------------------------
   Video lightbox (page-level; video renders ABOVE the dimmed
   backdrop and is never itself dimmed/blurred)
   ----------------------------------------------------------- */
.spiral-lightbox {
  position: fixed;
  inset: 0;
  z-index: 950;
  display: none;
}
.spiral-lightbox.show { display: block; }

.spiral-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 7, 0.86);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.45s ease;
}
.spiral-lightbox.show .spiral-backdrop { opacity: 1; }

/* The slot centers the video at a clean 9:16; the video sits ABOVE the
   backdrop, full brightness, no blur. */
.spiral-lightbox-slot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: min(86vh, calc((100vw - 80px) * 16 / 9));
  aspect-ratio: 9 / 16;
  z-index: 960;
  pointer-events: none; /* clicks pass to backdrop except on the video */
}
.spiral-lightbox-slot video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 40px 120px rgba(0,0,0,0.85);
  background: #0a0d12;
  pointer-events: auto;
  filter: none !important;
  opacity: 1;
}

.spiral-close {
  position: absolute;
  top: 24px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(10,12,16,0.7);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.35s ease 0.1s, background 0.2s ease, transform 0.2s ease;
  z-index: 970;
}
.spiral-close:hover { background: rgba(30,34,42,0.9); transform: scale(1.08); }
.spiral-lightbox.show .spiral-close { opacity: 1; }

.logo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 980;
  display: none;
}

.logo-lightbox.show {
  display: block;
}

.logo-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 7, 0.86);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.logo-lightbox-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(50vw, 460px);
  height: min(50vw, 460px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 34px 120px rgba(0,0,0,0.82);
  background: #05070b;
  pointer-events: none;
}

@media (max-width: 640px) {
  .spiral-lightbox-slot {
    height: min(80vh, calc((100vw - 32px) * 16 / 9));
  }
  .spiral-close { top: 16px; right: 16px; width: 42px; height: 42px; font-size: 24px; }
  .logo-lightbox-img {
    width: min(62vw, 300px);
    height: min(62vw, 300px);
  }
}

@media (hover: hover) and (pointer: fine) {
  a,
  button,
  .btn,
  #nav-toggle,
  .nav-links a,
  .nav-cta,
  .logo-open,
  .logo-lightbox-backdrop,
  .spiral-item.spiral-center,
  .spiral-item.spiral-center video,
  .spiral-lightbox-slot video,
  .spiral-close,
  input[type="submit"] {
    cursor: url("cursors/glitch-hand.png") 6 2, pointer;
  }
}

