:root {
  color-scheme: dark;
  --bg: #080a0f;
  --bg-soft: #0c1118;
  --surface: #111821;
  --surface-strong: #17212d;
  --text: #edf4f7;
  --muted: #a8b5c0;
  --muted-strong: #c7d1d8;
  --line: rgba(237, 244, 247, 0.14);
  --line-strong: rgba(157, 203, 255, 0.34);
  --cyan: #9dcbff;
  --violet: #ff5d63;
  --amber: #ffe0d2;
  --brand-blue: #2457d6;
  --brand-blue-soft: #b6d8ff;
  --brand-red: #ff515c;
  --brand-peach: #ffe0d2;
  --danger: #ff8f8f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --max-width: 1160px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(8, 10, 15, 0.96), rgba(8, 10, 15, 1)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 96px),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, rgba(36, 87, 214, 0.12), transparent 34%),
    linear-gradient(315deg, rgba(255, 81, 92, 0.1), transparent 38%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--brand-blue), var(--text), var(--brand-red));
}

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

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

a:hover {
  color: var(--cyan);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

button {
  font: inherit;
}

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

p {
  color: var(--muted);
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 14px;
  background: var(--surface);
  color: var(--text);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(237, 244, 247, 0.1);
  background: rgba(8, 10, 15, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(36, 87, 214, 0.22), rgba(255, 81, 92, 0.16)),
    #020304;
  box-shadow: 0 10px 32px rgba(36, 87, 214, 0.14);
}

.brand-mark img {
  width: 34px;
  height: 39px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 1px;
  font-weight: 760;
  line-height: 1.1;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 560;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 640;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--brand-blue-soft), var(--brand-red));
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="true"]::after {
  transform: scaleX(1);
}

.nav-links a[aria-current="true"] {
  color: var(--text);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 760;
  line-height: 1.1;
}

.header-cta {
  border: 1px solid rgba(157, 203, 255, 0.34);
  padding: 0 16px;
  color: var(--text);
}

.header-cta:hover {
  background: rgba(157, 203, 255, 0.09);
}

.section {
  padding: 96px 0;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  padding-top: 78px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 64px;
  align-items: center;
}

.hero-content {
  max-width: 740px;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: var(--text);
  font-size: 4.25rem;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--muted-strong);
  font-size: 1.32rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.button {
  padding: 0 20px;
}

.button-primary {
  border: 1px solid rgba(157, 203, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(36, 87, 214, 0.94), rgba(255, 81, 92, 0.82));
  color: var(--text);
  box-shadow: 0 18px 44px rgba(36, 87, 214, 0.2);
}

.button-primary:hover {
  border-color: rgba(255, 224, 210, 0.72);
  background:
    linear-gradient(135deg, rgba(49, 110, 245, 0.98), rgba(255, 99, 108, 0.9));
  color: var(--text);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(255, 224, 210, 0.72);
  background: rgba(255, 224, 210, 0.09);
  color: var(--text);
}

.hero-note {
  max-width: 610px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-brandline {
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(157, 203, 255, 0.18);
  border-radius: 8px;
  padding: 10px 12px;
  background:
    linear-gradient(135deg, rgba(36, 87, 214, 0.13), rgba(255, 81, 92, 0.08)),
    rgba(2, 3, 4, 0.58);
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 760;
}

.hero-brandline img {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  object-fit: contain;
  background: rgba(2, 3, 4, 0.72);
  box-shadow: inset 0 0 0 1px rgba(237, 244, 247, 0.1);
}

.hero-brandline img:first-of-type {
  padding: 4px;
}

.hero-brandline img:nth-of-type(2) {
  padding: 2px;
}

.hero-brandline img:last-of-type {
  padding: 3px;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(237, 244, 247, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(36, 87, 214, 0.16), transparent 48%, rgba(255, 81, 92, 0.14)),
    linear-gradient(180deg, rgba(17, 24, 33, 0.9), rgba(4, 5, 8, 0.98));
  box-shadow: var(--shadow);
}

.hero-logo-stage {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 46%, rgba(36, 87, 214, 0.26), transparent 31%),
    radial-gradient(circle at 76% 46%, rgba(255, 81, 92, 0.22), transparent 30%),
    radial-gradient(circle at 50% 52%, rgba(247, 251, 255, 0.11), transparent 30%),
    #020304;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}

.hero-logo-stage::before {
  position: absolute;
  inset: -80px;
  content: "";
  background:
    repeating-linear-gradient(30deg, rgba(237, 244, 247, 0.06) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(150deg, rgba(237, 244, 247, 0.045) 0 1px, transparent 1px 92px);
  opacity: 0.7;
  transform: translate3d(var(--grid-x, 0), var(--grid-y, 0), 0);
  transition: transform 260ms ease;
}

.hero-logo-stage::after {
  position: absolute;
  inset: auto 38px 34px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(157, 203, 255, 0.7), rgba(255, 81, 92, 0.65), transparent);
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: min(62%, 310px);
  height: auto;
  border-radius: 2px;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.62));
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translate3d(0, 0, 0);
  transition: transform 220ms ease;
}

.logo-halo {
  position: absolute;
  z-index: 1;
  width: min(76%, 390px);
  aspect-ratio: 1;
  border: 1px solid rgba(237, 244, 247, 0.16);
  transform: rotate(45deg);
  background: linear-gradient(135deg, rgba(36, 87, 214, 0.08), rgba(255, 81, 92, 0.08));
  animation: halo-spin 28s linear infinite;
}

.logo-node {
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.node-blue {
  left: 20%;
  top: 42%;
  background: var(--brand-blue-soft);
  box-shadow: 0 0 26px rgba(157, 203, 255, 0.9);
  animation: node-pulse 2.8s ease-in-out infinite;
}

.node-white {
  left: 50%;
  top: 18%;
  background: var(--brand-peach);
  box-shadow: 0 0 26px rgba(255, 224, 210, 0.8);
  animation: node-pulse 3.4s ease-in-out infinite 0.4s;
}

.node-red {
  right: 20%;
  top: 42%;
  background: var(--brand-red);
  box-shadow: 0 0 26px rgba(255, 81, 92, 0.85);
  animation: node-pulse 3s ease-in-out infinite 0.8s;
}

@keyframes halo-spin {
  from {
    transform: rotate(45deg);
  }

  to {
    transform: rotate(405deg);
  }
}

@keyframes node-pulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.55);
  }
}

.hero-signals {
  display: grid;
  gap: 1px;
  margin: 0;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.hero-signals div {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 16px;
  padding: 17px 18px;
  background: rgba(8, 10, 15, 0.88);
}

.hero-signals dt {
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 780;
}

.hero-signals dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.section-heading {
  max-width: 560px;
}

.section-heading.wide {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-label {
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: 2.45rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
}

h3 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 780;
  line-height: 1.28;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 70px;
  align-items: start;
}

.story {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(12, 17, 24, 0.54);
}

.ecosystem {
  padding-top: 76px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(36, 87, 214, 0.08), transparent 44%, rgba(255, 81, 92, 0.07)),
    rgba(8, 10, 15, 0.34);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 54px;
  align-items: center;
}

.brand-stack {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.brand-tile {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid rgba(237, 244, 247, 0.13);
  border-radius: var(--radius);
  padding: 18px;
  background:
    radial-gradient(circle at 50% 24%, rgba(157, 203, 255, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(17, 24, 33, 0.92), rgba(2, 3, 4, 0.82));
  color: var(--text);
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.brand-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(157, 203, 255, 0.5);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  color: var(--text);
}

.brand-tile img {
  width: min(86px, 66%);
  height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.34));
}

.brand-tile span {
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.35;
}

.brand-tile-dark {
  background:
    linear-gradient(135deg, rgba(36, 87, 214, 0.18), rgba(255, 81, 92, 0.12)),
    #020304;
}

.brand-tile-secure {
  background:
    radial-gradient(circle at 50% 18%, rgba(140, 245, 227, 0.15), transparent 42%),
    linear-gradient(180deg, rgba(13, 33, 31, 0.94), rgba(2, 3, 4, 0.84));
}

.story-copy {
  display: grid;
  gap: 18px;
}

.story-copy p {
  margin-bottom: 0;
  color: var(--muted-strong);
  font-size: 1.04rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card,
.principle,
.link-list a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 24, 33, 0.78);
}

.service-card {
  min-height: 354px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover,
.service-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(157, 203, 255, 0.44);
  background: rgba(23, 33, 45, 0.9);
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 224, 210, 0.42);
  border-radius: 8px;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 860;
}

.service-logo {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(157, 203, 255, 0.16);
  border-radius: 8px;
  padding: 7px;
  background:
    radial-gradient(circle at 50% 24%, rgba(157, 203, 255, 0.14), transparent 54%),
    rgba(2, 3, 4, 0.78);
}

.service-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-logo-secure {
  background:
    radial-gradient(circle at 50% 24%, rgba(140, 245, 227, 0.15), transparent 54%),
    rgba(2, 3, 4, 0.78);
}

.service-card p {
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.service-card a {
  margin-top: auto;
  color: var(--cyan);
  font-size: 0.92rem;
  font-weight: 760;
}

.service-toggle {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  border: 1px solid rgba(237, 244, 247, 0.12);
  border-radius: 6px;
  padding: 9px 11px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-strong);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1;
}

.service-toggle:hover {
  border-color: rgba(255, 224, 210, 0.38);
  color: var(--text);
}

.service-toggle span {
  width: 16px;
  color: var(--brand-peach);
  font-size: 1rem;
  line-height: 1;
  text-align: center;
}

.service-details {
  display: grid;
  gap: 8px;
  margin: -2px 0 20px;
  padding: 0;
  color: var(--muted);
  font-size: 0.87rem;
  list-style: none;
}

.service-details li {
  position: relative;
  padding-left: 18px;
}

.service-details li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--brand-blue-soft), var(--brand-red));
}

.approach {
  background: linear-gradient(180deg, rgba(8, 10, 15, 0), rgba(157, 203, 255, 0.045), rgba(255, 81, 92, 0.035), rgba(8, 10, 15, 0));
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.76fr 1fr;
  gap: 64px;
  align-items: start;
}

.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.principle {
  min-height: 220px;
  padding: 24px;
}

.principle:nth-child(2) {
  border-color: rgba(255, 81, 92, 0.34);
}

.principle:nth-child(3) {
  border-color: rgba(255, 224, 210, 0.32);
}

.principle p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.official-links {
  border-top: 1px solid var(--line);
}

.link-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.link-list a {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 16px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  transform: translateY(18px);
  border: 1px solid rgba(237, 244, 247, 0.14);
  border-radius: 8px;
  background: rgba(8, 10, 15, 0.78);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  color: var(--text);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.back-to-top:hover {
  border-color: rgba(157, 203, 255, 0.5);
}

.back-to-top.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.js-enabled [data-reveal] {
  transform: translateY(22px);
  opacity: 0;
  transition: opacity 520ms ease, transform 520ms ease;
}

.js-enabled [data-reveal].is-visible {
  transform: translateY(0);
  opacity: 1;
}

.link-list a:hover {
  transform: translateY(-3px);
  border-color: rgba(157, 203, 255, 0.5);
  color: var(--text);
}

.link-list span {
  color: var(--text);
  font-weight: 780;
  line-height: 1.25;
}

.link-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.link-list small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  background: rgba(5, 7, 10, 0.88);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
}

.footer-inner p {
  margin: 0;
  color: var(--muted-strong);
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.footer-inner small {
  color: var(--muted);
}

@media (max-width: 1080px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 16px 0;
  }

  .brand {
    min-width: auto;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-grid,
  .split-layout,
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-content,
  .section-heading {
    max-width: 820px;
  }

  .ecosystem-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

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

@media (max-width: 760px) {
  :root {
    --header-height: 112px;
  }

  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: 2.75rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.16;
  }

  .hero-lede {
    font-size: 1.1rem;
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

  .hero-signals div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .service-grid,
  .principles,
  .link-list {
    grid-template-columns: 1fr;
  }

  .hero-brandline {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

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

  .service-card,
  .principle {
    min-height: auto;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
  }

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

@media (max-width: 420px) {
  h1 {
    font-size: 2.34rem;
  }

  h2 {
    font-size: 1.74rem;
  }

  .brand-text small {
    font-size: 0.72rem;
  }

  .hero-brandline span:first-child {
    display: none;
  }

  .brand-stack {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .logo-halo,
  .logo-node {
    animation: none !important;
  }
}
