:root {
  --void: #020303;
  --ink: #f3fffb;
  --muted: rgba(243, 255, 251, .72);
  --ghost: rgba(243, 255, 251, .12);
  --panel: rgba(0, 0, 0, .74);
  --panel-soft: rgba(0, 0, 0, .54);
  --cyan: #23ffc4;
  --cyan-soft: rgba(35, 255, 196, .62);
  --console-blue: #67d8ff;
  --console-blue-soft: rgba(103, 216, 255, .56);
  --pink: #f15371;
  --pink-soft: rgba(241, 83, 113, .68);
  --gold: #c8a96e;
  --container: min(1360px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--void);
  font-family: "Space Mono", ui-monospace, monospace;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 50% 8%, rgba(35, 255, 196, .14), transparent 26rem),
    linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .78));
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 15% 30%, rgba(103, 216, 255, .12), transparent 18rem),
    radial-gradient(circle at 82% 62%, rgba(241, 83, 113, .12), transparent 20rem);
  mix-blend-mode: screen;
  pointer-events: none;
}

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

img {
  max-width: 100%;
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Syne", system-ui, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin: 0 auto 14px;
  font-size: clamp(2.75rem, 6vw, 4.95rem);
  line-height: .9;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: .95;
}

.fixed-grid {
  position: fixed;
  inset: 0;
  z-index: -4;
  background-image: url("../img/fondo-grid.png");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  padding: 10px 12px;
  border: 1px solid var(--cyan);
  background: var(--void);
  color: var(--cyan);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  width: var(--container);
  min-height: 58px;
  padding: 8px 10px;
  border: 1px solid rgba(35, 255, 196, .34);
  border-radius: 999px;
  background: rgba(0, 0, 0, .58);
  box-shadow: 0 0 34px rgba(35, 255, 196, .14), inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.brand,
.site-nav,
.button,
.legacy-label,
.route-index,
.section-kicker,
.status-panel,
.site-footer,
label {
  font-family: "Nova Square", "Space Mono", monospace;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--cyan);
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--pink);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(241, 83, 113, .2);
  box-shadow: 0 0 24px var(--pink-soft), inset 0 0 18px rgba(241, 83, 113, .28);
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
  font-size: .72rem;
}

.site-nav a,
.menu-toggle {
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
  color: var(--void);
  background: var(--cyan);
  text-shadow: none;
  box-shadow:
    0 0 12px rgba(35, 255, 196, .72),
    0 0 28px rgba(35, 255, 196, .36),
    0 0 52px rgba(103, 216, 255, .2);
}

.menu-toggle {
  display: none;
  justify-self: end;
  border: 1px solid rgba(35, 255, 196, .34);
  background: rgba(0, 0, 0, .68);
  font: inherit;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  justify-items: center;
  width: var(--container);
  min-height: 100svh;
  margin: 0 auto;
  padding: 86px 0 44px;
}

.hero-shell {
  display: grid;
  justify-items: center;
  width: min(880px, 100%);
  margin-inline: auto;
  text-align: center;
}

.hero-w {
  width: clamp(270px, 38vw, 520px);
  margin-bottom: clamp(4px, 1vw, 10px);
  filter: drop-shadow(0 0 22px rgba(241, 83, 113, .76));
}

.legacy-label {
  margin-bottom: 2px;
  color: var(--cyan);
  font-size: clamp(1.65rem, 4vw, 3.4rem);
  text-shadow: 0 0 20px rgba(35, 255, 196, .42);
}

.hero-line {
  max-width: 650px;
  margin: 0 auto 4px;
  color: var(--cyan);
  font-family: "Nova Square", "Space Mono", monospace;
  font-size: clamp(1.05rem, 2.5vw, 1.95rem);
  text-shadow: 0 0 18px rgba(35, 255, 196, .32);
}

.hero-role {
  max-width: 720px;
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: clamp(.9rem, 1.45vw, 1.1rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(35, 255, 196, .48);
}

.button-primary {
  border: 1px solid var(--cyan);
  background: var(--cyan);
  color: var(--void);
  box-shadow: 0 0 26px rgba(35, 255, 196, .34);
}

.button-secondary {
  border: 1px solid rgba(35, 255, 196, .46);
  background: rgba(0, 0, 0, .68);
  color: var(--cyan);
}

.button-secondary:hover {
  border-color: var(--console-blue);
  color: var(--console-blue);
  box-shadow: 0 0 24px rgba(103, 216, 255, .28);
}

.status-panel {
  width: min(760px, 100%);
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(35, 255, 196, .62);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(12, 24, 21, .96), rgba(0, 0, 0, .96));
  color: var(--cyan);
  box-shadow:
    16px 16px 34px rgba(0, 0, 0, .74),
    -10px -10px 28px rgba(35, 255, 196, .07),
    0 0 28px rgba(35, 255, 196, .18),
    inset 2px 2px 4px rgba(255, 255, 255, .045),
    inset -9px -9px 18px rgba(0, 0, 0, .7);
  font-size: .64rem;
  line-height: 1.25;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease, transform 220ms ease;
}

.status-panel:hover {
  border-color: var(--console-blue);
  background:
    linear-gradient(145deg, rgba(8, 30, 31, .98), rgba(0, 0, 0, .98));
  box-shadow:
    18px 18px 38px rgba(0, 0, 0, .78),
    -12px -12px 30px rgba(103, 216, 255, .08),
    0 0 26px rgba(35, 255, 196, .42),
    0 0 76px rgba(103, 216, 255, .28),
    inset 2px 2px 5px rgba(255, 255, 255, .06),
    inset -10px -10px 22px rgba(0, 0, 0, .74);
  transform: translateY(-1px);
}

.status-panel span,
.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--pink);
  font-size: .78rem;
}

.status-panel dl,
.status-panel dd {
  margin: 0;
}

.status-panel dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.status-panel div {
  display: grid;
  gap: 3px;
  padding: 2px 14px;
  border-left: 1px solid rgba(35, 255, 196, .24);
  border-top: 0;
}

.status-panel div:first-child {
  border-left: 0;
}

.status-panel dt {
  color: rgba(35, 255, 196, .62);
  transition: color 180ms ease, text-shadow 180ms ease;
}

.status-panel dd {
  transition: color 180ms ease, text-shadow 180ms ease;
}

.status-panel div:nth-child(1):hover dt,
.status-panel div:nth-child(1):hover dd {
  color: var(--pink);
  text-shadow: 0 0 16px rgba(241, 83, 113, .7);
}

.status-panel div:nth-child(2):hover dt,
.status-panel div:nth-child(2):hover dd {
  color: var(--console-blue);
  text-shadow: 0 0 16px rgba(103, 216, 255, .68);
}

.status-panel div:nth-child(3):hover dt,
.status-panel div:nth-child(3):hover dd {
  color: #75ffd8;
  text-shadow: 0 0 16px rgba(35, 255, 196, .72);
}

.routes,
.trajectory,
.nucleus,
.signal {
  width: var(--container);
  margin: 0 auto;
}

.trajectory {
  scroll-margin-top: 104px;
  display: grid;
  grid-template-columns: minmax(390px, 470px) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: start;
  margin-bottom: 54px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px dotted rgba(35, 255, 196, .58);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .035), rgba(0, 0, 0, .12)),
    rgba(0, 0, 0, .5);
  box-shadow:
    16px 16px 38px rgba(0, 0, 0, .58),
    -10px -10px 26px rgba(35, 255, 196, .04),
    0 0 38px rgba(35, 255, 196, .1),
    inset 1px 1px 0 rgba(255, 255, 255, .06),
    inset -10px -10px 24px rgba(0, 0, 0, .34);
  backdrop-filter: blur(6px);
}

.trajectory h2 {
  margin-bottom: 0;
  max-width: 8.8ch;
  font-size: clamp(2.45rem, 3.55vw, 4.05rem);
  line-height: .92;
}

.trajectory-content {
  display: grid;
  gap: 22px;
  min-width: 0;
  padding-top: 8px;
}

.trajectory-content p {
  max-width: 70ch;
  margin-bottom: 0;
  color: rgba(243, 255, 251, .82);
  font-size: clamp(.96rem, 1.05vw, 1.08rem);
  line-height: 1.66;
}

.trajectory-copy {
  color: rgba(103, 216, 255, .9);
  line-height: 1.72;
}

.routes {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 46px 0 92px;
}

.routes::before {
  content: none;
}

.route-card,
.nucleus,
.signal-form {
  border: 1px dotted rgba(35, 255, 196, .72);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012)),
    rgba(0, 0, 0, .58);
  box-shadow:
    14px 14px 34px rgba(0, 0, 0, .56),
    -10px -10px 26px rgba(35, 255, 196, .045),
    0 0 34px rgba(35, 255, 196, .1),
    inset 1px 1px 0 rgba(255, 255, 255, .06),
    inset -10px -10px 26px rgba(0, 0, 0, .32);
  backdrop-filter: blur(8px);
}

.route-card {
  position: relative;
  display: flex;
  flex-direction: column;
  scroll-margin-top: 104px;
  min-width: 0;
  min-height: 420px;
  padding: clamp(18px, 2vw, 26px);
  color: var(--muted);
  overflow: visible;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background 220ms ease;
}

.route-card:hover {
  border-color: var(--console-blue);
  background:
    linear-gradient(135deg, rgba(103, 216, 255, .07), rgba(35, 255, 196, .026), rgba(241, 83, 113, .035)),
    rgba(0, 0, 0, .6);
  box-shadow:
    18px 18px 42px rgba(0, 0, 0, .68),
    -12px -12px 30px rgba(103, 216, 255, .07),
    0 0 30px rgba(35, 255, 196, .32),
    0 0 76px rgba(103, 216, 255, .2),
    0 0 108px rgba(241, 83, 113, .09),
    inset 1px 1px 0 rgba(255, 255, 255, .1),
    inset -12px -12px 30px rgba(0, 0, 0, .42);
  transform: translateY(-2px);
}

.route-card h2 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 2.3vw, 2.65rem);
  overflow-wrap: anywhere;
}

.terminal-copy {
  margin: 0;
  color: rgba(35, 255, 196, .86);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font: 400 clamp(.62rem, .68vw, .78rem) / 1.62 "Space Mono", ui-monospace, monospace;
  text-shadow: 0 0 14px rgba(35, 255, 196, .12);
}

.terminal-copy span {
  transition: color 180ms ease, text-shadow 180ms ease;
}

.tok-star,
.tok-bracket,
.tok-slash,
.tok-punct {
  color: var(--pink);
  text-shadow: 0 0 14px rgba(241, 83, 113, .44);
}

.tok-key {
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(35, 255, 196, .28);
}

.tok-blue,
.tok-path,
.tok-command,
.tok-dash {
  color: var(--console-blue);
  text-shadow: 0 0 13px rgba(103, 216, 255, .34);
}

.tok-dot {
  color: rgba(241, 83, 113, .78);
  text-shadow: 0 0 10px rgba(241, 83, 113, .25);
}

.tok-ok {
  color: #a8ffcf;
  text-shadow: 0 0 16px rgba(35, 255, 196, .52);
}

.tok-comment {
  color: rgba(241, 83, 113, .86);
  text-shadow: 0 0 12px rgba(241, 83, 113, .34);
}

.route-card:hover .tok-star,
.route-card:hover .tok-bracket,
.route-card:hover .tok-slash,
.route-card:hover .tok-dot,
.nucleus:hover .tok-slash,
.nucleus:hover .tok-bracket {
  color: #ff7891;
  text-shadow: 0 0 18px rgba(241, 83, 113, .72);
}

.route-card:hover .tok-blue,
.route-card:hover .tok-path,
.route-card:hover .tok-command,
.route-card:hover .tok-dash,
.nucleus:hover .tok-blue {
  color: #9ee8ff;
  text-shadow: 0 0 20px rgba(103, 216, 255, .62);
}

.route-card:hover .tok-key,
.route-card:hover .tok-ok,
.nucleus:hover .tok-key {
  color: #6dffd3;
  text-shadow: 0 0 18px rgba(35, 255, 196, .58);
}

.bash-copy {
  color: var(--console-blue);
}

.route-card:nth-child(1) .terminal-copy {
  color: rgba(35, 255, 196, .88);
}

.route-card:nth-child(2) .route-index,
.route-card:nth-child(2) .terminal-copy {
  color: var(--console-blue);
}

.route-card:nth-child(2) h2 {
  text-shadow: 0 0 18px rgba(103, 216, 255, .34);
}

.route-card:nth-child(3) .terminal-copy {
  color: rgba(141, 246, 255, .84);
}

.route-card h2,
.nucleus h2,
.signal h2 {
  color: var(--ink);
  text-shadow: 0 0 18px rgba(241, 83, 113, .34);
}

.route-index {
  color: var(--pink);
  font-size: .82rem;
}

.route-link {
  position: relative;
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 18px;
  color: var(--cyan);
  font-family: "Nova Square", "Space Mono", monospace;
  font-size: .82rem;
  text-shadow: 0 0 12px rgba(35, 255, 196, .28);
  transition: color 180ms ease, text-shadow 180ms ease, transform 180ms ease;
}

.route-link::before {
  content: "→";
  margin-right: 8px;
  color: var(--pink);
  text-shadow: 0 0 12px rgba(241, 83, 113, .42);
}

.route-link:hover,
.route-link:focus-visible {
  color: var(--console-blue);
  text-shadow: 0 0 18px rgba(103, 216, 255, .74);
  transform: translateX(3px);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--pink);
}

.nucleus {
  position: relative;
  width: min(1180px, calc(100vw - 48px));
  scroll-margin-top: 104px;
  display: grid;
  grid-template-columns: minmax(180px, 270px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
  padding: clamp(30px, 4.4vw, 52px) clamp(24px, 4vw, 50px);
  margin-bottom: 92px;
  overflow: hidden;
  border-color: rgba(103, 216, 255, .48);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .018) 48%, rgba(35, 255, 196, .035)),
    rgba(0, 0, 0, .46);
  box-shadow:
    0 0 36px rgba(103, 216, 255, .13),
    0 0 70px rgba(35, 255, 196, .08),
    inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px) saturate(128%);
  animation: nucleusFlash 4.8s ease-in-out infinite;
}

.nucleus::before {
  content: "CORE_MANIFEST · INTERNAL · ACCESS";
  position: absolute;
  top: 13px;
  left: clamp(24px, 4.8vw, 64px);
  color: var(--pink);
  font-family: "Nova Square", "Space Mono", monospace;
  font-size: .72rem;
  text-shadow: 0 0 18px rgba(241, 83, 113, .5);
}

.nucleus::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 38%, rgba(103, 216, 255, .18) 49%, transparent 61% 100%);
  transform: translateX(-120%);
  animation: nucleusSweep 5.8s ease-in-out infinite;
  pointer-events: none;
}

.nucleus-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--pink);
  font-family: "Nova Square", "Space Mono", monospace;
  font-size: .78rem;
  text-shadow: 0 0 16px rgba(241, 83, 113, .42);
}

.nucleus p,
.signal-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.nucleus-copy {
  justify-self: start;
  width: 100%;
  max-width: none;
  color: rgba(35, 255, 196, .9);
  line-height: 1.65;
  text-shadow: 0 0 18px rgba(35, 255, 196, .14);
}

@keyframes nucleusFlash {
  0%, 100% {
    border-color: rgba(103, 216, 255, .42);
    box-shadow:
      0 0 30px rgba(103, 216, 255, .1),
      0 0 68px rgba(35, 255, 196, .07),
      inset 0 1px 0 rgba(255, 255, 255, .08);
  }
  48%, 54% {
    border-color: rgba(241, 83, 113, .72);
    box-shadow:
      0 0 34px rgba(241, 83, 113, .18),
      0 0 76px rgba(103, 216, 255, .14),
      inset 0 1px 0 rgba(255, 255, 255, .12);
  }
}

@keyframes nucleusSweep {
  0%, 64% {
    transform: translateX(-120%);
    opacity: 0;
  }
  72% {
    opacity: .78;
  }
  86%, 100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

.signal {
  scroll-margin-top: 104px;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1fr);
  gap: clamp(24px, 6vw, 74px);
  align-items: start;
  padding: 8px 0 110px;
}

.signal-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 22px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--cyan);
  font-size: .82rem;
}

.wide {
  grid-column: 1 / -1;
}

.trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(35, 255, 196, .36);
  border-radius: 0;
  padding: 13px 12px;
  color: var(--ink);
  background: rgba(0, 0, 0, .72);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid var(--console-blue);
  outline-offset: 2px;
  box-shadow: 0 0 22px rgba(103, 216, 255, .18);
}

textarea {
  resize: vertical;
}

.signal-form .button {
  justify-self: start;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--pink);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: var(--container);
  margin: 0 auto;
  padding: 24px 0 34px;
  border-top: 1px solid rgba(103, 216, 255, .28);
  color: rgba(243, 255, 251, .68);
  font-size: .78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 10px;
    border: 1px solid rgba(35, 255, 196, .34);
    border-radius: 18px;
    background: rgba(0, 0, 0, .88);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .signal,
  .trajectory,
  .nucleus {
    grid-template-columns: 1fr;
  }

  .nucleus {
    width: var(--container);
  }

  .hero {
    justify-items: center;
    padding-top: 110px;
  }

  .status-panel {
    justify-self: center;
    width: min(100%, 390px);
  }

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

  .route-card {
    min-height: auto;
  }

  .terminal-copy {
    font-size: clamp(.7rem, 2.35vw, .86rem);
  }

  .trajectory {
    margin-bottom: 34px;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    display: none;
  }

  .hero {
    min-height: auto;
    width: min(calc(100% - 32px), 420px);
    padding-bottom: 52px;
  }

  .hero-shell {
    width: 100%;
  }

  .hero-w {
    width: min(82vw, 340px);
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 150px;
  }

  .status-panel {
    width: min(100%, 320px);
  }

  .status-panel dl {
    grid-template-columns: 1fr;
  }

  .status-panel div {
    grid-template-columns: 62px 1fr;
    gap: 10px;
    padding: 5px 0;
    border-left: 0;
    border-top: 1px solid rgba(35, 255, 196, .18);
  }

  .status-panel div:first-child {
    border-top: 0;
  }

  .fixed-grid {
    background-position: center;
  }

  .signal-form {
    grid-template-columns: 1fr;
  }

  .trajectory {
    width: min(calc(100% - 32px), 420px);
    padding: 22px;
  }

  .trajectory-copy {
    font-size: .66rem;
  }

  .nucleus {
    width: min(calc(100% - 32px), 420px);
    gap: 8px;
  }

  .nucleus-copy {
    font-size: .66rem;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .reveal {
    transition: none;
  }
}
