/* ===========================================================
   EJAK — Born To Send
   B/W typographic system. No artwork. No beige.
   =========================================================== */

:root {
  --ink: #0a0a0a;
  --bg: #f4f4f2;        /* loader paper */
  --site-bg: #00ff04;   /* main site green - bright candle green */
  --bg-2: #ffffff;
  --line: #0a0a0a;
  --muted: #6b6b6b;
  --accent: #ff2a2a;
  --candle-green: #16c784;
  --candle-green-dark: #0f8a5a;
  --shadow: 6px 6px 0 var(--ink);
  --shadow-sm: 3px 3px 0 var(--ink);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; height: 100vh; }

a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

/* subtle film grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ===========================================================
   LOADER
   =========================================================== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.loader-grid {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 20px 32px 22px;
  position: relative;
  z-index: 2;
}

.loader-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ink);
}
.brand-line { display: flex; align-items: center; gap: 12px; }
.brand-line .dot { width: 8px; height: 8px; background: var(--ink); border-radius: 50%; display: inline-block; }
.brand-line.right { opacity: 0.6; }

.loader-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
  min-height: 0;
  position: relative;
}

.loader-title {
  font-family: 'Anton', 'Archivo Black', sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 9vw, 130px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-align: center;
  text-transform: uppercase;
}
.loader-title span { display: block; }
.loader-title .outline {
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
  letter-spacing: -0.04em;
}

.puppet {
  position: relative;
  width: min(260px, 50vw, 30vh);
  aspect-ratio: 1;
  margin: 6px auto 28px;
  user-select: none;
  touch-action: none;
  cursor: grab;
  will-change: transform;
  transform: translate3d(0,0,0);
}
.puppet:active { cursor: grabbing; }
.ejack-frame {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  image-rendering: auto;
}
.puppet-hint {
  position: absolute;
  left: 50%; bottom: -20px;
  transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.55;
}
.puppet-hint .arrow {
  display: inline-block;
  animation: nudge 1.4s ease-in-out infinite;
}
.puppet-hint .arrow:last-child { animation-delay: 0.7s; }
@keyframes nudge {
  0%,100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

.loader-sub {
  margin-top: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(13px, 1.3vw, 16px);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink);
  opacity: 0.85;
}
.loader-sub em {
  font-style: normal;
  background: var(--ink);
  color: var(--bg);
  padding: 2px 8px;
}

/* meter */
.loader-foot {
  border-top: 1px solid var(--ink);
  padding-top: 10px;
}
.meter-inline {
  width: min(560px, 80vw);
  margin: 6px auto 6px;
}
.meter-inline .meter-row.top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
}
.meter-rail {
  position: relative;
  width: 100%;
  height: 22px;
  background: var(--bg);
  border: 2px solid var(--ink);
  overflow: hidden;
}
.meter-fill {
  height: 100%;
  width: 0%;
  background: var(--ink);
  background-image: repeating-linear-gradient(
    45deg,
    var(--ink) 0 6px,
    #222 6px 12px
  );
}
.meter-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 10px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
}
.meter-label { font-size: 12px; letter-spacing: 3px; }
.meter-pct {
  font-family: 'Anton', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: 1px;
}
.hint {
  margin-top: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* very short desktop screens — shrink further so nothing clips */
@media (min-width: 721px) and (max-height: 780px) {
  .loader-grid { padding: 10px 28px 12px; }
  .loader-title { font-size: clamp(42px, 7vw, 90px); }
  .puppet { width: min(200px, 24vh); margin: 4px auto 22px; }
  .puppet-hint { bottom: -18px; font-size: 10px; letter-spacing: 3px; }
  .loader-sub { margin-top: 6px; font-size: 12px; }
  .meter-inline { margin: 4px auto 4px; }
  .meter-rail { height: 16px; }
  .meter-pct { font-size: clamp(18px, 2.4vw, 26px); }
  .meter-label { font-size: 11px; letter-spacing: 2px; }
  .loader-foot { padding-top: 6px; }
  .hint { margin-top: 6px; font-size: 11px; }
}

/* mobile — keep loader fully visible with breathing room */
@media (max-width: 720px) {
  .loader { overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .loader-grid {
    padding: 16px 18px calc(28px + env(safe-area-inset-bottom, 0px));
    min-height: 100%;
  }
  .loader-head { font-size: 10px; letter-spacing: 1.5px; padding-bottom: 12px; }
  .loader-stage { padding: 18px 0 8px; }
  .loader-title { font-size: clamp(56px, 18vw, 110px); }
  .puppet { width: min(280px, 64vw); margin: 10px auto 18px; }
  .puppet-hint { bottom: -22px; font-size: 10px; letter-spacing: 3px; }
  .meter-inline { width: 100%; margin: 16px auto 4px; }
  .loader-sub { margin-top: 24px; }
  .loader-foot { padding-top: 12px; }
}

/* splash overlay */
.splash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}
.splash svg { width: 100%; height: 100%; }

/* fullscreen splash video — covers viewport, cropped if needed */
.splash-video {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  background: #000;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  display: none;
}
.splash-video.active { display: block; opacity: 1; }
.splash-video.fading { opacity: 0; }

/* ===========================================================
   SITE
   =========================================================== */
.site.hidden { display: none; }
.site {
  position: relative;
  z-index: 2;
  background: var(--site-bg);
  animation: emerge 1.1s cubic-bezier(.2,.8,.2,1);
}
@keyframes emerge {
  from { transform: scale(1.5); filter: blur(28px); opacity: 0; }
  to { transform: scale(1); filter: blur(0); opacity: 1; }
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: var(--site-bg);
  border-bottom: 2px solid var(--ink);
  backdrop-filter: blur(6px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
}
.brand-emblem {
  display: inline-block;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--bg-2);
  box-shadow: 2px 2px 0 var(--ink);
  flex-shrink: 0;
}
.brand-emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transform: scale(1.9);
  transform-origin: center 28%;
  display: block;
}
.brand-name { line-height: 1; }
.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-links a { text-decoration: none; position: relative; padding: 4px 0; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--ink);
}
@media (max-width: 820px) { .nav-links { display: none; } }

.btn-cta {
  display: inline-block;
  text-decoration: none;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 20px;
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.1s, box-shadow 0.1s;
  text-transform: uppercase;
}
.btn-cta:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); }
.btn-cta:active { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--ink); }
.btn-cta.big { font-size: 24px; padding: 18px 30px; }

.btn-ghost {
  display: inline-block;
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-left: 22px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 2px;
}

/* HERO */
.hero {
  position: relative;
  padding: 60px 28px 0;
  overflow: hidden;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  max-width: 1320px;
  margin: 0 auto;
  align-items: center;
  min-height: 80vh;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 30px; padding-top: 20px; } }

.kicker {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--bg);
  padding: 6px 12px;
  margin-bottom: 22px;
}

.title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.title .t1 { display: block; font-size: clamp(64px, 10vw, 150px); }
.title .t2 {
  display: block;
  font-size: clamp(90px, 16vw, 220px);
  letter-spacing: -0.04em;
  margin: 4px 0;
}
.outline {
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
}
.title .t3 {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: none;
  margin-top: 8px;
}
.title .t3 { font-style: italic; }

.lede {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.55;
  max-width: 540px;
  color: #1a1a1a;
}

.hero-cta {
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.contract {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 2px solid var(--ink);
  padding: 8px 8px 8px 14px;
  background: var(--bg-2);
  max-width: 100%;
  flex-wrap: wrap;
}
.ca-label {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  padding-right: 10px;
  border-right: 1px solid var(--ink);
}
#ca {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  word-break: break-all;
  letter-spacing: 1px;
}
.copy {
  background: var(--ink);
  color: var(--bg);
  border: none;
  padding: 8px 14px;
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
}
.copy:hover { background: var(--accent); }

/* hero art */
.hero-art {
  position: relative;
  display: grid;
  place-items: center;
}
.hero-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: contrast(1.1);
  animation: bob 4s ease-in-out infinite;
}
@keyframes bob {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1.5deg); }
}

.speech {
  position: absolute;
  top: -28px;
  right: -8px;
  background: var(--bg-2);
  border: 2px solid var(--ink);
  padding: 12px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 1px;
  max-width: 220px;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  transform: rotate(3deg);
  z-index: 2;
}
.speech::after {
  content: "";
  position: absolute;
  left: 24px; bottom: -14px;
  width: 0; height: 0;
  border: 10px solid transparent;
  border-top-color: var(--ink);
}

@media (max-width: 900px) {
  .hero-art { padding-top: 36px; }
  .speech {
    position: static;
    display: inline-block;
    margin: 16px auto 0;
    transform: rotate(-1.5deg);
    max-width: 100%;
  }
  .speech::after { display: none; }
}

/* marquee */
.marquee {
  margin-top: 60px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: roll 36s linear infinite;
}
@keyframes roll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SECTIONS */
.section {
  padding: 110px 28px;
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
}
.h2 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 9vw, 120px);
  letter-spacing: -0.02em;
  line-height: 0.9;
  margin-bottom: 50px;
  text-transform: uppercase;
}
.h2 small {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.18em;
  font-weight: 400;
  letter-spacing: 3px;
  vertical-align: middle;
  margin-left: 14px;
  color: var(--muted);
  text-transform: uppercase;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  background: var(--bg-2);
  border: 2px solid var(--ink);
  padding: 0;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-bottom: 2px solid var(--ink);
  mix-blend-mode: multiply;
  background: var(--bg-2);
}
.card h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 1px;
  padding: 20px 22px 8px;
  text-transform: uppercase;
}
.card p { padding: 0 22px 24px; font-size: 16px; line-height: 1.55; }

/* TOKENOMICS */
.tok-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--ink);
  background: var(--bg-2);
  box-shadow: var(--shadow);
}
@media (max-width: 720px) { .tok-grid { grid-template-columns: repeat(2, 1fr); } }
.tok-card {
  padding: 36px 22px;
  text-align: center;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.tok-card:nth-child(3n) { border-right: none; }
.tok-card:nth-last-child(-n+3) { border-bottom: none; }
@media (max-width: 720px) {
  .tok-card { border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
  .tok-card:nth-child(3n) { border-right: 2px solid var(--ink); }
  .tok-card:nth-child(2n) { border-right: none; }
  .tok-card:nth-last-child(-n+3) { border-bottom: 2px solid var(--ink); }
  .tok-card:nth-last-child(-n+2) { border-bottom: none; }
}
.big-num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(56px, 8vw, 96px);
  letter-spacing: -0.02em;
  line-height: 1;
}
.tok-card p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 12px;
  color: var(--muted);
}

/* HOW TO BUY */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.steps li {
  position: relative;
  background: var(--bg-2);
  border: 2px solid var(--ink);
  padding: 36px 22px 24px;
  box-shadow: var(--shadow-sm);
}
.steps .num {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
}
.steps h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.steps p { font-size: 15px; line-height: 1.55; }

/* SEND-O-METER */
.meter-section { text-align: center; }
.meter-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: var(--muted);
}
.meter-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.send-btn {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  background: var(--accent);
  color: var(--bg);
  font-family: 'Anton', sans-serif;
  font-size: 52px;
  letter-spacing: 4px;
  box-shadow: 10px 10px 0 var(--ink);
  transition: transform 0.06s, box-shadow 0.06s;
}
.send-btn:hover { transform: translate(-2px,-2px); box-shadow: 12px 12px 0 var(--ink); }
.send-btn:active, .send-btn.smashed {
  transform: translate(10px, 10px) scale(0.96);
  box-shadow: 0 0 0 var(--ink);
}

.jar {
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.jar-inner {
  position: relative;
  width: 100%;
  height: 280px;
  border: 3px solid var(--ink);
  background: var(--bg-2);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
/* Trading-chart candle stack */
.chart {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 2px;
  padding: 6px;
  box-sizing: border-box;
  overflow: hidden;
  background:
    linear-gradient(to top, rgba(22,199,132,.06), transparent 60%);
  transform-origin: 50% 80%;
  will-change: transform;
  animation: chart-breathe 7s ease-in-out infinite;
}
@keyframes chart-breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}
.chart-grid {
  position: absolute;
  inset: 6px;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(to top,
      transparent 0, transparent 27px,
      rgba(0,0,0,.06) 27px, rgba(0,0,0,.06) 28px),
    repeating-linear-gradient(to right,
      transparent 0, transparent 27px,
      rgba(0,0,0,.06) 27px, rgba(0,0,0,.06) 28px);
}
.candle {
  position: relative;
  flex: 1 1 0;
  min-width: 4px;
  max-width: 18px;
  height: 100%;
}
.candle.fresh { animation: candle-pop .32s cubic-bezier(.2,.9,.25,1.1); }
.candle .body,
.candle .wick {
  transition: bottom .35s cubic-bezier(.4,.1,.3,1),
              height .35s cubic-bezier(.4,.1,.3,1);
}
.candle .body {
  position: absolute;
  left: 0; right: 0;
  bottom: var(--openP);
  height: calc(var(--closeP) - var(--openP));
  background: var(--candle-green);
  border: 1px solid var(--candle-green-dark);
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.18);
}
.candle .wick {
  position: absolute;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: var(--candle-green-dark);
}
.candle .wick.top {
  bottom: var(--closeP);
  height: calc(var(--highP) - var(--closeP));
}
.candle .wick.bot {
  bottom: var(--lowP);
  height: calc(var(--openP) - var(--lowP));
}
@keyframes candle-pop {
  from { transform: translateY(8px) scaleY(.4); opacity: 0; }
  to   { transform: translateY(0)   scaleY(1);  opacity: 1; }
}
.jar-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.counter {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
}
.meter-watcher {
  width: 220px;
  height: auto;
  filter: contrast(1.1);
  transition: transform 0.25s ease;
}
.meter-watcher.maxed {
  transform: scale(1.08) rotate(-2deg);
  filter: contrast(1.2) saturate(1.2);
  animation: watcher-pulse 0.6s ease-in-out infinite alternate;
}
@keyframes watcher-pulse {
  from { transform: scale(1.05) rotate(-2deg); }
  to   { transform: scale(1.12) rotate(2deg); }
}

/* ROADMAP */
.road {
  list-style: none;
  border-left: 3px solid var(--ink);
  padding-left: 0;
  max-width: 820px;
}
.road li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px 0 22px 24px;
  border-bottom: 1px dashed var(--ink);
}
.road li:last-child { border-bottom: none; }
.road b {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 38px;
  letter-spacing: 1px;
}
.road span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  letter-spacing: 0;
}

/* COMMUNITY */
.community { text-align: center; }
.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.soc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.2s;
  border: 2px solid var(--ink);
  background: var(--bg-2);
  padding: 24px 18px;
  width: 160px;
  box-shadow: var(--shadow-sm);
}
.soc:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--ink);
  background: var(--ink);
  color: var(--bg);
}
.soc-mark {
  font-family: 'Anton', sans-serif;
  font-size: 44px;
  letter-spacing: 1px;
  line-height: 1;
}
.soc span:last-child {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* FOOTER */
.footer {
  border-top: 2px solid var(--ink);
  padding: 60px 28px 28px;
  text-align: center;
  background: var(--ink);
  color: var(--bg);
}
.footer-big {
  font-family: 'Anton', sans-serif;
  font-size: clamp(120px, 22vw, 280px);
  letter-spacing: -0.04em;
  line-height: 0.85;
  -webkit-text-stroke: 2px var(--bg);
  color: transparent;
  margin-bottom: 28px;
}
.footer p { max-width: 760px; margin: 0 auto 8px; font-size: 14px; line-height: 1.6; opacity: 0.85; }
.tiny {
  margin-top: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  opacity: 0.5;
  text-transform: uppercase;
}

/* trail */
.trail { position: fixed; inset: 0; pointer-events: none; z-index: 999; }
.drop {
  position: fixed;
  width: 12px; height: 16px;
  background: #ffffff;
  border: 2px solid var(--ink);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform: translate(-50%, -50%);
  animation: dropFall 1.1s ease-in forwards;
  pointer-events: none;
  box-sizing: border-box;
  z-index: 998;
}
/* loading-screen variant: bigger irregular white blobs with thick outline */
.drop.loader-drop {
  width: 22px; height: 28px;
  border-width: 3px;
  border-radius: 54% 46% 42% 58% / 64% 56% 44% 36%;
  filter: drop-shadow(2px 2px 0 var(--ink));
}
@keyframes dropFall {
  0% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, 80px) scale(0.3); }
}
/* keep loader drops' own size/rotation through the fall (driven by margin) */
.drop.loader-drop {
  animation: dropFallStill 1.1s ease-in forwards;
}
@keyframes dropFallStill {
  0% { opacity: 1; }
  100% { opacity: 0; margin-top: 80px; }
}

/* random pop ejak */
.pop-layer { position: fixed; inset: 0; pointer-events: none; z-index: 40; }
.pop-ejak {
  position: absolute;
  width: 140px;
  height: auto;
  animation: popIn 3s ease-out forwards;
}
@keyframes popIn {
  0% { transform: translateY(140%) rotate(-10deg); opacity: 0; }
  18% { transform: translateY(0) rotate(0); opacity: 1; }
  82% { transform: translateY(0) rotate(6deg); opacity: 1; }
  100% { transform: translateY(140%) rotate(14deg); opacity: 0; }
}
