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

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

main {
  display: block;
}

body {
  background:
    radial-gradient(ellipse 120% 60% at 88% -10%, rgba(27, 16, 53, 0.75), transparent 62%),
    var(--ink);
  color: var(--fog);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

a {
  color: var(--acid);
  text-decoration: underline;
  text-decoration-color: rgba(208, 255, 0, 0.4);
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-color: var(--acid);
}

:focus-visible {
  outline: 3px solid var(--volt);
  outline-offset: 2px;
  border-radius: 2px;
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

:root {
  --ink: #0a0e27;
  --violet: #1b1035;
  --acid: #d0ff00;
  --volt: #ff5e00;
  --slate: #1c2541;
  --fog: #e8e8f0;
  --data: #b4ff39;
  --alarm: #ff3d00;
  --font-head: Impact, 'Arial Black', sans-serif;
  --font-body: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
  --font-data: 'Roboto Mono', 'Consolas', 'SF Mono', monospace;
  --max-w: 1280px;
  --gutter: clamp(16px, 4vw, 48px);
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fog);
  margin: 0 0 0.45em;
}

h1 {
  font-size: clamp(40px, 7vw, 76px);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(28px, 4.5vw, 48px);
}

h3 {
  font-size: clamp(20px, 2.4vw, 30px);
}

h4 {
  font-size: 18px;
}

p {
  margin: 0 0 1em;
}

#main-content {
  flex: 1 0 auto;
  scroll-margin-top: 120px;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  font-size: 16px;
  line-height: 1.8;
  color: rgba(232, 232, 240, 0.86);
}

.content > * + * {
  margin-top: 1em;
}

.section {
  padding: clamp(40px, 8vw, 88px) 0;
  position: relative;
}

.section-title {
  font-size: clamp(30px, 4.5vw, 52px);
}

.section-kicker {
  display: block;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 16px;
  color: rgba(232, 232, 240, 0.65);
  max-width: 42em;
  margin-bottom: 28px;
}

.grid {
  display: grid;
  gap: clamp(16px, 2.4vw, 24px);
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  border-radius: var(--radius);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:hover {
  text-decoration: none;
}

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

.btn--primary:hover {
  background: #dcff3b;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(208, 255, 0, 0.25);
}

.btn--secondary {
  background: var(--volt);
  color: #fff;
}

.btn--secondary:hover {
  background: #ff7a2a;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 94, 0, 0.25);
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(208, 255, 0, 0.5);
  color: var(--acid);
}

.btn--ghost:hover {
  background: rgba(208, 255, 0, 0.08);
  border-color: var(--acid);
}

.btn--block {
  display: flex;
  width: 100%;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-data);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border: 1px solid;
  border-radius: 2px;
  white-space: nowrap;
}

.tag--green {
  border-color: rgba(180, 255, 57, 0.4);
  color: var(--data);
  background: rgba(180, 255, 57, 0.07);
}

.tag--orange {
  border-color: rgba(255, 94, 0, 0.45);
  color: var(--volt);
  background: rgba(255, 94, 0, 0.08);
}

.tag--red {
  border-color: rgba(255, 61, 0, 0.45);
  color: var(--alarm);
  background: rgba(255, 61, 0, 0.08);
}

.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 18px 0;
  margin: 0;
  font-family: var(--font-data);
  font-size: 13px;
  color: rgba(232, 232, 240, 0.5);
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb li + li::before {
  content: '/';
  color: rgba(232, 232, 240, 0.25);
}

.breadcrumb a {
  color: rgba(232, 232, 240, 0.75);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.breadcrumb a:hover {
  color: var(--acid);
  border-bottom-color: rgba(208, 255, 0, 0.4);
}

.card {
  position: relative;
  background: var(--slate);
  border: 1px solid rgba(232, 232, 240, 0.09);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}

.card:hover {
  transform: translateY(-4px) rotate(-0.4deg);
  border-color: rgba(208, 255, 0, 0.35);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

.card::before {
  content: '+';
  position: absolute;
  top: -8px;
  left: 14px;
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--acid);
  background: var(--ink);
  padding: 0 5px;
  line-height: 16px;
}

.card--dark {
  background: var(--ink);
  border-color: rgba(232, 232, 240, 0.14);
}

.card--tilt {
  transform: rotate(-1deg);
}

.card--tilt:hover {
  transform: rotate(0deg) translateY(-4px);
}

.card--accent {
  border-top: 3px solid var(--acid);
}

.card--alert {
  border-top: 3px solid var(--volt);
}

.card-title {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--fog);
  margin: 0;
  line-height: 1.2;
}

.card-text {
  color: rgba(232, 232, 240, 0.7);
  font-size: 14px;
  line-height: 1.65;
}

.data-figure {
  font-family: var(--font-data);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
  color: var(--data);
}

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

.data-figure--alarm {
  color: var(--alarm);
}

.data-label {
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 232, 240, 0.55);
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(208, 255, 0, 0.18);
  background:
    linear-gradient(135deg, rgba(27, 16, 53, 0.85), rgba(10, 14, 39, 0.9)),
    repeating-linear-gradient(90deg, rgba(208, 255, 0, 0.05) 0 1px, transparent 1px 10px);
  aspect-ratio: 16 / 9;
  min-height: 120px;
}

.media-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.media-frame:hover > img {
  transform: scale(1.04);
}

.media-frame::after {
  content: attr(data-caption);
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--acid);
  background: rgba(10, 14, 39, 0.82);
  padding: 3px 8px;
  border-left: 2px solid var(--volt);
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.media-frame:hover::after,
.media-frame:focus-within::after {
  opacity: 1;
  transform: none;
}

.media-frame--wide {
  aspect-ratio: 21 / 9;
}

.media-frame--square {
  aspect-ratio: 1 / 1;
}

.media-frame--portrait {
  aspect-ratio: 3 / 4;
}

.blueprint {
  background-image:
    linear-gradient(rgba(208, 255, 0, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(208, 255, 0, 0.045) 1px, transparent 1px);
  background-size: 40px 40px;
}

.coord-index {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--acid);
}

.coord-index::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--volt);
  display: inline-block;
}

.rule-slash {
  width: 140px;
  height: 4px;
  background: linear-gradient(100deg, var(--acid) 0%, var(--acid) 58%, var(--volt) 58%, var(--volt) 100%);
  transform: skewX(-18deg);
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 1100;
  display: inline-block;
  padding: 10px 16px;
  background: var(--acid);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  transition: top 0.2s var(--ease);
}

.skip-link:focus-visible {
  top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(160deg, var(--violet) 0%, var(--ink) 55%);
  border-bottom: 2px solid var(--acid);
  color: var(--fog);
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(208, 255, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(208, 255, 0, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.header-frame {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.scroll-track {
  position: relative;
  z-index: 3;
  height: 3px;
  background: rgba(232, 232, 240, 0.08);
}

.scroll-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--acid), var(--volt));
}

.header-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 14px 0 12px;
  border-bottom: 1px solid rgba(232, 232, 240, 0.12);
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.brand-mainline {
  display: flex;
  align-items: baseline;
  gap: 10px 14px;
  flex-wrap: wrap;
}

.brand-caption {
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--acid);
  border: 1px solid rgba(208, 255, 0, 0.4);
  padding: 2px 7px;
  white-space: nowrap;
  line-height: 1.4;
}

.brand-caption--footer {
  color: var(--data);
  border-color: rgba(180, 255, 57, 0.3);
}

.brand-wordmark {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.05;
  color: var(--fog);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.brand-wordmark:hover {
  color: var(--fog);
  text-decoration: none;
}

.brand-subtext {
  font-size: 13px;
  color: rgba(232, 232, 240, 0.6);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tool-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ink);
  background: var(--acid);
  padding: 7px 12px;
  text-decoration: none;
  border-radius: 2px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s var(--ease);
}

.tool-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(208, 255, 0, 0.25);
  filter: brightness(1.06);
  text-decoration: none;
}

.tool-link--volt {
  background: var(--volt);
  color: #fff;
}

.tool-link--volt:hover {
  box-shadow: 0 6px 16px rgba(255, 94, 0, 0.3);
}

.sync-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--data);
  border: 1px solid rgba(180, 255, 57, 0.3);
  padding: 5px 9px;
  border-radius: 2px;
  background: rgba(180, 255, 57, 0.04);
}

.sync-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--data);
  animation: sync-pulse 2s var(--ease) infinite;
}

.sync-text {
  font-size: 11px;
  letter-spacing: 0.06em;
}

.header-navline {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
  margin-right: auto;
}

.nav-link {
  display: block;
  padding: 14px 15px 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(232, 232, 240, 0.82);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.nav-link:hover {
  color: var(--acid);
  background: rgba(208, 255, 0, 0.06);
  text-decoration: none;
}

.nav-link[aria-current='page'] {
  color: var(--acid);
  border-bottom-color: var(--acid);
  background: rgba(208, 255, 0, 0.05);
}

.header-coords {
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(232, 232, 240, 0.42);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(208, 255, 0, 0.4);
  border-radius: 2px;
  color: var(--acid);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 9px 12px;
  cursor: pointer;
}

.nav-toggle:hover {
  background: rgba(208, 255, 0, 0.06);
}

.nav-toggle-bars {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}

.nav-toggle-bar {
  width: 16px;
  height: 2px;
  background: var(--acid);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle[aria-expanded='true'] .nav-toggle-bar:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.nav-toggle-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-footer {
  margin-top: auto;
  position: relative;
  background: linear-gradient(180deg, var(--ink) 0%, #060922 100%);
  border-top: 2px solid var(--volt);
  color: rgba(232, 232, 240, 0.75);
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(208, 255, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(208, 255, 0, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.footer-frame {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(36px, 6vw, 64px) var(--gutter) 26px;
}

.footer-rule {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.rule-mark {
  width: 36px;
  height: 4px;
  transform: skewX(-18deg);
  display: inline-block;
}

.rule-mark--acid {
  background: var(--acid);
}

.rule-mark--volt {
  background: var(--volt);
}

.footer-legend {
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(232, 232, 240, 0.38);
  margin-left: 8px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(24px, 4vw, 52px);
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-wordmark {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--fog);
  text-decoration: none;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.footer-wordmark:hover {
  color: var(--acid);
  text-decoration: none;
}

.footer-about {
  font-size: 14px;
  color: rgba(232, 232, 240, 0.66);
  max-width: 30em;
  line-height: 1.7;
  margin: 0;
}

.footer-trust {
  font-family: var(--font-data);
  font-size: 11px;
  line-height: 1.6;
  color: rgba(180, 255, 57, 0.55);
  border-left: 2px solid var(--volt);
  padding-left: 10px;
  margin: 6px 0 0;
  max-width: 32em;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-col-title {
  font-family: var(--font-data);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acid);
  margin: 0 0 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(208, 255, 0, 0.25);
  width: 100%;
  line-height: 1.4;
}

.footer-col a {
  font-size: 14px;
  color: rgba(232, 232, 240, 0.75);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
  line-height: 1.6;
}

.footer-col a:hover {
  color: var(--acid);
  border-bottom-color: rgba(208, 255, 0, 0.4);
  transform: translateX(3px);
}

.footer-col--contact .contact-line {
  padding-left: 12px;
  border-left: 1px solid rgba(232, 232, 240, 0.12);
}

.contact-line {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(232, 232, 240, 0.75);
}

.contact-line--note {
  font-family: var(--font-data);
  font-size: 11px;
  color: rgba(232, 232, 240, 0.42);
  margin-top: 4px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(232, 232, 240, 0.12);
  padding-top: 20px;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(232, 232, 240, 0.45);
}

.footer-icp {
  color: rgba(232, 232, 240, 0.6);
}

@keyframes sync-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(180, 255, 57, 0.55);
  }

  50% {
    transform: scale(1.25);
    opacity: 0.75;
    box-shadow: 0 0 0 4px rgba(180, 255, 57, 0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  }

  .js [data-reveal][data-visible] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 6px 0 14px;
    background: linear-gradient(180deg, var(--violet) 0%, var(--ink) 90%);
    border-bottom: 2px solid var(--acid);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.45);
  }

  .site-nav[data-open] {
    display: flex;
  }

  .site-nav .nav-link {
    padding: 14px var(--gutter);
    border-bottom: 1px solid rgba(232, 232, 240, 0.08);
    border-left: 3px solid transparent;
  }

  .site-nav .nav-link[aria-current='page'] {
    border-left-color: var(--acid);
    border-bottom-color: transparent;
    background: rgba(208, 255, 0, 0.06);
  }

  .header-coords {
    display: none;
  }

  .header-navline {
    justify-content: flex-end;
    min-height: 46px;
  }

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

@media (max-width: 640px) {
  .brand-caption {
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .brand-subtext {
    display: none;
  }

  .header-tools {
    display: none;
  }

  .brand-wordmark {
    font-size: 22px;
  }

  .header-topline {
    padding: 8px 0;
  }

  .header-navline {
    min-height: 42px;
  }

  .nav-toggle {
    padding: 7px 10px;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-rule {
    flex-wrap: wrap;
  }
}

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

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

  .card:hover,
  .card--tilt,
  .card--tilt:hover,
  .tool-link:hover,
  .btn:hover,
  .nav-toggle:hover {
    transform: none !important;
  }
}
