@import url("https://fonts.googleapis.com/css2?family=Black+Ops+One&family=Rubik+Mono+One&family=Anton&display=swap");

:root{
  --bg0: 5 4 11;
  --bg1: 10 10 22;

  --ink: 255 255 255;
  --mut: 200 200 220;

  --cyan: 120 220 255;
  --vio: 190 140 255;
  --hot: 255 70 180;

  --glass: 255 255 255;
  --edge: 255 255 255;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  color: rgb(var(--ink) / 0.92);
  background:
    radial-gradient(circle at 18% 12%, rgb(var(--vio) / 0.22), transparent 42%),
    radial-gradient(circle at 82% 28%, rgb(var(--cyan) / 0.18), transparent 46%),
    radial-gradient(circle at 55% 85%, rgb(var(--hot) / 0.10), transparent 60%),
    linear-gradient(180deg, rgb(var(--bg1)), rgb(var(--bg0)));
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  overflow-x:hidden;
}

/* Matrix bg */
#matrixBg{
  position: fixed;
  inset: 0;
  width:100vw;
  height:100vh;
  z-index:0;
  pointer-events:none;
  opacity:0.28;
  mix-blend-mode: screen;
}

/* Matrix overlay */
#matrixCanvas{
  position: fixed;
  inset: 0;
  width:100vw;
  height:100vh;
  z-index: 5;
  opacity: 0;
  pointer-events:none;
  transition: opacity 600ms ease;
}

/* App above canvas */
#app{ position: relative; z-index:1; }

.container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 18px 64px;
}

/* HERO */
.hero{
  text-align:center;
  padding: 46px 0 18px;
}
.glitch-wrapper{ display:inline-block; position:relative; }


.glitch{
  font-family: "Black Ops One", system-ui, sans-serif;
  font-size: clamp(44px, 8vw, 92px);
  letter-spacing: .06em;
  margin: 0;
  position: relative;
  color: rgb(var(--cyan));
  text-shadow: 0 0 18px rgb(var(--cyan) / 0.22), 0 0 34px rgb(var(--vio) / 0.18);
  animation: glitch 3s infinite;
}
@keyframes glitch{
  0%, 90%, 100% { transform: translate(0); }
  92% { transform: translate(-2px, 2px); }
  94% { transform: translate(2px, -2px); }
  96% { transform: translate(-2px, -2px); }
}
.glitch::before,
.glitch::after{
  content: attr(data-text);
  position:absolute;
  inset:0;
}
.glitch::before{
  color: rgb(var(--hot));
  opacity: .75;
  transform: translate(-2px, 1px);
  z-index:-1;
  animation: glitch2 2.2s infinite;
}
.glitch::after{
  color: rgb(var(--vio));
  opacity: .6;
  transform: translate(2px, -1px);
  z-index:-2;
  animation: glitch3 1.9s infinite;
}
@keyframes glitch2{
  0%,100%{ clip-path: inset(0 0 70% 0); }
  50%{ clip-path: inset(40% 0 10% 0); }
}
@keyframes glitch3{
  0%,100%{ clip-path: inset(60% 0 0 0); }
  50%{ clip-path: inset(10% 0 45% 0); }
}

.tagline{
  margin: 12px 0 4px;
  font-family: "Anton", system-ui, sans-serif;
  font-size: 18px;
  letter-spacing:.03em;
  color: rgb(var(--cyan) / 0.85);
}
.username{
  margin:0;
  color: rgb(var(--hot) / 0.85);
}

/* MANIFESTO cards */
.manifesto{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 26px 0 10px;
}
.manifesto-card{
  position:relative;
  border-radius: 18px;
  padding: 18px 16px;
  border: 1px solid rgb(var(--edge) / 0.12);
  background: rgb(var(--glass) / 0.05);
  overflow:hidden;
  box-shadow: 0 18px 60px rgb(0 0 0 / 0.35);
  transition: transform .14s ease, border-color .14s ease;
}
.manifesto-card::before{
  content:"";
  position:absolute;
  inset:-60%;
  background: linear-gradient(45deg, transparent, rgb(var(--cyan) / .12), transparent);
  transform: rotate(25deg);
  animation: shine 3.2s linear infinite;
  opacity:.55;
}
@keyframes shine{
  0%{ transform: translateX(-40%) rotate(25deg); }
  100%{ transform: translateX(40%) rotate(25deg); }
}
.manifesto-card:hover{
  transform: translateY(-2px);
  border-color: rgb(var(--cyan) / 0.35);
}
.manifesto-card h2{
  margin: 0 0 8px;
  color: rgb(var(--cyan));
  letter-spacing:.02em;
}
.manifesto-card p{ margin:0; color: rgb(var(--ink) / 0.82); }

/* Meter */
.rebellion-meter{
  margin: 38px 0 10px;
  text-align:center;
}
.rebellion-meter h3{
  margin: 0 0 14px;
  color: rgb(var(--cyan));
  font-family: "Rubik Mono One", ui-monospace, monospace;
  font-size: 18px;
  letter-spacing:.06em;
  text-transform: uppercase;
}
.meter-container{
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgb(var(--cyan) / 0.25);
  background: rgb(255 255 255 / 0.06);
  overflow:hidden;
}
.meter-fill{
  height:100%;
  width:0%;
  background: linear-gradient(90deg, rgb(var(--cyan)), rgb(var(--vio)), rgb(var(--hot)));
  box-shadow: 0 0 24px rgb(var(--cyan) / 0.20);
  transition: width 1.8s ease;
}
.meter-text{
  margin: 10px 0 0;
  color: rgb(var(--vio) / 0.9);
}

/* Pen */
.pen-spinning{
  margin: 42px 0 8px;
  text-align:center;
}
.pen-spinning h3{
  margin:0 0 14px;
  color: rgb(var(--cyan));
  font-family: "Rubik Mono One", ui-monospace, monospace;
  font-size: 18px;
  letter-spacing:.06em;
}
.pen-container{
  width: 220px;
  height: 220px;
  margin: 0 auto;
  display:grid;
  place-items:center;
}
.pen{
  width: 12px;
  height: 110px;
  border: 0;
  border-radius: 999px;
  cursor:pointer;
  background: linear-gradient(to bottom, rgb(var(--cyan)), rgb(var(--hot)));
  box-shadow: 0 0 22px rgb(var(--cyan) / .22);
  transform-origin: center;
  animation: spin 2s linear infinite;
}
@keyframes spin{
  0%{ transform: rotate(0deg); }
  100%{ transform: rotate(360deg); }
}
.pen.paused{ animation-play-state: paused; }
.pen-text{ margin: 6px 0 0; color: rgb(var(--ink) / 0.80); }

/* Garden */
.algorithm-garden{ margin: 44px 0 0; }
.algorithm-garden h3{
  text-align:center;
  margin:0 0 14px;
  color: rgb(var(--cyan));
  font-family: "Rubik Mono One", ui-monospace, monospace;
  font-size: 18px;
  letter-spacing:.06em;
}
.garden-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}
.algorithm-seed{
  border-radius: 16px;
  border: 1px solid rgb(var(--edge) / 0.12);
  background: rgb(var(--glass) / 0.05);
  padding: 14px 12px;
  text-align:center;
  cursor:pointer;
  transition: transform .14s ease, border-color .14s ease;
}
.algorithm-seed:hover{
  transform: translateY(-2px);
  border-color: rgb(var(--vio) / .35);
}
.seed-icon{ font-size: 28px; display:block; margin-bottom: 6px; }
.seed-name{
  font-family: "Anton", system-ui, sans-serif;
  letter-spacing:.06em;
  color: rgb(var(--cyan));
  text-transform: uppercase;
  font-size: 13px;
}

/* Interactive manifesto terminal */
.interactive-manifesto{ margin: 52px 0 0; }
.interactive-manifesto h3{
  text-align:center;
  margin:0 0 12px;
  color: rgb(var(--cyan));
  font-family: "Rubik Mono One", ui-monospace, monospace;
  font-size: 18px;
  letter-spacing:.06em;
}
.toolbar{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  align-items:center;
  margin: 12px 0 12px;
}
button{
  border:1px solid rgb(var(--cyan) / .22);
  background: rgb(0 0 0 / .28);
  color: rgb(var(--ink) / .92);
  padding: 10px 12px;
  border-radius: 14px;
  cursor:pointer;
  transition: transform .08s ease, border-color .12s ease, background .12s ease;
}
button:hover{
  border-color: rgb(var(--cyan) / .45);
  background: rgb(var(--cyan) / .08);
}
button:active{ transform: translateY(1px); }
.chip{
  border:1px solid rgb(var(--cyan) / .18);
  background: rgb(0 0 0 / .22);
  color: rgb(var(--ink) / .70);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.terminal{
  position:relative;
  border-radius: 18px;
  border: 1px solid rgb(var(--cyan) / .20);
  background: linear-gradient(180deg, rgb(0 0 0 / .40), rgb(0 0 0 / .22));
  box-shadow: 0 24px 80px rgb(0 0 0 / .45);
  padding: 16px 16px 22px;
  overflow:hidden;
}
.out{
  margin:0;
  white-space: pre-wrap;
  line-height:1.35;
  font-size: 14px;
  text-shadow: 0 0 10px rgb(var(--cyan) / .10);
}
.cursor{
  position:absolute;
  left:16px;
  bottom:12px;
  width: 10px;
  height: 18px;
  background: rgb(var(--cyan));
  opacity:.75;
  box-shadow: 0 0 14px rgb(var(--cyan) / .25);
  animation: blink .9s steps(2) infinite;
}
@keyframes blink{ 50%{ opacity:.08; } }

.panel{
  margin: 12px auto 0;
  border-radius: 14px;
  border: 1px dashed rgb(var(--cyan) / .18);
  background: rgb(0 0 0 / .16);
  padding: 10px 12px;
}
.panel summary{ cursor:pointer; color: rgb(var(--ink) / .70); }
.full{ margin: 10px 0 0; color: rgb(var(--ink) / .80); white-space: pre-wrap; }
.hint{ text-align:center; margin: 10px 0 0; color: rgb(var(--ink) / .55); font-size: 12px; }

body.glitch .terminal{
  animation: shake .18s linear infinite;
  border-color: rgb(var(--hot) / .25);
}
@keyframes shake{
  0%{ transform: translate(0,0); }
  25%{ transform: translate(1px,-1px); }
  50%{ transform: translate(-1px,1px); }
  75%{ transform: translate(1px,1px); }
  100%{ transform: translate(0,0); }
}

/* Amor console */
.amor-console{
  margin: 46px 0 0;
  border-radius: 20px;
  border: 1px solid rgb(var(--edge) / 0.12);
  background: rgb(var(--glass) / 0.05);
  box-shadow: 0 22px 90px rgb(0 0 0 / .40);
  overflow:hidden;
}
.amor-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding: 14px 16px;
  background:
    radial-gradient(circle at 20% 20%, rgb(var(--vio) / 0.14), transparent 42%),
    radial-gradient(circle at 80% 30%, rgb(var(--cyan) / 0.12), transparent 44%);
  border-bottom: 1px solid rgb(var(--edge) / 0.12);
}
.amor-badge{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgb(var(--hot) / 0.12);
  border: 1px solid rgb(var(--hot) / 0.30);
  letter-spacing: .08em;
  font-size: 12px;
  margin-bottom: 8px;
}
.amor-title h2{ margin:0; font-size: 18px; letter-spacing:.03em; }
.amor-title p{ margin:6px 0 0; color: rgb(var(--mut) / 0.80); font-size: 12px; }

.amor-status{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgb(var(--edge) / 0.12);
  background: rgb(255 255 255 / 0.04);
  min-width: 160px;
  justify-content:center;
}
.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgb(var(--mut) / 0.45);
  box-shadow: 0 0 0 4px rgb(var(--mut) / 0.12);
}

.amor-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 14px;
}
@media (max-width: 860px){
  .amor-grid{ grid-template-columns: 1fr; }
}

.amor-card{
  border-radius: 16px;
  padding: 14px;
  border: 1px solid rgb(var(--edge) / 0.12);
  background: rgb(255 255 255 / 0.03);
  backdrop-filter: blur(8px);
}
.amor-card h3{
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing:.06em;
  text-transform: uppercase;
  color: rgb(var(--mut) / 0.90);
}

.btn-row{ display:flex; flex-wrap:wrap; gap:10px; }
.btn{
  border: 1px solid rgb(var(--edge) / 0.12);
  background: rgb(255 255 255 / 0.04);
  color: rgb(var(--ink) / 0.92);
  padding: 10px 12px;
  border-radius: 14px;
  cursor:pointer;
  font-weight: 800;
}
.btn.ghost{
  background: transparent;
  font-weight: 700;
  border-color: rgb(var(--edge) / 0.12);
}
.btn:hover{
  border-color: rgb(var(--cyan) / 0.35);
  background: rgb(var(--cyan) / 0.08);
}
.amor-form{ margin-top: 12px; display:grid; gap: 10px; }
label{ font-size: 12px; color: rgb(var(--mut) / 0.80); }

input{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgb(var(--edge) / 0.12);
  background: rgb(0 0 0 / 0.28);
  color: rgb(var(--ink) / 0.92);
  outline:none;
}
input:focus{
  border-color: rgb(var(--cyan) / 0.50);
  box-shadow: 0 0 0 4px rgb(var(--cyan) / 0.12);
}

.amor-log{
  height: 220px;
  overflow:auto;
  padding: 12px;
  margin: 0;
  border-radius: 14px;
  border: 1px solid rgb(var(--edge) / 0.12);
  background: rgb(0 0 0 / 0.30);
  white-space: pre-wrap;
  line-height:1.35;
}
.amor-footer{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top: 10px;
}

/* Help panel */
.amor-help{
  margin-top: 16px;
  border-radius: 18px;
  border: 1px solid rgb(var(--edge) / 0.12);
  background: rgb(255 255 255 / 0.03);
  padding: 14px;
}
.help-head{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
}
.help-sub{ margin: 8px 0 12px; color: rgb(var(--mut) / 0.80); font-size: 12px; }
.help-actions{ display:flex; gap:10px; flex-wrap:wrap; }
.help-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
@media (max-width: 860px){ .help-grid{ grid-template-columns: 1fr; } }

.help-card{
  border-radius: 16px;
  border: 1px solid rgb(var(--edge) / 0.12);
  background: rgb(255 255 255 / 0.03);
  padding: 12px;
}
.ascii pre{
  margin:0;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgb(var(--edge) / 0.12);
  background: rgb(0 0 0 / 0.28);
  overflow:auto;
}

.ex{
  display:grid;
  grid-template-columns: 160px 1fr;
  gap:10px;
  align-items:center;
  margin: 10px 0;
}
.ex-btn{
  width:100%;
  display:flex;
  gap:8px;
  align-items:center;
  justify-content:flex-start;
}
.ex code{
  display:block;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgb(var(--edge) / 0.12);
  background: rgb(0 0 0 / 0.20);
  overflow:auto;
  white-space: nowrap;
  color: rgb(var(--ink) / 0.85);
}

/* Links */
.connections{ margin: 52px 0 0; }
.connections h3{
  text-align:center;
  margin:0 0 14px;
  color: rgb(var(--cyan));
  font-family: "Rubik Mono One", ui-monospace, monospace;
  font-size: 18px;
  letter-spacing:.06em;
}
.link-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}
.link-card{
  border-radius: 18px;
  border: 1px solid rgb(var(--edge) / 0.12);
  background: rgb(var(--glass) / 0.05);
  padding: 16px 14px;
  text-decoration:none;
  color: rgb(var(--ink) / 0.92);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  transition: transform .14s ease, border-color .14s ease;
}
.link-card:hover{
  transform: translateY(-2px);
  border-color: rgb(var(--cyan) / .35);
}
.link-icon{ font-size: 28px; }
.link-text{
  font-family: "Anton", system-ui, sans-serif;
  letter-spacing:.06em;
  color: rgb(var(--cyan));
}

/* Footer */
.footer{
  text-align:center;
  margin-top: 54px;
  padding-top: 18px;
  border-top: 1px solid rgb(var(--edge) / 0.12);
}
.footer-quote{
  margin-top: 10px;
  color: rgb(var(--vio) / .9);
  font-style: italic;
}

/* 404 */
.e404{
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 25;
  display: inline-flex;
  align-items: baseline;
  gap: .6rem;
  padding: .65rem .9rem;
  border: 1px solid rgba(0,255,204,.35);
  border-radius: 14px;
  background: rgba(10,10,10,.55);
  backdrop-filter: blur(6px);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  letter-spacing: .04em;
  color: rgba(230,255,250,.95);
  overflow: hidden;
  user-select: none;
}

.e404__code{
  font-size: 1.2rem;
  font-weight: 900;
  position: relative;
  text-shadow: 0 0 14px rgba(0,255,204,.35);
}
.e404__code::before,
.e404__code::after{
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}
.e404__code::before{ transform: translate(1px,0); color: rgba(255,70,180,.9); }
.e404__code::after { transform: translate(-1px,0); color: rgba(120,220,255,.9); }

.e404__label{
  font-size: .95rem;
  opacity: .9;
}
.e404__tag{
  font-size: .8rem;
  opacity: .75;
  padding: .12rem .45rem;
  border-radius: 999px;
  border: 1px solid rgba(190,140,255,.35);
  color: rgba(220,210,255,.95);
}

.e404::after{
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0,255,204,.08) 45%,
    rgba(255,255,255,.10) 50%,
    rgba(190,140,255,.08) 55%,
    transparent 100%
  );
  transform: translateY(-60%) rotate(-6deg);
  opacity: 0;
}

.e404.is-glitch::after{
  opacity: 1;
  animation: e404-sweep 650ms ease-out 1;
}
.e404.is-glitch .e404__code{
  animation: e404-jitter 320ms steps(2,end) 1;
}
.e404.is-glitch .e404__code::before,
.e404.is-glitch .e404__code::after{
  opacity: .85;
  animation: e404-slice 320ms steps(2,end) 1;
}

@keyframes e404-sweep{
  0%   { transform: translateY(-60%) rotate(-6deg); }
  100% { transform: translateY(60%)  rotate(-6deg); }
}
@keyframes e404-jitter{
  0% { transform: translate(0,0); }
  25%{ transform: translate(1px,-1px); }
  50%{ transform: translate(-1px,1px); }
  75%{ transform: translate(1px,1px); }
  100%{ transform: translate(0,0); }
}
@keyframes e404-slice{
  0%   { clip-path: inset(0 0 0 0); }
  35%  { clip-path: inset(10% 0 55% 0); }
  70%  { clip-path: inset(55% 0 10% 0); }
  100% { clip-path: inset(0 0 0 0); }
}

.domadorx-title {
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

/* Konami */
.konami-mode{
  cursor: crosshair;
}
.konami-mode a, .konami-mode button{
  cursor: pointer;
}

.secret-overlay{
  position: fixed;
  inset: 0;
  z-index: 20;
  display:grid;
  place-items:center;
  opacity:0;
  pointer-events:none;
  transition: opacity 500ms ease;
}

.secret-overlay.is-on{
  opacity:1;
}

.secret-card{
  width: min(560px, 92vw);
  border-radius: 18px;
  padding: 18px 18px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(249,203,40,0.35);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 60px rgba(0,0,0,0.6);
}

.secret-title{
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(249,203,40,0.95);
  margin-bottom: 10px;
}

.secret-body{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.9rem;
  line-height: 1.35;
  color: rgba(255,255,255,0.9);
  opacity: 0.95;
}

.konami-hint{
  position: fixed;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  font-family: ui-monospace, monospace;
  font-size:0.75rem;
  letter-spacing:2px;
  opacity:0;
  transition: opacity 400ms ease;
  pointer-events:none;
  z-index:30;
  color: rgba(249,203,40,0.6);
}

.konami-hint.visible{
  opacity:0.8;
}


.hero-links {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #8fe9ff;
  background: linear-gradient(
    180deg,
    rgba(22, 28, 60, 0.78) 0%,
    rgba(12, 16, 38, 0.88) 100%
  );
  border: 1px solid rgba(126, 232, 255, 0.26);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 8px 28px rgba(0, 0, 0, 0.35),
    0 0 18px rgba(97, 218, 251, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.hero-btn span {
  position: relative;
  z-index: 2;
}

.hero-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      rgba(255, 0, 170, 0.16),
      rgba(0, 229, 255, 0.14),
      rgba(255, 255, 255, 0.04)
    );
  opacity: 0.9;
  z-index: 1;
}

.hero-btn::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.45),
    transparent
  );
  z-index: 2;
}

.hero-btn:hover {
  transform: translateY(-2px) scale(1.03);
  color: #ffffff;
  border-color: rgba(126, 232, 255, 0.5);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 12px 36px rgba(0, 0, 0, 0.42),
    0 0 22px rgba(97, 218, 251, 0.22),
    0 0 28px rgba(255, 0, 170, 0.12);
}

.hero-btn:active {
  transform: translateY(0) scale(0.99);
}

.hero-btn:focus-visible {
  outline: 2px solid rgba(143, 233, 255, 0.8);
  outline-offset: 3px;
}

@media (max-width: 640px){
  .container{
    padding: 22px 14px 80px;
  }

  .hero{
    padding-top: 28px;
  }

  .glitch{
    font-size: clamp(34px, 12vw, 64px);
  }

  .manifesto{
    grid-template-columns: 1fr;
  }

  .ex{
    grid-template-columns: 1fr;
  }

  .link-grid{
    grid-template-columns: 1fr 1fr;
  }

  .e404{
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    justify-content: center;
  }
  
}


