:root {
  --ink: #050505;
  --card: #0a0a0a;
  --volt: #e0ff00;
  --dim: #a1a1aa;
  --line: #222222;
  --white: #ffffff;
  --heading: "Space Grotesk", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --container: 80rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
}

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

p,
h1,
h2,
h3,
dl,
dd,
figure {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
}

.container {
  width: min(var(--container), 100%);
  margin-inline: auto;
}

.volt {
  color: var(--volt);
}

.icon,
.menu-toggle svg,
.menu-close svg,
.modal-close svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sm {
  width: 0.875rem;
  height: 0.875rem;
  fill: none;
  stroke: var(--volt);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-box .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--volt);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 4rem;
  padding-inline: 1.5rem;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

.site-header.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(24px);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  font-family: var(--heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  border-radius: 999px;
  padding: 0.5rem 1rem;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition: background 0.2s, color 0.2s;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  transition: transform 0.2s, border-color 0.2s, background 0.2s, color 0.2s;
}

.btn-volt {
  background: var(--volt);
  color: var(--ink);
}

.btn-volt:hover {
  transform: scale(1.05);
}

.btn-ghost {
  border: 1px solid var(--line);
  padding: 0.75rem 1.5rem;
  color: var(--white);
  font-weight: 400;
}

.btn-ghost:hover {
  border-color: var(--white);
}

.header-cta {
  display: none;
  padding: 0.625rem 1.25rem;
}

.hero-actions .btn-volt {
  padding: 0.75rem 1.5rem;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--white);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.7);
}

.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 70;
  width: 18rem;
  border-left: 1px solid var(--line);
  background: var(--ink);
  padding: 1.5rem;
}

.mobile-menu[hidden],
.menu-overlay[hidden] {
  display: none;
}

.menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--white);
}

.menu-close svg {
  width: 1.25rem;
  height: 1.25rem;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 3rem;
}

.mobile-menu nav a {
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 0.875rem;
}

.mobile-menu nav a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.menu-cta {
  margin-top: 1rem;
  padding: 0.75rem 1.25rem;
  text-align: center;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100svh - 4rem);
  overflow: hidden;
  padding: 3rem 1.5rem 4rem;
}

main {
  padding-top: 4rem;
}

.particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  pointer-events: none;
}

.hero-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.4), rgba(5, 5, 5, 0.6), #050505);
}

.hero-inner {
  position: relative;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 3rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(224, 255, 0, 0.3);
  border-radius: 999px;
  background: rgba(224, 255, 0, 0.05);
  padding: 0.375rem 1rem;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 0.75rem;
  line-height: 1rem;
  animation: rise 0.6s ease both;
}

h1 {
  margin-top: 1.5rem;
  font-family: var(--heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
}

.word {
  display: inline-block;
  margin-right: 0.2em;
  animation: word-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(0.1s + var(--i) * 0.06s);
}

.lede {
  max-width: 32rem;
  margin-top: 1.5rem;
  color: var(--dim);
  font-size: 1.125rem;
  line-height: 1.625;
}

.lede + .lede {
  margin-top: 0.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.terminal {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--card);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: rise 0.8s 0.2s both;
}

.terminal figcaption {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 1rem;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.file-name {
  margin-left: 0.75rem;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 0.75rem;
}

.code {
  overflow-x: auto;
  padding: 1.25rem;
  font-family: var(--mono);
  font-size: 0.875rem;
  line-height: 1.625;
}

.code-line {
  display: flex;
  white-space: pre;
}

.ln {
  flex: 0 0 1rem;
  margin-right: 1rem;
  color: rgba(161, 161, 170, 0.3);
  text-align: right;
  user-select: none;
}

.c-volt { color: var(--volt); }
.c-white { color: var(--white); }
.c-dim { color: var(--dim); }
.c-comment { color: rgba(161, 161, 170, 0.5); }

.caret {
  display: inline-block;
  width: 0.5rem;
  height: 1rem;
  margin-left: 1rem;
  background: var(--volt);
  vertical-align: middle;
  animation: blink 0.8s linear infinite;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 4rem;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--card);
  padding: 1.5rem;
}

.stat dt {
  order: 2;
  margin-top: 0.5rem;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
}

.stat dd {
  order: 1;
  font-family: var(--heading);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  color: var(--volt);
}

.stat {
  display: flex;
  flex-direction: column;
}

.section {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 6rem 1.5rem;
}

.section-head h2,
.contact-grid h2,
.company-grid h2 {
  max-width: 42rem;
  margin-top: 1rem;
  font-family: var(--heading);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
}

.kicker {
  color: var(--volt);
  font-family: var(--mono);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.section-head p:not(.kicker) {
  max-width: 36rem;
  margin-top: 1rem;
  color: var(--dim);
  font-size: 1.125rem;
  line-height: 1.625;
}

.cards {
  display: grid;
  gap: 1.5rem;
  margin-top: 4rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--card);
  padding: 2rem;
  transition: border-color 0.5s;
}

.card:hover {
  border-color: rgba(224, 255, 0, 0.4);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--ink);
  transition: border-color 0.5s;
}

.card:hover .icon-box {
  border-color: rgba(224, 255, 0, 0.4);
}

.index,
.role-num,
.bracket {
  color: rgba(161, 161, 170, 0.5);
  font-family: var(--mono);
}

.index {
  font-size: 0.75rem;
  line-height: 1rem;
}

.card h3 {
  margin-top: 1.5rem;
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
  letter-spacing: -0.025em;
}

.card > p {
  margin-top: 0.75rem;
  color: var(--dim);
  line-height: 1.625;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.tags li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 0.75rem;
  line-height: 1rem;
  transition: border-color 0.3s, color 0.3s;
}

.card:hover .tags li {
  border-color: rgba(224, 255, 0, 0.3);
  color: var(--white);
}

.waveform {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 1.75rem;
  margin-top: 2.5rem;
  opacity: 0.22;
}

.waveform span {
  flex: none;
  width: 2px;
  border-radius: 999px;
  background: var(--volt);
  transition: height 0.6s ease-in-out;
}

.step-num {
  display: block;
  color: rgba(224, 255, 0, 0.2);
  font-family: var(--heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  transition: color 0.5s;
}

.card.step:hover .step-num {
  color: rgba(224, 255, 0, 0.4);
}

.card.step h3,
.card.role h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.card.step p,
.card.role p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.625;
}

.principles-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.orbit {
  display: none;
  position: relative;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
}

.ring,
.spin {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.ring {
  border: 1px solid var(--line);
}

.ring-sm,
.spin-cw {
  width: 8rem;
  height: 8rem;
}

.ring-lg,
.spin-ccw {
  width: 12rem;
  height: 12rem;
}

.orbit-core {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(224, 255, 0, 0.4);
  border-radius: 999px;
  background: var(--ink);
  color: var(--volt);
  font-family: var(--mono);
  font-size: 0.75rem;
}

.spin-cw {
  animation: spin 12s linear infinite;
}

.spin-ccw {
  animation: spin-rev 8s linear infinite;
}

.orb {
  position: absolute;
  left: 50%;
  top: 0;
  border-radius: 999px;
  transform: translateX(-50%);
}

.orb-volt {
  width: 0.625rem;
  height: 0.625rem;
  background: var(--volt);
  box-shadow: 0 0 10px #e0ff00;
}

.orb-white {
  width: 0.5rem;
  height: 0.5rem;
  background: rgba(255, 255, 255, 0.5);
}

.principle {
  padding: 2rem;
}

.card > .bracket {
  margin-top: 0;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.principle h3 {
  transition: color 0.3s;
}

.card.principle:hover h3,
.card.role:hover h3 {
  color: var(--volt);
}

.principle p:not(.bracket) {
  max-width: 28rem;
}

.role-num {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.role-art {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 9.5rem;
  margin: -0.75rem 0 0.25rem;
  background: transparent;
}

.role-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: screen;
}

.company-grid,
.contact-grid {
  display: grid;
  gap: 3.5rem;
}

.company-copy {
  max-width: 36rem;
  margin-top: 2rem;
}

.company-copy p {
  color: var(--dim);
  font-size: 1.125rem;
  line-height: 1.625;
}

.company-copy p + p {
  margin-top: 1.25rem;
}

.company-line {
  color: var(--white);
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.users-panel {
  position: relative;
  overflow: hidden;
  min-height: 20rem;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--card);
}

.users-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #050505, transparent, transparent);
  pointer-events: none;
}

.users-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.users-figure {
  font-family: var(--heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.users-label p:last-child {
  margin-top: 0.5rem;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 0.875rem;
}

.contact-note {
  margin-top: 2rem;
  color: var(--dim);
  font-size: 1.125rem;
  line-height: 1.625;
}

.mail {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: underline;
  text-decoration-color: var(--volt);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
  transition: color 0.2s;
}

.mail:hover {
  color: var(--volt);
}

.inquiry {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--dim);
  font-family: var(--mono);
  font-size: 0.875rem;
}

.inquiry-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
}

.sq {
  width: 0.625rem;
  height: 0.625rem;
  background: var(--line);
}

.sq-volt {
  background: var(--volt);
}

.prompt {
  margin-left: 0.75rem;
}

.inquiry-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.25rem;
}

.field-label,
.inquiry legend {
  color: var(--dim);
}

.inquiry fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.inquiry input,
.inquiry textarea {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 0.5rem 0;
  color: var(--white);
  font-family: var(--mono);
  font-size: 1rem;
  resize: none;
  transition: border-color 0.2s;
}

.inquiry input::placeholder,
.inquiry textarea::placeholder {
  color: rgba(161, 161, 170, 0.4);
}

.inquiry input:focus,
.inquiry textarea:focus {
  outline: none;
  border-bottom-color: var(--volt);
}

.topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.topic {
  border: 1px solid var(--line);
  padding: 0.5rem 0.75rem;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 0.75rem;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.topic:hover {
  border-color: var(--white);
  color: var(--white);
}

.topic.is-on {
  border-color: var(--volt);
  background: var(--volt);
  color: var(--ink);
}

.send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--volt);
  padding: 1rem 1.5rem;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.875rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.send:hover {
  opacity: 0.9;
}

.send:disabled {
  opacity: 0.6;
  cursor: default;
}

.spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(5, 5, 5, 0.25);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.form-status {
  margin: 0;
}

.form-status.is-ok {
  color: var(--volt);
}

.form-status.is-error {
  color: #f87171;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 1.5rem;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 0.75rem;
  line-height: 1rem;
}

.footer-bar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-meta p {
  max-width: 36rem;
}

.contact-address,
.contact-license {
  max-width: 28rem;
  margin-top: 0.75rem;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 0.875rem;
  line-height: 1.5;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.uptime {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(224, 255, 0, 0.4);
  border-radius: 999px;
  padding: 0.125rem 0.5rem;
  color: var(--white);
}

.live {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background: var(--volt);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a,
.legal button {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 0.75rem;
  transition: color 0.2s;
}

.footer-links a:hover,
.legal button:hover {
  color: var(--volt);
}

.legal {
  display: flex;
  gap: 1rem;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.modal-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(32rem, calc(100% - 2rem));
  transform: translate(-50%, -50%);
  border: 1px solid var(--line);
  background: var(--ink);
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
}

.modal-panel h2 {
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .modal-panel {
    border-radius: 0.5rem;
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--white);
  opacity: 0.7;
}

.modal-close:hover {
  opacity: 1;
}

.modal-close svg {
  width: 1rem;
  height: 1rem;
}

.modal-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  color: var(--dim);
  font-size: 1rem;
  line-height: 1.625;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

@keyframes word-in {
  from { opacity: 0; transform: translateY(40%); }
  to { opacity: 1; transform: none; }
}

@keyframes blink {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spin-rev {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

.spinner {
  animation-name: spin-flat;
}

@keyframes spin-flat {
  to { transform: rotate(360deg); }
}

@media (min-width: 768px) {
  .site-header {
    padding-inline: 2rem;
  }

  .nav,
  .header-cta {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero,
  .section,
  .site-footer {
    padding-inline: 2rem;
  }

  .hero {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }

  .section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  h1 {
    font-size: 3.75rem;
  }

  .section-head h2,
  .contact-grid h2,
  .company-grid h2 {
    font-size: 3rem;
  }

  .stat dd {
    font-size: 2.25rem;
  }

  .stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .cards-2,
  .cards-team,
  .cards-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .principle {
    padding: 2.5rem;
  }

  .users-panel {
    min-height: 24rem;
  }

  .users-figure {
    font-size: 3.75rem;
  }

  .mail {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .inquiry-body {
    padding: 2rem;
  }

  .send {
    width: auto;
    align-self: flex-start;
  }

  .footer-bar {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .footer-links {
    align-items: flex-end;
  }
}

@media (min-width: 1024px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    padding-inline: 3rem;
  }

  h1 {
    font-size: 4.5rem;
  }

  .hero-grid,
  .company-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .company-grid {
    align-items: center;
  }

  .stats {
    margin-top: 6rem;
  }

  .cards-team {
    grid-template-columns: repeat(3, 1fr);
  }

  .cards-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .orbit {
    display: flex;
  }
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.role-art.is-empty {
  background:
    radial-gradient(circle at 50% 42%, rgba(224, 255, 0, 0.22), transparent 58%);
}

.text-page,
.error-page {
  padding-top: 8rem;
}

.text-page h1,
.error-page h1 {
  max-width: 18ch;
  margin-bottom: 1.5rem;
}

.error-code {
  margin: 1rem 0 0;
  color: var(--volt);
  font-family: var(--heading);
  font-size: clamp(4.5rem, 14vw, 8rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.text-body {
  max-width: 42rem;
  color: var(--dim);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.text-body > * + * {
  margin-top: 1rem;
}

.text-body h2,
.text-body h3 {
  margin-top: 2rem;
  color: var(--white);
  font-family: var(--heading);
}

.text-body a {
  color: var(--volt);
}

.error-page .btn {
  margin-top: 2rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
