/* $kittler — calm, minimal, sticker vibes */

:root{
  --bg:      #FAF9F6;
  --ink:     #23272E;
  --muted:   #8A8F98;
  --line:    #E9E6DF;
  --tg:      #229ED9;
}

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

html{ scroll-behavior:smooth; }

body{
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

::selection{ background: var(--ink); color: var(--bg); }

a{ color: inherit; text-decoration: none; }

/* ---------- nav ---------- */

nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 32px;
}
.brand{
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.nav-links{
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--muted);
}
.nav-links a{
  transition: color .2s ease;
}
.nav-links a:hover,
.nav-links a.here{ color: var(--ink); }

/* ---------- hero ---------- */

main{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 24px 64px;
}

.sticker{
  width: min(420px, 86vw);
  transition: transform .35s ease;
  user-select: none;
  -webkit-user-drag: none;
}
.sticker:hover{ transform: scale(1.02); }

.ticker{
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 36px;
}

.tagline{
  color: var(--muted);
  font-size: 15px;
  margin-top: 10px;
}

/* ---------- buttons ---------- */

.buttons{
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(35,39,46,.08);
}
.btn svg{ width: 18px; height: 18px; flex: none; }
.btn-x{ background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-tg{ color: var(--tg); }

/* ---------- roadmap ---------- */

.roadmap{
  max-width: 520px;
  width: 100%;
  text-align: left;
}
.roadmap h1{
  font-size: clamp(32px, 6vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
}
.roadmap p{
  font-size: 17px;
  line-height: 1.65;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.roadmap p:last-of-type{ border-bottom: 1px solid var(--line); }
.roadmap .aside{
  border: none;
  padding: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* ---------- footer ---------- */

footer{
  text-align: center;
  padding: 28px;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- cursor ---------- */

@media (hover:hover) and (pointer:fine){
  .dot, .glow{
    position: fixed;
    top: 0; left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
  }
  .dot{
    width: 8px; height: 8px;
    background: var(--ink);
    transform: translate(-50%,-50%);
  }
  .glow{
    width: 34px; height: 34px;
    background: radial-gradient(circle, rgba(34,158,217,.22) 0%, rgba(34,158,217,0) 70%);
    transform: translate(-50%,-50%);
    transition: width .25s ease, height .25s ease;
  }
  body.hovering .glow{ width: 52px; height: 52px; }
}

@media (prefers-reduced-motion: reduce){
  *{ transition: none !important; }
  .dot, .glow{ display: none; }
}

@media (max-width: 480px){
  nav{ padding: 22px 22px; }
  .buttons{ flex-direction: column; width: 100%; max-width: 280px; }
  .btn{ justify-content: center; }
}


/* ---------- greenscreen ---------- */

body{
  background: #06F008;
  --muted: #0E5A18;
  --line: #12B31F;
}

/* keep UI readable on chroma green */
.brand, .nav-links a.here{ color: var(--ink); }
.nav-links a:hover{ color: var(--ink); }

.btn{ background: #FFFFFF; border-color: rgba(20,20,20,.25); }
.btn-x{ background: var(--ink); border-color: var(--ink); }
.btn-tg{ color: var(--tg); }

.tagline{ color: #0E5A18; }
footer{ color: #0E5A18; }

.roadmap p{ border-color: rgba(14,90,24,.35); }
.roadmap .aside{ color: #0E5A18; }

.glow{
  background: radial-gradient(circle, rgba(255,255,255,.4) 0%, rgba(255,255,255,0) 70%) !important;
}
