/* ============================================================
   Creek211 — Coming Soon site
   Dependency-free. Dark techno crime aesthetic:
   near-black + electric lime, squared display + monospace labels,
   bracket-corner cards, notched buttons.
   ============================================================ */

:root {
  --bg:        #090c12;
  --bg-2:      #0b0f17;
  --surface:   #0d121b;
  --surface-2: #10161f;
  --line:      rgba(150,175,205,.10);
  --line-2:    rgba(150,175,205,.20);

  --text:      #eef2f7;
  --muted:     #8593a8;   /* monospace body — blue-grey */
  --muted-2:   #5e6c80;

  --accent:    #aef205;   /* electric lime — $Creek */
  --accent-2:  #88c000;
  --on-accent: #07140a;
  --glow:      rgba(174,242,5,.45);

  --blue:      #5b8cff;   /* police */
  --red:       #ff3b46;   /* wanted  */
  --amber:     #f5c542;   /* chapter / eyebrow labels */

  --maxw: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --shadow: 0 28px 70px -24px rgba(0,0,0,.8);

  --disp: "Chakra Petch", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ---------- base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* faint techno grid texture */
  background-image:
    linear-gradient(rgba(150,175,205,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(150,175,205,.022) 1px, transparent 1px);
  background-size: 46px 46px, 46px 46px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: var(--on-accent); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1,h2,h3 { font-family: var(--disp); font-weight: 700; line-height: 1.02; letter-spacing: .4px; }

.section { padding: clamp(64px, 9vw, 128px) 0; position: relative; }
.section__title { font-size: clamp(30px, 5vw, 60px); text-transform: uppercase; letter-spacing: 1px; }
.eyebrow {
  font-family: var(--mono); color: var(--amber); font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; font-size: 12px; margin-bottom: 16px;
}
.eyebrow::before { content: "// "; opacity: .9; }
.lead { font-size: clamp(15px, 1.7vw, 18px); color: var(--muted); margin-top: 20px; max-width: 62ch; }
.muted { color: var(--muted); }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.text-accent { color: var(--accent); }
.text-danger { color: var(--red); }

/* ---------- bracket-corner motif (shared) ---------- */
.card, .role, .shot, .stat, .media__frame, .omics__alloc, .wishlist__card, .countdown__item, .heatmeter {
  position: relative;
}
.card::before, .role::before, .shot::before, .stat::before, .media__frame::before,
.omics__alloc::before, .wishlist__card::before, .heatmeter::before {
  content: ""; position: absolute; inset: 7px; pointer-events: none; z-index: 2;
  --bc: var(--line-2);
  background:
    linear-gradient(var(--bc),var(--bc)) left  top    / 16px 2px no-repeat,
    linear-gradient(var(--bc),var(--bc)) left  top    / 2px 16px no-repeat,
    linear-gradient(var(--bc),var(--bc)) right top    / 16px 2px no-repeat,
    linear-gradient(var(--bc),var(--bc)) right top    / 2px 16px no-repeat,
    linear-gradient(var(--bc),var(--bc)) left  bottom / 16px 2px no-repeat,
    linear-gradient(var(--bc),var(--bc)) left  bottom / 2px 16px no-repeat,
    linear-gradient(var(--bc),var(--bc)) right bottom / 16px 2px no-repeat,
    linear-gradient(var(--bc),var(--bc)) right bottom / 2px 16px no-repeat;
  transition: --bc .25s;
}
.card:hover::before, .role:hover::before, .shot:hover::before, .media__frame:hover::before { --bc: var(--accent); }

/* ---------- buttons (notched corner) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--disp); font-weight: 700; font-size: 14px; letter-spacing: 1px; text-transform: uppercase;
  padding: 14px 26px; border: 1px solid transparent; cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 0 100%);
  transition: transform .2s var(--ease), background .2s, box-shadow .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--accent); color: var(--on-accent); box-shadow: 0 12px 34px -12px var(--glow); }
.btn--primary:hover { background: #c4ff2e; box-shadow: 0 18px 44px -14px var(--glow); }
.btn--ghost { background: rgba(255,255,255,.02); color: var(--text); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--lg { padding: 17px 32px; font-size: 15px; }

/* ---------- ambience ---------- */
.sirens { position: fixed; inset: 0; pointer-events: none; z-index: 0; mix-blend-mode: screen; opacity: .4; }
.siren { position: absolute; top: -20%; width: 55vw; height: 70vh; border-radius: 50%; filter: blur(130px); opacity: .2; }
.siren--blue { left: -18%; background: radial-gradient(circle, var(--accent), transparent 65%); animation: sweepB 11s ease-in-out infinite; }
.siren--red  { right: -18%; background: radial-gradient(circle, var(--red),  transparent 65%); animation: sweepR 11s ease-in-out infinite; }
@keyframes sweepB { 0%,100%{ opacity:.08; transform: translateX(0) } 50%{ opacity:.22; transform: translateX(7vw) } }
@keyframes sweepR { 0%,100%{ opacity:.20; transform: translateX(0) } 50%{ opacity:.06; transform: translateX(-7vw) } }

/* ---------- nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: background .3s, border-color .3s, backdrop-filter .3s; border-bottom: 1px solid transparent; }
.nav.is-scrolled { background: rgba(9,12,18,.85); backdrop-filter: blur(14px); border-bottom-color: var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 8px; }
.brand__badge {
  font-family: var(--disp); font-weight: 700; font-size: 12px; color: var(--on-accent);
  background: var(--accent); padding: 3px 7px; letter-spacing: 1px;
  clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 0 100%);
}
.brand__name { font-family: var(--disp); font-weight: 700; font-size: 22px; letter-spacing: 1.5px; color: var(--accent); text-shadow: 0 0 22px var(--glow); }
.brand__accent { color: var(--text); text-shadow: none; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { font-family: var(--disp); font-weight: 600; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); transition: color .2s; }
.nav__links a:hover { color: var(--accent); }
.nav__cta { color: var(--text); border-color: rgba(174,242,5,.45); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); transition: .25s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 94vh; display: flex; align-items: center; padding-top: 72px; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1100px 560px at 72% -10%, rgba(174,242,5,.10), transparent 60%),
    radial-gradient(900px 500px at 6% 10%, rgba(91,140,255,.08), transparent 55%),
    linear-gradient(180deg, #0a0e16 0%, #090c12 60%, #07080c 100%);
}
/* ---------- animated day/night cycle ----------
   One shared timeline (--cycle). First half: sun arc + day/dusk tints.
   Second half: stars, moon arc, city glow. All behind the skyline. */
.hero__bg { --cycle: 48s; }
.sky, .stars, .cityglow { position: absolute; inset: 0; display: block; }

.sky--day {
  opacity: 0;
  background: linear-gradient(180deg, rgba(45,78,118,.42), rgba(22,40,63,.26) 55%, transparent 85%);
  animation: skyDay var(--cycle) linear infinite;
}
.sky--dusk {
  opacity: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(224,101,58,.16) 65%, rgba(255,59,70,.24) 100%);
  animation: skyDusk var(--cycle) linear infinite;
}
.sky--night {
  opacity: .5; /* static fallback state */
  background: linear-gradient(180deg, rgba(12,16,34,.55), rgba(10,8,22,.35) 60%, transparent);
  animation: skyNight var(--cycle) linear infinite;
}
@keyframes skyDay   { 0% { opacity: 0; }  10% { opacity: 1; }  36% { opacity: 1; }  48% { opacity: 0; }  100% { opacity: 0; } }
@keyframes skyDusk  { 0% { opacity: .6; } 10% { opacity: 0; }  36% { opacity: 0; }  46% { opacity: .8; } 55% { opacity: 0; } 93% { opacity: 0; } 100% { opacity: .6; } }
@keyframes skyNight { 0% { opacity: .3; } 8%  { opacity: 0; }  44% { opacity: 0; }  56% { opacity: 1; }  92% { opacity: 1; } 100% { opacity: .3; } }

/* stars — dot field via box-shadow, fades in at night, gentle twinkle */
.stars { opacity: .45; }
.stars::before {
  content: ""; position: absolute; top: 0; left: 0; width: 3px; height: 3px; border-radius: 50%;
  background: #dfe8f2;
  box-shadow:
    6vw 10vh 0 0 rgba(223,232,242,.9),   13vw 22vh 0 -1px rgba(223,232,242,.6),
    19vw 6vh 0 0 rgba(174,242,5,.55),    26vw 16vh 0 -1px rgba(223,232,242,.75),
    33vw 9vh 0 0 rgba(223,232,242,.85),  38vw 25vh 0 -1px rgba(223,232,242,.5),
    45vw 5vh 0 0 rgba(223,232,242,.9),   51vw 14vh 0 -1px rgba(55,230,255,.6),
    58vw 8vh 0 0 rgba(223,232,242,.7),   63vw 21vh 0 -1px rgba(223,232,242,.55),
    69vw 12vh 0 0 rgba(223,232,242,.85), 75vw 4vh 0 -1px rgba(223,232,242,.65),
    81vw 18vh 0 0 rgba(223,232,242,.8),  87vw 9vh 0 -1px rgba(255,59,70,.5),
    92vw 24vh 0 0 rgba(223,232,242,.6),  96vw 13vh 0 -1px rgba(223,232,242,.8),
    10vw 32vh 0 -1px rgba(223,232,242,.45), 29vw 34vh 0 -1px rgba(223,232,242,.4),
    55vw 31vh 0 -1px rgba(223,232,242,.45), 72vw 33vh 0 -1px rgba(223,232,242,.4),
    89vw 30vh 0 -1px rgba(223,232,242,.45), 42vw 36vh 0 -1px rgba(223,232,242,.35);
}
.stars { animation: starsCycle var(--cycle) linear infinite, twinkle 3.2s ease-in-out infinite alternate; }
@keyframes starsCycle { 0% { opacity: .25; } 8% { opacity: 0; } 46% { opacity: 0; } 58% { opacity: .8; } 90% { opacity: .8; } 100% { opacity: .25; } }
@keyframes twinkle { from { filter: brightness(.75); } to { filter: brightness(1.25); } }

/* sun & moon — shared arc path across the viewport */
.celestial {
  position: absolute; bottom: 13%; left: -7%;
  width: clamp(56px, 7vw, 92px); aspect-ratio: 1; border-radius: 50%;
  opacity: 0; will-change: transform;
}
.sun {
  background: radial-gradient(circle at 40% 35%, #ffe9a8, #f5c542 55%, #e07b3a 100%);
  box-shadow: 0 0 60px 22px rgba(245,197,66,.45), 0 0 150px 70px rgba(224,123,58,.22);
  animation: sunArc var(--cycle) linear infinite;
}
@keyframes sunArc {
  0%   { transform: translate(0vw, 8vh); opacity: 0; }
  5%   { opacity: 1; }
  13%  { transform: translate(28vw, -22vh); }
  25%  { transform: translate(53vw, -32vh); }
  37%  { transform: translate(78vw, -22vh); }
  45%  { opacity: 1; }
  50%  { transform: translate(106vw, 8vh); opacity: 0; }
  100% { transform: translate(106vw, 8vh); opacity: 0; }
}
.moon {
  background: radial-gradient(circle at 38% 35%, #f2f7fd, #b9c7d8 70%, #93a5bb 100%);
  box-shadow: 0 0 34px 10px rgba(191,214,240,.3), 0 0 90px 40px rgba(55,230,255,.12);
  animation: moonArc var(--cycle) linear infinite;
}
.moon::after { /* crescent bite */
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 72% 26%, rgba(9,12,22,.92) 0 34%, transparent 39%);
}
@keyframes moonArc {
  0%   { transform: translate(0vw, 8vh); opacity: 0; }
  50%  { transform: translate(0vw, 8vh); opacity: 0; }
  55%  { opacity: .95; }
  63%  { transform: translate(28vw, -22vh); }
  75%  { transform: translate(53vw, -32vh); }
  87%  { transform: translate(78vw, -22vh); }
  95%  { opacity: .95; }
  100% { transform: translate(106vw, 8vh); opacity: 0; }
}

/* city lights up when the sun goes down — warm haze behind the skyline */
.cityglow {
  opacity: 0;
  background:
    radial-gradient(55% 26% at 30% 100%, rgba(245,197,66,.14), transparent 70%),
    radial-gradient(60% 30% at 70% 100%, rgba(174,242,5,.10), transparent 70%);
  animation: cityGlow var(--cycle) linear infinite;
}
@keyframes cityGlow { 0% { opacity: .5; } 10% { opacity: 0; } 46% { opacity: 0; } 58% { opacity: 1; } 90% { opacity: 1; } 100% { opacity: .5; } }
.hero__skyline { position: absolute; bottom: 0; left: 0; width: 100%; height: 44%; fill: #05070c; opacity: .9; }
.hero__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(9,12,18,.25), rgba(9,12,18,.6) 70%, var(--bg)); }
.hero__content { position: relative; z-index: 2; padding-bottom: 56px; }

.badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 16px; border: 1px solid var(--line-2); background: rgba(255,255,255,.02); color: var(--muted);
}
.badge--soon { color: var(--accent); border-color: rgba(174,242,5,.4); }
.badge--soon::before { content: ""; width: 8px; height: 8px; background: var(--accent); box-shadow: 0 0 12px var(--accent); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100%{ opacity:1 } 50%{ opacity:.3 } }

.hero__title {
  font-size: clamp(66px, 17vw, 210px); line-height: .82; letter-spacing: 1px; margin: 22px 0 6px;
  text-transform: uppercase; color: var(--accent); text-shadow: 0 0 60px var(--glow);
}
.hero__accent { color: var(--text); -webkit-text-fill-color: var(--text); text-shadow: none; }
.hero__slogan { font-family: var(--disp); font-size: clamp(17px, 2.8vw, 28px); font-weight: 600; color: var(--text); margin: 10px 0 0; }
.hero__slogan em { color: var(--red); font-style: normal; }
.hero__sub { color: var(--muted); max-width: 58ch; margin: 18px 0 0; font-size: clamp(14px,1.6vw,16px); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__note { margin-top: 22px; color: var(--muted-2); font-size: 12px; letter-spacing: .5px; }
.hero__note::before { content: "> "; color: var(--accent); }

.countdown { display: flex; gap: 12px; margin-top: 34px; }
.countdown__item { background: rgba(255,255,255,.02); border: 1px solid var(--line); padding: 14px 18px; min-width: 74px; text-align: center; }
.countdown__num { display: block; font-family: var(--disp); font-size: clamp(26px,4vw,40px); font-weight: 700; color: var(--accent); }
.countdown__lbl { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-2); }

.hero__scroll { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 2; width: 24px; height: 40px; border: 2px solid var(--line-2); border-radius: 12px; }
.hero__scroll span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px; background: var(--accent); border-radius: 2px; animation: scroll 1.8s infinite; }
@keyframes scroll { 0%{ opacity:0; transform: translateY(0) } 30%{ opacity:1 } 100%{ opacity:0; transform: translateY(13px) } }

/* ---------- marquee ---------- */
.marquee { background: var(--bg-2); border-block: 1px solid var(--line); overflow: hidden; }
.marquee__track { display: inline-flex; gap: 24px; white-space: nowrap; padding: 13px 0; font-family: var(--mono); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); animation: marquee 30s linear infinite; }
.marquee__track span { font-size: 13px; }
.marquee__track span:nth-child(even) { color: var(--muted-2); }
@keyframes marquee { from{ transform: translateX(0) } to{ transform: translateX(-50%) } }

/* ---------- about ---------- */
.about { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.about__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px,5vw,70px); align-items: center; }
.ticks { list-style: none; margin-top: 26px; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 26px; color: var(--muted); }
.ticks li::before { content: ">"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; }

.media__frame { overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 16/10; cursor: pointer; background: var(--surface); }
.media__frame img { width: 100%; height: 100%; object-fit: cover; }
.media__play { position: absolute; inset: 0; margin: auto; width: 74px; height: 74px; border-radius: 50%; border: 0; background: var(--accent); color: var(--on-accent); display: grid; place-items: center; cursor: pointer; box-shadow: 0 0 0 10px rgba(174,242,5,.16); transition: transform .2s; z-index: 3; }
.media__frame:hover .media__play { transform: scale(1.08); }

/* ---------- grids / cards ---------- */
.grid { display: grid; gap: 18px; margin-top: 48px; }
.grid--feat { grid-template-columns: repeat(3, 1fr); }
.grid--roles { grid-template-columns: repeat(4, 1fr); }

.card { background: var(--surface); border: 1px solid var(--line); padding: 30px 26px; transition: transform .3s var(--ease), border-color .3s, background .3s; }
.card:hover { transform: translateY(-5px); border-color: rgba(174,242,5,.35); background: var(--surface-2); }
.card__icon {
  width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 18px;
  border: 1px solid var(--line-2); color: var(--accent); font-size: 22px; font-family: var(--disp); font-weight: 700;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 0 100%);
}
.card h3 { font-size: 21px; text-transform: uppercase; margin-bottom: 9px; letter-spacing: .5px; }
.card p { color: var(--muted); font-size: 14px; }

/* numbered feature cards (01, 02 …) — features section only */
.features .grid--feat { counter-reset: feat; }
.features .grid--feat .card { counter-increment: feat; }
.features .grid--feat .card::after {
  content: counter(feat, decimal-leading-zero); position: absolute; top: 16px; right: 18px; z-index: 3;
  font-family: var(--mono); font-size: 12px; letter-spacing: 1px; color: var(--muted-2);
}

.role { background: var(--surface); border: 1px solid var(--line); padding: 28px 24px; transition: transform .3s var(--ease), background .3s, border-color .3s; }
.role::after { content: ""; position: absolute; top: 0; left: 0; width: 36px; height: 3px; background: var(--accent); }
.role:nth-child(2)::after { background: var(--blue) } .role:nth-child(3)::after { background: var(--amber) } .role:nth-child(4)::after { background: var(--red) }
.role:hover { transform: translateY(-5px); background: var(--surface-2); border-color: var(--line-2); }
.role h3 { font-size: 20px; text-transform: uppercase; margin-bottom: 9px; letter-spacing: .5px; }
.role p { color: var(--muted); font-size: 14px; }

/* ---------- heat ---------- */
.heat { background: var(--bg-2); }
.heat__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,70px); align-items: center; }
.legend { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 26px; color: var(--muted); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.legend span { display: inline-flex; align-items: center; gap: 8px; }
.dot { width: 11px; height: 11px; display: inline-block; }
.dot--w { background: #e5e9f0 } .dot--y { background: var(--amber) } .dot--o { background: #fb7185 } .dot--r { background: var(--red); box-shadow: 0 0 10px var(--red); }

.heatmeter { display: grid; gap: 14px; background: var(--surface); border: 1px solid var(--line); padding: 28px 26px; }
.heatmeter__row { display: grid; grid-template-columns: 30px 1fr; grid-template-areas: "lvl bar" "lvl txt"; gap: 4px 14px; align-items: center; }
.heatmeter__lvl { grid-area: lvl; font-family: var(--disp); font-weight: 700; font-size: 18px; color: var(--muted); width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--line-2); }
.heatmeter__bar { grid-area: bar; height: 9px; background: rgba(255,255,255,.05); overflow: hidden; }
.heatmeter__bar i { display: block; height: 100%; width: var(--w); background: linear-gradient(90deg, var(--amber), var(--red)); }
.heatmeter__txt { grid-area: txt; color: var(--muted); font-size: 13px; }
.heatmeter__row--max .heatmeter__lvl { color: var(--red); border-color: var(--red); box-shadow: 0 0 14px rgba(255,59,70,.5); }
.heatmeter__row--max .heatmeter__txt { color: var(--red); font-weight: 600; }
.heatmeter__bar i { width: 0; transition: width 1s var(--ease); }
.reveal.is-visible .heatmeter__bar i { width: var(--w); }

/* ---------- screenshots / gallery ---------- */
.screens { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.screens__note { margin: 14px auto 0; max-width: 56ch; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.shot { aspect-ratio: 16/10; overflow: hidden; border: 1px solid var(--line); cursor: pointer; background: var(--surface); }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.shot:hover img { transform: scale(1.06); }
.shot::after { content: attr(data-caption); position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 14px 12px; font-family: var(--mono); font-size: 12px; font-weight: 500; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.85)); opacity: 0; transition: opacity .3s; z-index: 3; }
.shot:hover::after { opacity: 1; }

/* placeholder when an image is missing */
.is-placeholder img { display: none; }
.is-placeholder { display: grid; place-items: center; background: repeating-linear-gradient(45deg, #0d121b 0 16px, #10161f 16px 32px); border-style: dashed; border-color: var(--line-2); }
.is-placeholder::before { content: "[ ] " attr(data-caption); position: static; padding: 18px; text-align: center; color: var(--muted-2); font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .4px; opacity: 1; background: none; }
.is-placeholder::after { display: none; }

/* ---------- token ---------- */
.token { background: var(--bg); }
.token__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px,5vw,70px); align-items: center; }
.disclaimer { margin-top: 22px; font-size: 11.5px; color: var(--muted-2); max-width: 54ch; }
.token__coin { display: grid; place-items: center; }
.coin {
  width: clamp(180px, 26vw, 280px); aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; align-content: center;
  background: radial-gradient(circle at 35% 30%, #d4ff5e, #aef205 50%, #6f9c00 100%);
  color: var(--on-accent); box-shadow: 0 0 0 10px rgba(174,242,5,.10), 0 30px 70px -20px var(--glow);
  animation: float 5s ease-in-out infinite; position: relative;
}
.coin::before { content: ""; position: absolute; inset: 14px; border-radius: 50%; border: 3px dashed rgba(7,20,10,.35); }
.coin span { font-family: var(--disp); font-weight: 700; font-size: clamp(60px,9vw,110px); line-height: 1; }
.coin small { font-family: var(--disp); font-weight: 700; letter-spacing: 4px; font-size: clamp(14px,2vw,20px); }
@keyframes float { 0%,100%{ transform: translateY(0) rotate(-3deg) } 50%{ transform: translateY(-16px) rotate(3deg) } }

/* ---------- tokenomics ---------- */
.omics { margin-top: clamp(46px, 7vw, 88px); }
.omics__title { text-align: center; font-size: clamp(22px, 3.2vw, 34px); text-transform: uppercase; letter-spacing: 1px; }
.omics__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 30px; }
.stat { background: var(--surface); border: 1px solid var(--line); padding: 24px 18px; text-align: center; }
.stat__k { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-2); }
.stat__v { display: block; margin-top: 8px; font-family: var(--disp); font-weight: 700; font-size: clamp(18px, 2.4vw, 24px); color: var(--accent); }

.omics__alloc { max-width: 800px; margin: 36px auto 0; background: var(--surface); border: 1px solid var(--line); padding: clamp(26px, 4vw, 42px); }
.omics__sub { text-transform: uppercase; letter-spacing: 2px; font-family: var(--mono); font-size: 12px; color: var(--muted); margin-bottom: 22px; }
.alloc { display: grid; gap: 18px; }
.alloc__row { display: grid; grid-template-columns: 1fr auto; grid-template-areas: "label val" "bar bar"; gap: 6px 12px; align-items: center; }
.alloc__row > span { grid-area: label; color: var(--muted); font-size: 14px; }
.alloc__row > b { grid-area: val; font-family: var(--disp); font-weight: 700; font-size: 16px; color: var(--text); }
.alloc__row > i { grid-area: bar; height: 8px; background: rgba(255,255,255,.05); position: relative; overflow: hidden; }
.alloc__row > i::after { content: ""; position: absolute; inset: 0; width: 0; background: var(--c, var(--accent)); transition: width 1.1s var(--ease); }
.reveal.is-visible .alloc__row > i::after { width: var(--p); }
.omics__alloc .disclaimer { margin-top: 22px; text-align: center; margin-left: auto; margin-right: auto; }

/* inline code in notes */
code { background: rgba(255,255,255,.05); border: 1px solid var(--line); padding: 1px 7px; font-size: .92em; color: var(--accent); font-family: var(--mono); }

/* ---------- wishlist ---------- */
.wishlist { background: linear-gradient(180deg, var(--bg), #07080c); }
.wishlist__card {
  background: var(--surface); border: 1px solid var(--line);
  padding: clamp(36px,6vw,64px); text-align: center; box-shadow: var(--shadow);
  background-image: radial-gradient(800px 300px at 50% -20%, rgba(174,242,5,.12), transparent 60%);
}
.wishlist__cta { margin-top: 28px; }
.wishlist__or { margin: 26px 0 14px; color: var(--muted-2); font-size: 12px; text-transform: uppercase; letter-spacing: 2px; }
.signup { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.signup input { flex: 1; background: var(--bg); border: 1px solid var(--line-2); padding: 14px 18px; color: var(--text); font-family: var(--mono); font-size: 14px; outline: none; transition: border-color .2s; }
.signup input:focus { border-color: var(--accent); }
.signup__msg { margin-top: 14px; font-size: 13px; min-height: 20px; color: var(--accent); }

/* ---------- footer ---------- */
.footer { background: #07080c; border-top: 1px solid var(--line); padding: 56px 0 28px; }
.footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; align-items: flex-start; }
.footer__brand .brand__name { font-size: 24px; }
.footer__slogan { color: var(--muted-2); font-size: 13px; margin-top: 8px; max-width: 36ch; }
.footer__links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer__links a { font-family: var(--disp); color: var(--muted); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.footer__links a:hover { color: var(--accent); }
.footer__social { display: flex; gap: 10px; }
.footer__social a { display: inline-grid; place-items: center; min-width: 40px; height: 40px; padding: 0 12px; border: 1px solid var(--line-2); color: var(--muted); font-weight: 700; font-size: 13px; transition: .2s; }
.footer__social a:hover { color: var(--accent); border-color: var(--accent); }
.footer__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 12px; }
.footer__fine { max-width: 60ch; }

/* ---------- lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(5,6,10,.93); backdrop-filter: blur(8px); display: none; place-items: center; padding: 30px; }
.lightbox.is-open { display: grid; }
.lightbox__inner { max-width: 1000px; width: 100%; text-align: center; }
.lightbox__media { overflow: hidden; border: 1px solid var(--line-2); aspect-ratio: 16/9; background: repeating-linear-gradient(45deg,#0d121b 0 16px,#10161f 16px 32px); display: grid; place-items: center; color: var(--muted-2); font-family: var(--mono); }
.lightbox__media img { width: 100%; height: 100%; object-fit: contain; }
.lightbox figcaption { margin-top: 16px; color: var(--muted); font-size: 14px; }
.lightbox__close { position: absolute; top: 20px; right: 26px; background: none; border: 0; color: #fff; font-size: 38px; line-height: 1; cursor: pointer; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .grid--feat { grid-template-columns: repeat(2, 1fr); }
  .grid--roles { grid-template-columns: repeat(2, 1fr); }
  .about__grid, .heat__grid, .token__inner { grid-template-columns: 1fr; }
  .token__coin { order: -1; }
  .omics__stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav__links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 0; align-items: stretch;
    background: rgba(9,12,18,.98); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line);
    padding: 10px 24px 22px; transform: translateY(-130%); transition: transform .35s var(--ease); pointer-events: none;
  }
  .nav__links.is-open { transform: translateY(0); pointer-events: auto; }
  .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav__cta { margin-top: 12px; text-align: center; }
  .nav__toggle { display: flex; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .countdown__item { min-width: 0; flex: 1; padding: 12px 8px; }
}
@media (max-width: 480px) {
  .grid--feat, .grid--roles, .gallery { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .signup { flex-direction: column; }
  .signup input, .signup .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Creek211 — Dynamic text effects (js/dynamic.js)
   Calm-tech: scramble text, typewriter caret, staggered heatmeter.
   Inherits prefers-reduced-motion override above.
   ============================================================ */

/* Scramble: render the jumbled chars in a monospace face so the scramble
   "feels like" a wallet address settling. */
[data-scramble] {
  font-family: var(--mono, "JetBrains Mono"), ui-monospace, "Courier New", monospace;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

/* Typewriter: blinking caret next to the still-being-typed slogan. */
.tw-caret {
  display: inline-block;
  color: var(--accent);
  margin-left: 1px;
  animation: tw-blink 1s steps(2, end) infinite;
}
@keyframes tw-blink { 50% { opacity: 0; } }

/* Heatmeter: stagger the bar fill via transition-delay on each row's <i>.
   The observer in dynamic.js adds .is-filling once on first sight, then the
   bars cascade 1 -> 5 (200ms apart). Falls back to filling at once if the
   observer isn't there. */
[data-heatmeter] .heatmeter__bar i { width: 0; transition: width .9s var(--ease); }
[data-heatmeter].is-filling .heatmeter__bar i { width: var(--w); }

/* ============================================================
   Creek211 — Showcase upgrades (js/showcase.js)
   Stat counters, rotating systems panels, live city feed,
   3D screenshot ring, stock ticker.
   ============================================================ */

/* ---------- stat counters ---------- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 46px; }
.statc { background: var(--surface); border: 1px solid var(--line); padding: 26px 18px; text-align: center; position: relative; }
.statc::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: .5; }
.statc__num { display: block; font-family: var(--disp); font-weight: 700; font-size: clamp(30px, 4.6vw, 52px); color: var(--accent); text-shadow: 0 0 26px var(--glow); font-variant-numeric: tabular-nums; }
.statc__lbl { display: block; margin-top: 6px; font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-2); }

/* ---------- systems rotating panels ---------- */
.systems { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.systems__box { margin-top: 36px; background: var(--surface); border: 1px solid var(--line); position: relative; overflow: hidden; }
.systems__box::after {
  content: ""; position: absolute; inset: 7px; pointer-events: none; z-index: 2; --bc: var(--line-2);
  background:
    linear-gradient(var(--bc),var(--bc)) left  top    / 16px 2px no-repeat,
    linear-gradient(var(--bc),var(--bc)) left  top    / 2px 16px no-repeat,
    linear-gradient(var(--bc),var(--bc)) right top    / 16px 2px no-repeat,
    linear-gradient(var(--bc),var(--bc)) right top    / 2px 16px no-repeat,
    linear-gradient(var(--bc),var(--bc)) left  bottom / 16px 2px no-repeat,
    linear-gradient(var(--bc),var(--bc)) left  bottom / 2px 16px no-repeat,
    linear-gradient(var(--bc),var(--bc)) right bottom / 16px 2px no-repeat,
    linear-gradient(var(--bc),var(--bc)) right bottom / 2px 16px no-repeat;
}
.systems__tabs { display: flex; flex-wrap: wrap; border-bottom: 1px solid var(--line); }
.systems__tab {
  flex: 1 1 auto; background: none; border: 0; border-right: 1px solid var(--line); cursor: pointer;
  font-family: var(--disp); font-weight: 600; font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted-2); padding: 15px 12px; transition: color .2s, background .2s; white-space: nowrap;
}
.systems__tab:last-child { border-right: 0; }
.systems__tab:hover { color: var(--text); background: rgba(255,255,255,.02); }
.systems__tab.is-active { color: var(--accent); background: rgba(174,242,5,.05); box-shadow: inset 0 -2px 0 var(--accent); }
.systems__panels { position: relative; min-height: 300px; }
.systems__panel { display: none; padding: clamp(26px, 4vw, 44px); }
.systems__panel.is-active { display: block; animation: sysIn .45s var(--ease); }
@keyframes sysIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.systems__panel h3 { font-size: clamp(20px, 3vw, 30px); text-transform: uppercase; letter-spacing: .5px; }
.systems__panel p { color: var(--muted); margin-top: 14px; max-width: 78ch; }
.systems__panel p em { color: var(--accent); font-style: normal; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.chip {
  font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .4px;
  color: var(--text); background: rgba(255,255,255,.03); border: 1px solid var(--line-2); padding: 7px 13px;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 0 100%);
}
.systems__term {
  margin-top: 24px; font-family: var(--mono); font-size: 14px; color: var(--accent);
  background: var(--bg); border: 1px solid var(--line); padding: 12px 16px; display: inline-flex; align-items: center; gap: 8px;
}
.systems__prompt { color: var(--muted-2); }
.systems__caret { animation: tw-blink 1s steps(2, end) infinite; }
.systems__progress { height: 3px; background: rgba(255,255,255,.05); }
.systems__progress i { display: block; height: 100%; width: 0; background: var(--accent); box-shadow: 0 0 12px var(--glow); }

/* ---------- live city feed ---------- */
.cityfeed { margin-top: 26px; background: #05070c; border: 1px solid var(--line); font-family: var(--mono); }
.cityfeed__head { display: flex; justify-content: space-between; align-items: center; padding: 11px 16px; border-bottom: 1px solid var(--line); }
.cityfeed__title { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--amber); }
.cityfeed__status { display: inline-flex; align-items: center; gap: 7px; font-size: 10px; letter-spacing: 2px; color: var(--muted-2); }
.cityfeed__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 10px var(--red); animation: pulse 1.4s infinite; }
.cityfeed__lines { padding: 14px 16px 16px; min-height: 148px; display: flex; flex-direction: column; justify-content: flex-end; gap: 6px; overflow: hidden; }
.cityfeed__line { font-size: 12.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; animation: feedIn .4s var(--ease); }
.cityfeed__line:last-child { color: var(--text); }
.cityfeed__time { color: var(--accent); margin-right: 8px; }
@keyframes feedIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- 3D screenshot ring ---------- */
.carousel { position: relative; margin-top: 48px; perspective: 1500px; }
.carousel__stage {
  position: absolute; inset: 0; transform-style: preserve-3d;
  transition: transform .8s var(--ease); touch-action: pan-y; cursor: grab;
}
.carousel__stage:active { cursor: grabbing; }
.carousel .carousel__panel {
  position: absolute; left: 50%; top: 50%; width: min(540px, 76vw); aspect-ratio: 16/10;
  transform-origin: 50% 50%; backface-visibility: hidden;
  transition: opacity .5s, filter .5s;
  opacity: .45; filter: brightness(.55) saturate(.8);
  box-shadow: var(--shadow);
}
.carousel .carousel__panel.is-front { opacity: 1; filter: none; }
.carousel .carousel__panel.is-front::before { --bc: var(--accent); }
.carousel::after {
  content: ""; position: absolute; left: 50%; bottom: -8px; transform: translateX(-50%);
  width: min(560px, 78vw); height: 40px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(174,242,5,.16), transparent 70%); pointer-events: none;
}
.carousel__controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 26px; }
.carousel__btn {
  background: rgba(255,255,255,.02); border: 1px solid var(--line-2); color: var(--muted);
  width: 44px; height: 44px; font-size: 18px; cursor: pointer; transition: .2s;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 0 100%);
}
.carousel__btn:hover { color: var(--accent); border-color: var(--accent); }
.carousel__dots { display: flex; gap: 10px; }
.carousel__dot { width: 10px; height: 10px; padding: 0; border: 1px solid var(--line-2); background: transparent; cursor: pointer; transition: .2s; }
.carousel__dot.is-on { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 10px var(--glow); }

/* ---------- stock ticker ---------- */
.ticker { display: flex; align-items: stretch; background: #05070c; border-block: 1px solid var(--line); overflow: hidden; }
.ticker__label {
  display: flex; align-items: center; padding: 0 18px; font-family: var(--disp); font-weight: 700;
  font-size: 12px; letter-spacing: 2px; color: var(--on-accent); background: var(--accent); white-space: nowrap;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 0 100%); padding-right: 26px; z-index: 1;
}
.ticker__viewport { flex: 1; overflow: hidden; }
.ticker__track {
  display: inline-flex; white-space: nowrap; padding: 12px 0 12px 24px;
  font-family: var(--mono); font-size: 13px; animation: marquee 40s linear infinite;
}
.ticker__group { display: inline-flex; gap: 38px; padding-right: 38px; }
.ticker__item { display: inline-flex; align-items: baseline; gap: 8px; }
.ticker__sym { font-weight: 700; color: var(--text); letter-spacing: 1px; }
.ticker__price { color: var(--muted); font-variant-numeric: tabular-nums; }
.ticker__chg { font-size: 11.5px; font-weight: 700; font-variant-numeric: tabular-nums; }
.ticker__item.is-up .ticker__chg { color: var(--accent); }
.ticker__item.is-down .ticker__chg { color: var(--red); }
.ticker__item.is-flash .ticker__price { color: var(--text); transition: none; }

/* ---------- responsive (showcase) ---------- */
@media (max-width: 940px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .systems__tab { flex: 1 1 33%; border-top: 1px solid var(--line); }
}
@media (max-width: 760px) {
  .systems__tab { font-size: 11px; padding: 12px 8px; flex: 1 1 50%; }
  .ticker__label { display: none; }
  .cityfeed__line { font-size: 11.5px; }
}

/* ============================================================
   Creek211 — Design pass v2 (ui-ux-pro-max)
   Retro-futurist treatment on the existing brand:
   CRT scanlines + vignette, glitch hero, neon glow discipline,
   SVG icon styling, a11y (focus-visible, touch targets, contrast).
   ============================================================ */

:root {
  --cyan:   #37e6ff;                 /* web3 / token secondary neon */
  --violet: #a78bfa;                 /* depth accent */
  --muted-2: #6c7a90;                /* bumped from #5e6c80 for contrast */
}

/* ---------- CRT scanlines + vignette ---------- */
.fx { position: fixed; inset: 0; pointer-events: none; z-index: 90; }
.fx__scan {
  position: absolute; inset: 0; display: block;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,.32) 0 1px, transparent 1px 3px);
  opacity: .14; mix-blend-mode: multiply;
  animation: crtFlicker 6s steps(2, end) infinite;
}
.fx__vignette {
  position: absolute; inset: 0; display: block;
  background: radial-gradient(ellipse at 50% 45%, transparent 58%, rgba(3,4,7,.5) 100%);
}
@keyframes crtFlicker { 0%,100% { opacity: .14; } 50% { opacity: .11; } }
@media (max-width: 760px) { .fx__scan { opacity: .08; } }

/* ---------- glitch hero title ----------
   Bursts are scheduled by JS (wireGlitch in showcase.js) at random short
   intervals. Two one-shot modes: RGB slice tear, and pixel corruption
   (blocky chunks + stepped jitter + hue malfunction on the base text). */
.glitch { position: relative; }
.glitch::before, .glitch::after {
  content: attr(data-text); position: absolute; inset: 0;
  opacity: 0; pointer-events: none;
  text-shadow: none; overflow: hidden;
}
.glitch::before { color: var(--cyan); z-index: -1; }
.glitch::after  { color: var(--red);  z-index: -2; }

/* mode 1: RGB slice tear */
.glitch--rgb::before { animation: rgbA .5s linear 1; }
.glitch--rgb::after  { animation: rgbB .5s linear 1; }
@keyframes rgbA {
  0%, 100% { opacity: 0; transform: none; clip-path: none; }
  10% { opacity: .85; transform: translate(-6px, 2px);  clip-path: inset(12% 0 62% 0); }
  35% { opacity: .85; transform: translate(5px, -2px);  clip-path: inset(58% 0 18% 0); }
  60% { opacity: .85; transform: translate(-4px, 1px);  clip-path: inset(38% 0 42% 0); }
  85% { opacity: .55; transform: translate(3px, 0);     clip-path: inset(75% 0 8% 0); }
}
@keyframes rgbB {
  0%, 100% { opacity: 0; transform: none; clip-path: none; }
  15% { opacity: .75; transform: translate(6px, -2px);  clip-path: inset(68% 0 12% 0); }
  40% { opacity: .75; transform: translate(-5px, 1px);  clip-path: inset(8% 0 72% 0); }
  65% { opacity: .75; transform: translate(4px, 0);     clip-path: inset(44% 0 36% 0); }
  88% { opacity: .5;  transform: translate(-3px, 1px);  clip-path: inset(25% 0 55% 0); }
}

/* mode 2: pixel corruption — blocky chunks torn out + stepped jitter */
.glitch--corrupt { animation: corruptBase .55s steps(3, end) 1; }
@keyframes corruptBase {
  0%, 100% { transform: none; filter: none; }
  20% { transform: translate(2px, -2px) skewX(2deg);   filter: hue-rotate(20deg) saturate(1.7); }
  45% { transform: translate(-3px, 1px);               filter: hue-rotate(-30deg) contrast(1.5); }
  75% { transform: translate(1px, 2px) skewX(-1.5deg); filter: saturate(2.2); }
}
.glitch--corrupt::before { animation: corruptPxA .55s steps(4, end) 1; }
.glitch--corrupt::after  { animation: corruptPxB .55s steps(4, end) 1; }
@keyframes corruptPxA {
  0%   { opacity: .9; transform: translate(-12px, 0);  clip-path: inset(6% 0 86% 0); }
  25%  { opacity: .9; transform: translate(9px, 1px);  clip-path: inset(28% 44% 62% 0); }
  50%  { opacity: .9; transform: translate(-8px, -1px); clip-path: inset(52% 0 40% 34%); }
  75%  { opacity: .9; transform: translate(10px, 0);   clip-path: inset(74% 22% 16% 8%); }
  100% { opacity: 0; transform: none; clip-path: none; }
}
@keyframes corruptPxB {
  0%   { opacity: .85; transform: translate(11px, 1px);  clip-path: inset(80% 0 10% 26%); }
  25%  { opacity: .85; transform: translate(-10px, 0);   clip-path: inset(48% 30% 44% 0); }
  50%  { opacity: .85; transform: translate(8px, -2px);  clip-path: inset(14% 0 78% 48%); }
  75%  { opacity: .85; transform: translate(-9px, 1px);  clip-path: inset(34% 12% 52% 20%); }
  100% { opacity: 0; transform: none; clip-path: none; }
}

/* ---------- neon glow discipline ---------- */
.btn--primary {
  animation: ctaPulse 3s var(--ease) infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 12px 34px -12px var(--glow); }
  50%      { box-shadow: 0 12px 44px -10px var(--glow), 0 0 24px -4px var(--glow); }
}
.btn--primary:hover { animation: none; box-shadow: 0 18px 44px -14px var(--glow), 0 0 30px -6px var(--glow); }

/* hover sheen sweep on cards */
.card, .role {
  background-image: linear-gradient(115deg, transparent 42%, rgba(174,242,5,.055) 50%, transparent 58%);
  background-size: 260% 100%; background-position: 115% 0; background-repeat: no-repeat;
  transition: transform .3s var(--ease), border-color .3s, background-color .3s, background-position .55s var(--ease);
}
.card:hover, .role:hover { background-position: -15% 0; }

/* ---------- SVG feature icons ---------- */
.card__icon svg { display: block; filter: drop-shadow(0 0 7px rgba(174,242,5,.45)); }
.card:hover .card__icon { border-color: var(--accent); box-shadow: 0 0 16px -4px var(--glow); }
.card:hover .card__icon svg { filter: drop-shadow(0 0 10px rgba(174,242,5,.7)); }

/* ---------- web3 / token accents ---------- */
.token .section__title .text-accent {
  background: linear-gradient(100deg, var(--accent), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.coin { position: relative; }
.coin::after {
  content: ""; position: absolute; inset: -14px; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 40%, rgba(55,230,255,.5) 50%, transparent 60%, transparent 88%, rgba(174,242,5,.6) 96%, transparent 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
          mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  animation: coinRing 7s linear infinite;
}
@keyframes coinRing { to { transform: rotate(360deg); } }

/* ---------- accessibility & interaction (skill checklist) ---------- */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn:focus-visible { outline-color: var(--cyan); }

/* touch-friendly carousel dots (44px-ish targets, small visual) */
.carousel__dot { width: 28px; height: 28px; border: 0; background: none; position: relative; }
.carousel__dot::after {
  content: ""; position: absolute; inset: 9px; border: 1px solid var(--line-2);
  background: transparent; transition: .2s;
}
.carousel__dot.is-on { background: none; border: 0; box-shadow: none; }
.carousel__dot.is-on::after { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 10px var(--glow); }

/* input focus glow (terminal feel) */
.signup input:focus { box-shadow: 0 0 0 1px var(--accent), 0 0 18px -6px var(--glow); }

/* nav scrollspy state */
.nav__links a.is-active { color: var(--accent); }
.nav__links a { position: relative; }
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px;
  background: var(--accent); transition: right .25s var(--ease); box-shadow: 0 0 8px var(--glow);
}
.nav__links a:not(.btn):hover::after, .nav__links a:not(.btn).is-active::after { right: 0; }

/* section titles get a faint neon lift */
.section__title { text-shadow: 0 0 30px rgba(174,242,5,.12); }

/* Roles cast banner (real in-engine render) */
.roles__banner {
  position: relative; margin: 40px 0 4px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow); cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}
.roles__banner img { width: 100%; display: block; transition: transform .6s var(--ease); }
.roles__banner:hover img { transform: scale(1.03); }
.roles__banner::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(7,8,12,.75));
}
.roles__banner figcaption {
  position: absolute; left: 20px; bottom: 16px; z-index: 2;
  font-family: var(--disp); font-weight: 700; font-size: clamp(15px, 2.2vw, 22px);
  text-transform: uppercase; letter-spacing: .5px; color: var(--text);
  text-shadow: 0 2px 18px rgba(0,0,0,.8);
}
.roles__banner figcaption::before { content: "// "; color: var(--accent); }

/* Daily Drop callout ($Creek section) */
.dailydrop {
  margin-top: 26px; padding: 20px 22px; position: relative;
  background: rgba(174,242,5,.04); border: 1px solid rgba(174,242,5,.3);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}
.dailydrop__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--disp); font-weight: 700; font-size: 12px; letter-spacing: 2px;
  color: var(--on-accent); background: var(--accent); padding: 4px 10px; margin-bottom: 10px;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 0 100%);
}
.dailydrop__tag::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--on-accent); animation: pulse 1.6s infinite;
}
.dailydrop p { color: var(--muted); font-size: 14px; }
.dailydrop em { color: var(--accent); font-style: normal; font-weight: 700; }

/* "ONLY" — heartbeat pulse with elastic settle (hero + footer slogans) */
.only-beat {
  display: inline-block; color: var(--red); font-style: normal; font-weight: 700;
  transform-origin: 50% 60%;
  animation: onlyBeat 2.4s ease-in-out infinite;
  text-shadow: 0 0 16px rgba(255,59,70,.45);
}
@keyframes onlyBeat {
  0%, 42%, 100% { transform: scale(1); }
  8%  { transform: scale(1.22); }   /* thump */
  16% { transform: scale(0.95); }   /* elastic undershoot */
  24% { transform: scale(1.09); }   /* rebound */
  32% { transform: scale(0.99); }   /* settle ring */
}

/* nav brand logo (assets/logo.svg — font-free vector lockup) */
.brand__logo { height: 32px; width: auto; display: block; transition: filter .25s; }
.brand:hover .brand__logo { filter: drop-shadow(0 0 10px rgba(174,242,5,.55)); }
@media (max-width: 480px) { .brand__logo { height: 26px; } }

@media (prefers-reduced-motion: reduce) {
  .fx__scan { animation: none; }
  .glitch::before, .glitch::after { display: none; }
  .btn--primary { animation: none; }
  .coin::after { animation: none; }
}
