:root {
  --ink: #0c1118;
  --ink-soft: #111923;
  --panel: #151f2b;
  --line: rgba(221, 232, 242, 0.14);
  --line-strong: rgba(221, 232, 242, 0.28);
  --paper: #e7eef5;
  --muted: #91a0af;
  --cyan: #20d5ff;
  --green: #46e883;
  --pink: #ff267f;
  --amber: #ffbf29;
  --display: "Arial Narrow", "Avenir Next Condensed", "Helvetica Neue", sans-serif;
  --body: "Avenir Next", Avenir, Inter, ui-sans-serif, system-ui, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --page: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 79% 7%, rgba(32, 213, 255, 0.07), transparent 28rem),
    var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 12px;
  transform: translateY(-150%);
}

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

.site-header {
  width: var(--page);
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: auto;
}

.brand-word,
.visual-wordmark {
  font-family: var(--display);
  font-stretch: condensed;
  font-weight: 300;
  letter-spacing: -0.055em;
}

.brand-word {
  font-size: 21px;
}

.brand-word span,
.visual-wordmark span {
  font-weight: 720;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a,
.github-link {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-nav a:hover,
.github-link:hover {
  color: var(--paper);
}

.github-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.github-link svg {
  width: 14px;
  height: 14px;
}

:where(a, button):focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
  border-radius: 2px;
}

.hero {
  width: var(--page);
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 46px;
  padding: 80px 0 96px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--paper);
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-stretch: condensed;
  line-height: 0.93;
}

h1 {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(4.7rem, 8vw, 7.8rem);
  font-weight: 800;
  letter-spacing: -0.072em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 6.4vw, 6.2rem);
  font-weight: 760;
  letter-spacing: -0.06em;
}

.hero-definition {
  max-width: 630px;
  margin-bottom: 22px;
  color: #b7c3ce;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

.manifesto {
  max-width: 540px;
  margin-bottom: 34px;
  padding-left: 17px;
  border-left: 2px solid var(--green);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 21px;
  border: 1px solid var(--line-strong);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 16px;
  height: 16px;
}

.button-primary {
  color: #071018;
  background: var(--paper);
  border-color: var(--paper);
}

.button-primary:hover {
  background: #fff;
}

.button-secondary:hover {
  border-color: var(--paper);
}

.hero-utility {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: #71808e;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-utility span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.status-dot {
  width: 6px;
  height: 6px;
  display: inline-block;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(70, 232, 131, 0.8);
}

.loop-visual {
  position: relative;
  min-height: 600px;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.035), transparent 42%),
    rgba(17, 25, 35, 0.74);
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.28);
}

.loop-visual::before,
.loop-visual::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.loop-visual::before {
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 22% 52%, rgba(32, 213, 255, 0.13), transparent 25%),
    radial-gradient(circle at 78% 54%, rgba(255, 38, 127, 0.12), transparent 28%),
    radial-gradient(circle at 51% 42%, rgba(70, 232, 131, 0.09), transparent 26%);
}

.loop-visual::after {
  inset: 14px;
  border: 1px solid rgba(231, 238, 245, 0.06);
}

.visual-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(231, 238, 245, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 238, 245, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.visual-label {
  position: absolute;
  top: 28px;
  left: 31px;
  margin: 0;
  color: #6d7c89;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.11em;
}

.visual-label::before {
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 8px;
  background: var(--green);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 9px rgba(70, 232, 131, 0.7);
}

.mark-stage {
  position: absolute;
  inset: 137px 78px auto;
  text-align: center;
}

.mark-stage img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.35));
}

.spectrum-glow {
  position: absolute;
  inset: 28% 14% 21%;
  z-index: 1;
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--amber), var(--pink));
  filter: blur(42px);
  opacity: 0.2;
  transform: scale(0.82);
}

.visual-wordmark {
  margin: -4px 0 0;
  color: var(--paper);
  font-size: clamp(45px, 5.2vw, 69px);
  line-height: 1;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(231, 238, 245, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.orbit::after {
  position: absolute;
  top: 50%;
  left: -3px;
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--cyan);
  content: "";
}

.orbit-one {
  width: 87%;
  height: 46%;
  animation: orbit-breathe 8s ease-in-out infinite;
}

.orbit-two {
  width: 68%;
  height: 69%;
  opacity: 0.55;
  transform: translate(-50%, -50%) rotate(73deg);
  animation: orbit-breathe-two 9s ease-in-out infinite;
}

.orbit-two::after {
  background: var(--pink);
  box-shadow: 0 0 14px var(--pink);
}

@keyframes orbit-breathe {
  0%, 100% { transform: translate(-50%, -50%) rotate(-8deg) scale(1); }
  50% { transform: translate(-50%, -50%) rotate(-5deg) scale(1.025); }
}

@keyframes orbit-breathe-two {
  0%, 100% { transform: translate(-50%, -50%) rotate(73deg) scale(1); }
  50% { transform: translate(-50%, -50%) rotate(77deg) scale(0.98); }
}

.proof-node {
  position: absolute;
  z-index: 4;
  width: 144px;
  padding: 12px 13px 11px;
  background: rgba(12, 17, 24, 0.86);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
}

.proof-node span,
.proof-node strong,
.proof-node small {
  display: block;
  font-family: var(--mono);
}

.proof-node span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 9px;
}

.proof-node strong {
  font-size: 11px;
  letter-spacing: 0.11em;
}

.proof-node small {
  margin-top: 3px;
  color: #70808e;
  font-size: 8px;
  line-height: 1.4;
}

.node-builder {
  top: 79px;
  right: 35px;
  border-top-color: var(--cyan);
}

.node-critic {
  right: 29px;
  bottom: 70px;
  border-top-color: var(--pink);
}

.node-human {
  bottom: 47px;
  left: 32px;
  border-top-color: var(--green);
}

.visual-status {
  position: absolute;
  top: 86px;
  left: 31px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.09em;
}

.visual-status span {
  color: #687987;
}

.visual-status strong {
  color: var(--green);
}

.loop-section,
.proof-section,
.surfaces-section,
.install-section {
  width: var(--page);
  margin: 0 auto;
  padding: 132px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(210px, 0.4fr) minmax(420px, 1.1fr) minmax(260px, 0.65fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 80px;
}

.section-heading > * {
  margin-bottom: 0;
}

.section-heading h2 {
  font-size: clamp(3.5rem, 6.4vw, 6.7rem);
}

.section-heading > p:last-child,
.proof-intro > p:last-child,
.install-copy > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.loop-track {
  position: relative;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.loop-track::before {
  position: absolute;
  top: 30px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--amber), var(--pink), var(--green));
  content: "";
  opacity: 0.58;
}

.loop-step {
  position: relative;
  min-height: 210px;
  padding: 73px 24px 24px;
  border-right: 1px solid var(--line);
}

.loop-step:last-child {
  border-right: 0;
}

.loop-step::before {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 13px;
  height: 13px;
  z-index: 2;
  background: var(--ink);
  border: 2px solid var(--cyan);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 6px var(--ink), 0 0 18px rgba(32, 213, 255, 0.32);
}

.step-contract::before,
.step-build::before { border-color: var(--green); }
.step-critic::before { border-color: var(--pink); }
.step-gate::before { border-color: var(--green); background: var(--green); }

.step-index {
  display: block;
  margin-bottom: 9px;
  color: #63727f;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
}

.loop-step strong {
  display: block;
  margin-bottom: 11px;
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.03em;
}

.loop-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

code {
  font-family: var(--mono);
}

.proof-section {
  display: grid;
  grid-template-columns: 0.67fr 1.33fr;
  gap: 90px;
}

.proof-intro h2 {
  margin-bottom: 30px;
}

.proof-ledger {
  border-top: 1px solid var(--line-strong);
}

.proof-ledger article {
  display: grid;
  grid-template-columns: 110px 0.7fr 1.3fr;
  gap: 24px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.proof-ledger h3 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.proof-ledger p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.ledger-signal {
  width: fit-content;
  padding: 4px 7px;
  border: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.signal-green { color: var(--green); }
.signal-pink { color: var(--pink); }
.signal-amber { color: var(--amber); }
.signal-cyan { color: var(--cyan); }

.compact-heading {
  grid-template-columns: minmax(210px, 0.4fr) 1.6fr;
}

.surface-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.surface-card {
  position: relative;
  min-height: 430px;
  padding: 34px;
  overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid var(--line);
}

.surface-card::before {
  position: absolute;
  right: -10%;
  bottom: -44%;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(231, 238, 245, 0.1);
  border-radius: 50%;
  content: "";
}

.surface-card::after {
  position: absolute;
  right: 12%;
  bottom: -29%;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(231, 238, 245, 0.06);
  border-radius: 50%;
  content: "";
}

.surface-mission {
  box-shadow: inset 0 2px 0 var(--green);
}

.surface-harness {
  box-shadow: inset 0 2px 0 var(--cyan);
}

.surface-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.11em;
}

.surface-number {
  color: var(--paper);
  font-size: 12px;
}

.surface-card h3 {
  margin: 74px 0 20px;
  font-size: 50px;
  letter-spacing: -0.055em;
}

.surface-card > p {
  max-width: 460px;
  color: var(--muted);
}

.command-list {
  position: absolute;
  right: 34px;
  bottom: 31px;
  left: 34px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 8px;
}

.command-list code {
  padding: 7px 9px;
  color: #9dabb8;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--line);
  font-size: 10px;
}

.install-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
  align-items: center;
}

.install-copy h2 {
  margin-bottom: 29px;
}

.install-copy > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.install-copy > a svg {
  width: 14px;
  height: 14px;
}

.terminal {
  overflow: hidden;
  background: #090d12;
  border: 1px solid var(--line-strong);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.32);
}

.terminal-bar {
  min-height: 46px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #61717f;
  background: #101720;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dots i {
  width: 7px;
  height: 7px;
  background: #2d3b47;
  border-radius: 50%;
}

.terminal-ready {
  justify-self: end;
  color: var(--green);
}

.terminal pre {
  min-height: 390px;
  margin: 0;
  padding: 34px;
  overflow-x: auto;
  color: #b7c4cf;
  font-family: var(--mono);
  font-size: clamp(11px, 1.2vw, 14px);
  line-height: 1.9;
}

.prompt {
  color: var(--green);
  font-weight: 800;
}

.output {
  color: #61717f;
}

.cursor {
  width: 8px;
  height: 15px;
  display: inline-block;
  background: var(--paper);
  transform: translateY(3px);
  animation: cursor-blink 1.1s steps(2, start) infinite;
}

@keyframes cursor-blink {
  50% { opacity: 0; }
}

.closing-section {
  position: relative;
  min-height: 660px;
  padding: 130px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(rgba(12, 17, 24, 0.64), rgba(12, 17, 24, 0.94)),
    radial-gradient(circle, rgba(70, 232, 131, 0.13), transparent 28%);
  border-top: 1px solid var(--line);
}

.closing-section::before {
  position: absolute;
  inset: 12% 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--green), var(--amber), var(--pink), transparent);
  content: "";
  opacity: 0.45;
}

.closing-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(900px, 78vw);
  opacity: 0.06;
  transform: translate(-50%, -50%);
}

.closing-mark img {
  width: 100%;
  height: auto;
}

.closing-section > *:not(.closing-mark) {
  position: relative;
  z-index: 2;
}

.closing-section h2 {
  margin-bottom: 40px;
  font-size: clamp(4.5rem, 9vw, 9rem);
}

.site-footer {
  width: var(--page);
  min-height: 220px;
  margin: 0 auto;
  padding: 52px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 35px;
  align-items: start;
  color: #677582;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer > p:last-child {
  justify-self: end;
  text-align: right;
}

.footer-brand {
  color: var(--paper);
}

.site-footer div > p {
  margin: 14px 0 0;
}

.site-footer div > p a {
  color: #95a4b1;
  text-decoration-color: rgba(149, 164, 177, 0.45);
  text-underline-offset: 3px;
}

.footer-motto {
  color: #81909d;
  text-align: center;
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 90px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .loop-visual {
    min-height: 650px;
  }

  .section-heading {
    grid-template-columns: 0.45fr 1.55fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .proof-section,
  .install-section {
    grid-template-columns: 1fr;
  }

  .proof-intro,
  .install-copy {
    max-width: 670px;
  }
}

@media (max-width: 820px) {
  :root {
    --page: min(100% - 32px, 1180px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .loop-section,
  .proof-section,
  .surfaces-section,
  .install-section {
    padding: 95px 0;
  }

  .section-heading,
  .compact-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 55px;
  }

  .section-heading > p:last-child {
    grid-column: 1;
  }

  .loop-track {
    grid-template-columns: 1fr;
  }

  .loop-track::before {
    top: 32px;
    bottom: 32px;
    left: 28px;
    width: 1px;
    height: auto;
    background: linear-gradient(var(--cyan), var(--green), var(--amber), var(--pink), var(--green));
  }

  .loop-step {
    min-height: auto;
    padding: 14px 24px 34px 65px;
    border-right: 0;
  }

  .loop-step::before {
    top: 20px;
    left: 22px;
  }

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

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-motto {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding: 68px 0 80px;
    gap: 65px;
  }

  h1 {
    font-size: clamp(4.1rem, 21vw, 6.3rem);
  }

  .loop-visual {
    min-height: 510px;
  }

  .mark-stage {
    inset: 148px 38px auto;
  }

  .visual-wordmark {
    font-size: 48px;
  }

  .node-builder {
    top: 66px;
    right: 24px;
  }

  .node-critic {
    right: 20px;
    bottom: 45px;
  }

  .node-human {
    bottom: 35px;
    left: 20px;
  }

  .visual-status {
    top: 76px;
    left: 24px;
  }

  .proof-ledger article {
    grid-template-columns: 94px 1fr;
  }

  .proof-ledger article p {
    grid-column: 2;
  }

  .surface-card {
    min-height: 450px;
    padding: 28px;
  }

  .command-list {
    right: 28px;
    bottom: 28px;
    left: 28px;
    grid-template-columns: 1fr;
  }

  .terminal pre {
    min-height: 340px;
    padding: 23px;
  }

  .closing-section {
    min-height: 540px;
  }
}

@media (max-width: 480px) {
  :root {
    --page: calc(100vw - 24px);
  }

  .site-header {
    min-height: 66px;
  }

  .github-link {
    padding: 8px 0;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-utility {
    display: grid;
  }

  .loop-visual {
    min-height: 490px;
  }

  .visual-label,
  .visual-status {
    display: none;
  }

  .mark-stage {
    inset: 145px 28px auto;
  }

  .proof-node {
    width: 127px;
  }

  .node-builder {
    top: 38px;
    right: 17px;
  }

  .node-human {
    left: 16px;
  }

  .node-critic {
    right: 16px;
  }

  .surface-card h3 {
    margin-top: 60px;
    font-size: 43px;
  }

  .proof-ledger article {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .proof-ledger article p {
    grid-column: 1;
  }

  .terminal-bar {
    grid-template-columns: 1fr 1fr;
  }

  .terminal-bar > span:nth-child(2) {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer > p:last-child {
    justify-self: start;
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
