@font-face {
  font-family: Orbitron;
  src: url("../fonts/0acc7fdf55eb3220-s.p.532ccaa1.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: RobotoLocal;
  src: url("../fonts/ce62453a442c7f35-s.p.124b2306.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: WudooMono;
  src: url("../fonts/WudooMono_Light-s.p.f9da7bae.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: WudooMono;
  src: url("../fonts/WudooMono_Regular-s.p.0463dfc2.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: WudooMono;
  src: url("../fonts/WudooMono_Bold-s.p.f043ccae.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --night: #19191a;
  --night-2: #101012;
  --moon: #dfd9d9;
  --white: #ece8e8;
  --pink: #f786c6;
  --pink-hot: #ff3b93;
  --pink-mid: #f7519b;
  --peach: #f5af94;
  --blush: #f5949d;
  --mint: #90d79f;
  --teal: #6dd0a9;
  --sky: #7eaad4;
  --cyan: #70bad2;
  --green: #00c805;
  --green-deep: #00a004;
  --neon: #39ff14;
  --red: #ff4d4d;
  --muted: #9d8c8d;
  --font: "Roboto", RobotoLocal, system-ui, sans-serif;
  --orb: Orbitron, sans-serif;
  --mono: WudooMono, ui-monospace, "Cascadia Mono", Consolas, monospace;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  background: var(--night);
  color: var(--white);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

#hero,
#origin,
#brand,
#gifs,
#socials {
  scroll-margin-top: 40px;
}

body.shot-origin .hero,
body.shot-origin .tape,
body.shot-gifs .hero,
body.shot-gifs .tape,
body.shot-gifs .origin,
body.shot-gifs .protocol,
body.shot-brand .hero,
body.shot-brand .tape,
body.shot-brand .origin,
body.shot-brand .protocol,
body.shot-brand .gifs,
body.shot-socials .hero,
body.shot-socials .tape,
body.shot-socials .origin,
body.shot-socials .protocol,
body.shot-socials .gifs,
body.shot-socials .brand,
body.shot-socials .why {
  display: none !important;
}

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 200;
  background: var(--green);
  color: #000;
  padding: 8px 12px;
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 99;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1650px;
  height: 36px;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.nav-links,
.nav-social {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%;
}
.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 4px 10px 0;
  color: var(--moon);
}
.nav-link span {
  position: relative;
  z-index: 1;
}
.nav-link::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 100%;
  height: 100%;
  background: var(--moon);
  opacity: 0;
  transform: translateX(-50%);
  pointer-events: none;
  transition: opacity 0.2s;
}
.nav-link:hover {
  color: var(--night);
}
.nav-link:hover::before {
  opacity: 1;
}
.nav-link:focus {
  outline: none;
}
.nav-link:focus-visible {
  outline: 1px solid var(--green);
  outline-offset: 2px;
}
.nav-ico {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  opacity: 0.9;
}
.nav-ico:hover {
  opacity: 1;
}
.nav-ico img,
.nav-ico svg {
  width: 18px;
  height: 18px;
}
.nav-ico.is-soon {
  opacity: 0.45;
  cursor: not-allowed;
}

.nav-m {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  max-width: 100vw;
  height: 36px;
  padding: 0 12px;
  background: rgba(25, 25, 26, 0.92);
  font-family: var(--mono);
}
.nav-m-brand {
  letter-spacing: 0.18em;
}
.menu-btn,
.menu-close {
  color: #041204;
  background: var(--green);
  letter-spacing: 0.16em;
  font-size: 12px;
  font-family: var(--mono);
  font-weight: 700;
  padding: 6px 12px;
  position: static;
  flex-shrink: 0;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
}
.drawer.is-open {
  pointer-events: auto;
}
.drawer-bg {
  position: absolute;
  inset: 0;
  background: rgba(25, 25, 26, 0.6);
  opacity: 0;
  transition: opacity 0.2s;
}
.drawer.is-open .drawer-bg {
  opacity: 1;
}
.drawer-panel {
  position: absolute;
  left: 50%;
  top: 36px;
  width: 100%;
  transform: translate(-50%, -12px);
  background: rgba(25, 25, 26, 0.95);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: 0.2s ease-out;
}
.drawer.is-open .drawer-panel {
  opacity: 1;
  transform: translate(-50%, 0);
}
.drawer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 16px;
}
.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: var(--mono);
}
.drawer-links a {
  color: var(--moon);
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
  .nav-m,
  .drawer,
  .menu-btn {
    display: none;
  }
}

/* ---------- TAPE ---------- */
.tape {
  position: relative;
  z-index: 5;
  margin-top: 36px;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid rgba(0, 200, 5, 0.35);
  height: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
}
.tape-track {
  display: flex;
  align-items: center;
  height: 100%;
  width: max-content;
  position: absolute;
  left: 0;
  top: 0;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
.tape-track span {
  padding: 0 18px;
  white-space: nowrap;
}
.tape-track .up {
  color: var(--neon);
}
.tape-track .dn {
  color: var(--red);
}
.tape-track .dot {
  color: var(--pink);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - 64px);
  overflow: hidden;
  background: #050506 center / cover no-repeat;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06), transparent 60%),
    radial-gradient(circle at 80% 35%, rgba(0, 0, 0, 0.55), transparent 60%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.45));
  pointer-events: none;
}

.mascot-float {
  position: absolute;
  left: 50%;
  bottom: 150px;
  z-index: 4;
  width: min(420px, 70vw);
  height: auto;
  transform: translateX(-50%);
  pointer-events: none;
  animation: floaty 5.5s ease-in-out infinite;
}
.mascot-float img {
  width: 100%;
  height: auto;
  max-height: 58vh;
  object-fit: contain;
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.45));
}

.hero-social {
  position: absolute;
  left: 50%;
  top: 40px;
  z-index: 50;
  display: none;
  gap: 20px;
  transform: translateX(-50%);
}
.hero-social a,
.hero-social button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  ring: 1px solid rgba(236, 232, 232, 0.1);
  border: 1px solid rgba(236, 232, 232, 0.12);
}
.hero-social svg {
  width: 18px;
  height: 18px;
}

.term {
  position: absolute;
  z-index: 30;
  top: 12px;
  left: 12px;
  right: 12px;
  width: auto;
  max-width: 440px;
  background: linear-gradient(#1a1a1c, #111);
  border: 1px solid rgba(236, 232, 232, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.35;
  color: rgba(236, 232, 232, 0.85);
}
.term-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  color: rgba(236, 232, 232, 0.9);
}
.term-title {
  display: flex;
  align-items: center;
  gap: 8px;
}
.term-win {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.35);
  font-weight: 700;
  font-size: 11px;
}
.term-ctrls {
  display: flex;
  gap: 12px;
  color: rgba(236, 232, 232, 0.8);
}
.term-body {
  min-height: 210px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.term-ascii {
  width: min(100%, 220px);
  margin: 8px auto 0;
  mix-blend-mode: screen;
}
.caret {
  display: inline-block;
  width: 8px;
  height: 1.05em;
  margin-left: 2px;
  background: rgba(236, 232, 232, 0.9);
  transform: translateY(2px);
  animation: caret 1s steps(1) infinite;
}

.sign-bunny {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 118px;
  width: min(200px, 46vw);
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.5));
  transition: transform 0.35s ease;
}
.sign-bunny img {
  width: 100%;
  height: auto;
}
.sign-bunny:hover {
  transform: translateX(-50%) translateY(-6px);
}

.hero-ledge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  height: 150px;
}
.hero-shape {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--moon);
  clip-path: polygon(0 28px, 28px 0%, calc(100% - 28px) 0%, 100% 28px, 100% 100%, 0% 100%);
}
.hero-shape-in {
  position: absolute;
  inset: 6px;
  background: var(--night);
  clip-path: inherit;
}
.inner-wrap {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1420px;
  height: 110px;
}
.inner-shape {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--moon);
  clip-path: polygon(0 24px, 24px 0%, calc(100% - 24px) 0%, 100% 24px, 100% 100%, 0% 100%);
}
.inner-shape-in {
  position: absolute;
  inset: 6px;
  background: var(--night);
  clip-path: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;
}
.ledge-kicker {
  font-family: var(--orb);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 10px;
  color: var(--green);
  text-align: center;
}
.ledge-copy {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--moon);
  text-align: center;
  max-width: 92%;
}

/* ---------- SECTIONS ---------- */
.section {
  position: relative;
  background: var(--night);
}
.origin {
  padding: 48px 16px 80px;
  overflow: hidden;
  max-width: 100%;
}
.wordmark {
  display: none;
}
.wordmark-fallback {
  font-family: var(--orb);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  font-size: clamp(32px, 12vw, 92px);
  color: var(--white);
  -webkit-text-stroke: 1px rgba(0, 200, 5, 0.35);
  line-height: 1;
  margin: 8px 0 12px;
  max-width: 100%;
  overflow: hidden;
  filter: drop-shadow(0 0 18px rgba(0, 200, 5, 0.18));
}
.submark {
  text-align: center;
  font-family: var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  font-size: 11px;
  line-height: 1.5;
  margin: 0 auto 40px;
  max-width: 36em;
  padding: 0 12px;
}

.origin-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: min(1420px, 100%);
  margin: 0 auto;
  min-width: 0;
}
.about-card {
  border: 1px solid var(--night);
  background: var(--moon);
  color: var(--night);
  padding: 28px 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  min-width: 0;
  max-width: 100%;
}
.about-card h2 {
  font-family: var(--orb);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: clamp(22px, 4vw, 36px);
  margin-bottom: 14px;
}
.about-card p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(25, 25, 26, 0.85);
  overflow-wrap: break-word;
}
.about-card p + p {
  margin-top: 12px;
}

.cards {
  position: relative;
  min-height: 580px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid #2a2a2c;
  background: var(--moon);
  display: flex;
  flex-direction: column;
}
.card-slide {
  position: absolute;
  inset: 0 0 44px 0;
  opacity: 0;
  transform: translateX(24px);
  transition: 0.5s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}
.card-slide.is-on {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.card-slide img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1;
}
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--night);
  padding: 6px 16px;
  font-family: var(--mono);
  color: var(--night);
  background: var(--moon);
}
.card-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--night);
  font-family: var(--mono);
  letter-spacing: 0.2em;
  color: rgba(223, 217, 217, 0.8);
  position: relative;
  z-index: 2;
  margin-top: auto;
}
.card-nav button {
  padding: 12px;
  text-transform: uppercase;
}
.card-nav button:hover {
  color: var(--green);
}

/* ---------- PROTOCOL ---------- */
.protocol {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 16px 80px;
}
.proto-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.proto-win {
  background: #0d0d0f;
  border: 1px solid rgba(236, 232, 232, 0.1);
  overflow: hidden;
  clip-path: polygon(0% 28px, 28px 0%, calc(100% - 28px) 0%, 100% 28px, 100% 100%, 0% 100%);
}
.proto-label {
  height: 40px;
  background: var(--night);
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-family: var(--orb);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--green);
}
.proto-log {
  padding: 16px 18px 20px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.55;
  color: rgba(236, 232, 232, 0.82);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
  min-height: 220px;
}
.proto-log .ok {
  color: var(--green);
}
.proto-log .warn {
  color: var(--pink-hot);
}
.proto-log .info {
  color: var(--cyan);
}
.mecha-wrap {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
}
.mecha-wrap img {
  width: min(380px, 88vw);
  filter: drop-shadow(0 22px 60px rgba(0, 0, 0, 0.45));
  animation: bob 6s ease-in-out infinite;
}

/* ---------- GIFS ---------- */
.gifs {
  padding: 20px 0 10px;
  background: var(--night);
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}
.gifs-head {
  font-family: var(--orb);
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 16px 18px;
  font-size: 13px;
  color: var(--moon);
}
.gif-row {
  width: 100%;
  max-width: 100%;
  height: 214px;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}
.gif-track {
  display: flex;
  gap: 12px;
  position: absolute;
  left: 0;
  top: 0;
  animation: marquee 42s linear infinite;
  will-change: transform;
}
.gif-track.reverse {
  animation-direction: reverse;
  animation-duration: 48s;
}
.gif-item {
  width: 170px;
  background: #111;
  border: 1px solid #2a2a2c;
  flex-shrink: 0;
}
.gif-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.gif-item span {
  display: block;
  text-align: center;
  font-family: var(--orb);
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 11px;
  padding: 6px 0 8px;
  color: var(--white);
  background: var(--night);
}

/* ---------- BRAND ---------- */
.brand {
  padding: 72px 16px 40px;
  background: linear-gradient(#19191a, #2d2229 55%, #5a394c);
}
.brand h2 {
  font-family: var(--orb);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 28px;
}
.swatches {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 720px;
}
.swatch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 12px 16px;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.swatch b {
  font-family: var(--orb);
  letter-spacing: 0.14em;
  font-size: 13px;
}
.swatch code {
  font-family: var(--mono);
  font-size: 13px;
}
.swatch.is-dark {
  color: var(--white);
}
.palette-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
  max-width: 720px;
}
.chip {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 12px;
  cursor: pointer;
  color: #111;
}

.brand-split {
  display: grid;
  gap: 28px;
  margin-top: 48px;
  align-items: start;
}
.brand-copy h3 {
  font-family: var(--orb);
  font-size: 22px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.brand-copy p {
  color: rgba(236, 232, 232, 0.8);
  line-height: 1.7;
  margin-bottom: 12px;
}
.brand-art img {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

/* ---------- WHY ---------- */
.why {
  background: var(--night);
  padding: 72px 16px 40px;
}
.why h2 {
  font-family: var(--orb);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: clamp(26px, 5vw, 44px);
  margin-bottom: 28px;
}
.why-grid {
  display: grid;
  gap: 18px;
  max-width: 1100px;
}
.why-item {
  border-left: 3px solid var(--green);
  padding: 8px 0 8px 16px;
}
.why-item .n {
  font-family: var(--mono);
  color: var(--pink);
  letter-spacing: 0.2em;
  font-size: 12px;
}
.why-item h3 {
  font-family: var(--orb);
  margin: 6px 0 8px;
  letter-spacing: 0.06em;
}
.why-item p {
  color: rgba(236, 232, 232, 0.75);
  line-height: 1.65;
}

/* ---------- FOOT ---------- */
.foot {
  position: relative;
  overflow: hidden;
  background: var(--night);
  padding: 40px 16px 28px;
  clip-path: polygon(0% 28px, 28px 0%, calc(100% - 28px) 0%, 100% 28px, 100% 100%, 0% 100%);
}
.foot-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}
.foot h3 {
  font-family: var(--orb);
  letter-spacing: 0.18em;
  font-size: 13px;
  margin-bottom: 12px;
  color: var(--moon);
}
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip-btn,
.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cta {
  background: var(--green);
  color: #041204;
  font-weight: 700;
}
.cta:hover {
  background: var(--neon);
}
.chip-btn {
  background: rgba(0, 0, 0, 0.35);
  ring: 1px solid rgba(194, 24, 91, 0.4);
  border: 1px solid rgba(0, 200, 5, 0.35);
  color: var(--white);
}
.chip-btn.is-soon {
  opacity: 0.55;
  cursor: not-allowed;
}
.ca-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.35);
  padding: 10px 12px;
  border: 1px solid rgba(0, 200, 5, 0.45);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--green);
}
.foot p.fine {
  margin-top: 16px;
  color: rgba(236, 232, 232, 0.45);
  font-size: 14px;
  line-height: 1.6;
  max-width: 520px;
}
.lounge {
  width: min(310px, 80vw);
  margin: 0 auto;
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.45));
}

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  z-index: 120;
  transform: translate(-50%, 16px);
  background: var(--night);
  color: var(--green);
  border: 1px solid var(--green);
  padding: 10px 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}
.toast.is-on {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 0.7s ease forwards;
}
.reveal:nth-child(2) {
  animation-delay: 0.08s;
}
.reveal:nth-child(3) {
  animation-delay: 0.16s;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes floaty {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-12px);
  }
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes caret {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}
@keyframes reveal {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 640px) {
  .hero-ledge {
    height: 220px;
  }
  .inner-wrap {
    width: 80%;
    height: 150px;
  }
  .hero-shape {
    clip-path: polygon(
      28px 20px,
      20% 20px,
      calc(20% + 60px) 0%,
      calc(80% - 60px) 0%,
      80% 20px,
      calc(100% - 20px) 20px,
      100% 52px,
      100% 100%,
      0% 100%,
      0% 52px
    );
  }
  .inner-shape {
    clip-path: polygon(0 28px, 28px 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%);
  }
  .mascot-float {
    width: min(620px, 58vw);
    bottom: 150px;
    top: auto;
  }
  .hero-social {
    display: flex;
  }
  .sign-bunny {
    width: 230px;
  }
  .swatches {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .gif-item {
    width: 190px;
  }
  .gif-item img {
    height: 180px;
  }
}
@media (min-width: 768px) {
  .term {
    left: auto;
    right: 0;
    top: 110px;
    width: min(440px, 92vw);
  }
  .mascot-float {
    left: 35%;
  }
  .sign-bunny {
    left: 18%;
    transform: none;
    bottom: 140px;
  }
  .sign-bunny:hover {
    transform: translateY(-6px);
  }
  .origin {
    padding: 72px 40px 100px;
  }
  .origin-grid {
    flex-direction: row;
    align-items: stretch;
  }
  .about-card {
    flex: 7;
  }
  .cards {
    flex: 5;
    min-width: 320px;
  }
}
@media (min-width: 1024px) {
  .hero-ledge {
    height: 220px;
  }
  .inner-wrap {
    width: 65%;
    height: 155px;
  }
  .hero-shape {
    clip-path: polygon(
      28px 30px,
      30% 30px,
      calc(30% + 90px) 0,
      calc(70% - 90px) 0,
      70% 30px,
      calc(100% - 25px) 30px,
      100% 64px,
      100% 100%,
      0 100%,
      0 64px
    );
  }
  .mascot-float {
    left: 50%;
  }
  .protocol {
    display: grid;
    grid-template-columns: 10fr 460px;
    gap: 24px;
    align-items: start;
  }
  .brand-split,
  .foot-grid,
  .why-grid {
    grid-template-columns: 1.2fr 0.9fr;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ledge-copy {
    font-size: 15px;
  }
}
@media (min-width: 1280px) {
  .protocol {
    grid-template-columns: 10fr 500px;
  }
}
@media (max-width: 767px) {
  .term {
    max-width: none;
    font-size: 11px;
  }
  .term-ascii {
    display: none;
  }
  .term-body {
    min-height: 0;
    padding: 10px 12px 12px;
  }
  .mascot-float {
    display: none;
  }
  .sign-bunny {
    bottom: 128px;
    width: min(220px, 58vw);
  }
  .hero-ledge {
    height: 132px;
  }
  .inner-wrap {
    height: 96px;
  }
  .wordmark-fallback {
    font-size: 34px;
    letter-spacing: 0.04em;
  }
  .submark {
    letter-spacing: 0.06em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tape-track,
  .gif-track,
  .mascot-float,
  .mecha-wrap img {
    animation: none;
  }
}
