@font-face {
  font-family: "Hexa";
  src: url("assets/fonts/hexa.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --bg: #0b0d10;
  --panel: #03050a;
  --fg: rgba(255, 232, 184, 0.9);
  --line: rgba(255, 232, 184, 0.14);
  --code-line: rgba(30, 41, 59, 0.78);
  --page-gutter: clamp(24px, 5.8vw, 96px);
  --glyph-cream: 255, 232, 184;
  --glyph-orange: #ff6a1a;
  --glyph-blue: #19b9ff;
  --glyph-green: 68, 255, 204;
  --neon-blue: 68, 255, 204;
  --neon-box-glow:
    0 0 6px rgba(var(--neon-blue), 1),
    0 0 16px rgba(var(--neon-blue), 0.9),
    0 0 34px rgba(var(--neon-blue), 0.62),
    0 0 70px rgba(var(--neon-blue), 0.34);
  --neon-text-glow:
    0 0 5px rgba(var(--neon-blue), 0.95),
    0 0 14px rgba(var(--neon-blue), 0.78),
    0 0 30px rgba(var(--neon-blue), 0.46),
    0 0 54px rgba(var(--neon-blue), 0.26);
  --blue-text-glow:
    0 0 8px rgba(25, 185, 255, 0.82),
    0 0 20px rgba(25, 185, 255, 0.36);
  --orange-text-glow:
    0 0 8px rgba(255, 106, 26, 0.86),
    0 0 20px rgba(255, 106, 26, 0.38);
  --neon-drop-glow:
    drop-shadow(0 0 5px rgba(var(--neon-blue), 0.95))
    drop-shadow(0 0 14px rgba(var(--neon-blue), 0.75))
    drop-shadow(0 0 34px rgba(var(--neon-blue), 0.46));
  --font-hexa: "Hexa", "Bahnschrift", "Agency FB", "Arial Narrow", Arial, sans-serif;
  --font-mono: "Cascadia Mono", "Consolas", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(255, 232, 184, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 232, 184, 0.018) 1px, transparent 1px),
    var(--bg);
  background-size: 28px 28px, 28px 28px, auto;
  color: var(--fg);
  font-family: var(--font-mono);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 9;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(ellipse at 50% 0, rgba(var(--neon-blue), 0.075), transparent 34%),
    radial-gradient(ellipse at 50% 100%, rgba(25, 185, 255, 0.055), transparent 34%),
    linear-gradient(90deg, rgba(7, 20, 20, 0.62), transparent 11%, transparent 89%, rgba(5, 18, 20, 0.68));
  opacity: 0.72;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(215px 160px at left top, rgba(0, 0, 0, 0.86) 0 28%, rgba(0, 0, 0, 0.58) 52%, rgba(0, 0, 0, 0.16) 72%, transparent 91%),
    radial-gradient(215px 160px at right top, rgba(0, 0, 0, 0.86) 0 28%, rgba(0, 0, 0, 0.58) 52%, rgba(0, 0, 0, 0.16) 72%, transparent 91%),
    radial-gradient(250px 190px at left bottom, #000 0 35%, rgba(0, 0, 0, 0.94) 52%, rgba(0, 0, 0, 0.28) 73%, transparent 91%),
    radial-gradient(250px 190px at right bottom, #000 0 35%, rgba(0, 0, 0, 0.94) 52%, rgba(0, 0, 0, 0.28) 73%, transparent 91%),
    radial-gradient(ellipse at 50% 50%, transparent 58%, rgba(255, 255, 255, 0.018) 69%, transparent 80%);
  box-shadow:
    inset 0 0 0 2px rgba(132, 172, 164, 0.12),
    inset 0 0 0 9px rgba(0, 0, 0, 0.72),
    inset 0 0 16px 8px rgba(0, 0, 0, 0.9),
    inset 0 0 92px 38px rgba(0, 0, 0, 0.58),
    inset 0 0 155px 72px rgba(0, 0, 0, 0.42);
}

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

.crt {
  position: fixed;
  inset: 8px;
  z-index: 12;
  pointer-events: none;
  border: 1px solid rgba(128, 160, 150, 0.16);
  border-radius: 8.5vw / 7vw;
  outline: 10px solid #020405;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 0 58%, rgba(190, 210, 205, 0.014) 66%, rgba(0, 0, 0, 0.34) 100%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.95),
    0 0 34px rgba(0, 0, 0, 0.9),
    0 0 74px rgba(0, 0, 0, 0.72),
    inset 0 0 0 1px rgba(210, 255, 245, 0.045),
    inset 0 0 12px 7px rgba(0, 0, 0, 0.75),
    inset 0 0 62px 29px rgba(0, 0, 0, 0.55),
    inset 0 0 146px 68px rgba(0, 0, 0, 0.44);
}

.crt::before,
.crt::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
}

.crt::before {
  opacity: 0.36;
  background-image: url("assets/crt-pattern.png");
  background-size: 2px 2px;
  background-repeat: repeat;
  background-position: center;
}

.crt::after {
  opacity: 0.5;
  background:
    radial-gradient(ellipse at 16% 5%, rgba(225, 255, 248, 0.05), transparent 18%),
    radial-gradient(ellipse at 84% 95%, rgba(25, 185, 255, 0.032), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 17% 78%, rgba(var(--neon-blue), 0.026)),
    radial-gradient(ellipse at -4% 50%, rgba(130, 185, 174, 0.04), transparent 38%),
    radial-gradient(ellipse at 104% 50%, rgba(70, 132, 150, 0.04), transparent 38%);
  box-shadow:
    inset 0 0 0 1px rgba(170, 220, 210, 0.07),
    inset 0 0 13px 4px rgba(80, 150, 140, 0.035),
    inset 0 0 118px 42px rgba(0, 0, 0, 0.24);
  mix-blend-mode: screen;
}

.site-header {
  position: fixed;
  inset: 18px 18px auto;
  z-index: 11;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 64px);
  align-items: center;
  min-height: 72px;
  padding: 0 var(--page-gutter);
  overflow: hidden;
  border-bottom: 1px solid var(--code-line);
  border-radius: clamp(34px, 7.2vw, 92px) clamp(34px, 7.2vw, 92px) 0 0 / clamp(28px, 5.8vw, 76px) clamp(28px, 5.8vw, 76px) 0 0;
  background:
    linear-gradient(180deg, rgba(11, 13, 16, 0.96), rgba(11, 13, 16, 0.88)),
    linear-gradient(90deg, rgba(25, 185, 255, 0.08), transparent 32%, transparent 68%, rgba(255, 106, 26, 0.06));
}

.site-mark,
.footer-title {
  display: inline-flex;
  align-items: center;
  gap: 0.22em;
  padding: 0.22em 0.5em 0.16em;
  color: rgba(var(--neon-blue), 1);
  background: rgba(0, 0, 0, 0.82);
  border: 1px solid rgba(var(--glyph-cream), 0.16);
  border-radius: 2px;
  font-family: var(--font-hexa);
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  box-shadow:
    0 0 22px rgba(0, 0, 0, 0.84),
    0 0 22px rgba(var(--neon-blue), 0.2),
    inset 0 0 18px rgba(0, 0, 0, 0.58);
  text-shadow:
    var(--neon-text-glow),
    1px 0 rgba(var(--neon-blue), 0.72),
    -1px 0 rgba(255, 255, 255, 0.26),
    0 0 78px rgba(var(--neon-blue), 0.4);
}

.site-mark {
  grid-column: 1;
  filter:
    drop-shadow(0 0 6px rgba(var(--neon-blue), 0.8))
    drop-shadow(0 0 24px rgba(var(--neon-blue), 0.42));
}

.site-mark::before,
.footer-title::before,
.site-link::before,
.content-sections a::before {
  content: "[";
}

.site-mark::after,
.footer-title::after {
  content: "]_";
}

.site-link::after,
.content-sections a::after {
  content: "]";
}

.site-mark::before,
.site-mark::after,
.footer-title::before,
.footer-title::after,
.site-link::before,
.site-link::after,
.content-sections a::before,
.content-sections a::after {
  color: var(--glyph-orange);
  font-family: var(--font-mono);
  text-shadow: var(--orange-text-glow);
}

.site-mark::before,
.site-mark::after,
.footer-title::before,
.footer-title::after {
  font-size: 0.8em;
  line-height: 1;
}

.site-nav {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 2.6vw, 34px);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.site-nav a {
  color: rgba(226, 232, 240, 0.62);
}

.site-nav a::before {
  content: ">";
  margin-right: 0.55em;
}

.site-nav a::before,
.footer-nav a::before,
.text-content h2::before {
  color: var(--glyph-blue);
  text-shadow: var(--blue-text-glow);
}

.text-content h2::after {
  color: var(--glyph-orange);
  text-shadow: var(--orange-text-glow);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: rgba(var(--glyph-cream), 0.98);
  text-shadow: 0 0 12px rgba(var(--glyph-cream), 0.25);
}

.site-link {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.42em;
  padding: 0.62em 0.9em;
  color: rgba(var(--glyph-cream), 0.82);
  background: rgba(3, 5, 10, 0.82);
  border: 1px solid rgba(var(--glyph-cream), 0.18);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  box-shadow: inset 0 -1px 0 rgba(25, 185, 255, 0.25);
}

.site-link:hover,
.site-link:focus-visible {
  color: rgba(var(--glyph-cream), 1);
  border-color: rgba(255, 106, 26, 0.62);
  text-shadow: 0 0 14px rgba(var(--glyph-cream), 0.3);
}

.hero {
  position: relative;
  min-height: calc(100svh - 18px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  opacity: 0.34;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(25, 185, 255, 0.12) 48% 48.16%, transparent 48.16%),
    repeating-linear-gradient(0deg, rgba(255, 232, 184, 0.024) 0 1px, transparent 1px 26px);
}

.hero-image,
.hero-vignette {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: 0;
  background: url("assets/noxlabs-bg-wide.jpg") center / cover no-repeat;
  opacity: 0.82;
  filter: brightness(0.82) contrast(1.08) saturate(0.82);
}

.hero-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: url("assets/noxlabs-logo.png") center / min(68vw, 980px) auto no-repeat;
  opacity: 0.9;
  filter:
    drop-shadow(0 0 20px rgba(255, 255, 255, 0.08))
    drop-shadow(0 0 30px rgba(var(--neon-blue), 0.16));
}

.hero-vignette {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 5, 10, 0.68), rgba(3, 5, 10, 0.04) 42%, rgba(3, 5, 10, 0.62)),
    linear-gradient(90deg, rgba(3, 5, 10, 0.4), transparent 28%, transparent 72%, rgba(3, 5, 10, 0.4));
}

.terminal-session {
  position: absolute;
  left: var(--page-gutter);
  top: 104px;
  z-index: 4;
  width: min(820px, calc(100vw - (var(--page-gutter) * 2)));
  margin: 0;
  padding: 42px 22px 20px;
  color: rgba(var(--glyph-cream), 0.84);
  background:
    linear-gradient(180deg, rgba(31, 31, 26, 0.7), rgba(3, 5, 10, 0.78) 38%),
    rgba(3, 5, 10, 0.72);
  border: 1px solid var(--code-line);
  border-top-color: rgba(255, 106, 26, 0.72);
  font-family: var(--font-mono);
  font-size: clamp(12px, 1.05vw, 15px);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0;
  text-transform: none;
  box-shadow:
    0 0 32px rgba(0, 0, 0, 0.78),
    inset 0 1px 0 rgba(255, 232, 184, 0.07),
    inset 0 -1px 0 rgba(25, 185, 255, 0.18);
  text-shadow:
    0 0 8px rgba(var(--glyph-cream), 0.14),
    0 0 22px rgba(var(--neon-blue), 0.18);
}

.terminal-session::before {
  position: absolute;
  top: 14px;
  left: 18px;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: rgba(25, 185, 255, 0.32);
  box-shadow:
    13px 0 0 rgba(var(--neon-blue), 0.24),
    26px 0 0 rgba(255, 106, 26, 0.3);
}

.terminal-session p {
  margin: 0 0 0.78em;
}

.terminal-session p:last-child {
  margin-top: 1.15em;
  margin-bottom: 0;
}

.terminal-session a {
  color: rgba(var(--neon-blue), 1);
  text-shadow: var(--neon-text-glow);
}

.terminal-session time {
  color: rgba(var(--glyph-cream), 0.92);
}

.term-user {
  color: rgba(var(--glyph-green), 1);
  text-shadow:
    0 0 6px rgba(var(--glyph-green), 0.9),
    0 0 18px rgba(var(--glyph-green), 0.58),
    0 0 38px rgba(var(--glyph-green), 0.26);
}

.term-path {
  color: rgba(var(--glyph-cream), 0.78);
}

.term-at,
.term-host {
  color: rgba(var(--neon-blue), 1);
  text-shadow: var(--neon-text-glow);
}

.term-cursor {
  display: inline-block;
  width: 0.62em;
  height: 1.05em;
  margin-left: 0.45em;
  transform: translateY(0.18em);
  background: rgba(var(--neon-blue), 1);
  box-shadow: var(--neon-box-glow);
  animation: cursor-blink 1s steps(1, end) infinite;
}

.glyph-orbit {
  position: absolute;
  right: var(--page-gutter);
  bottom: clamp(72px, 12vh, 140px);
  z-index: 3;
  margin: 0;
  padding: 18px 22px;
  color: rgba(var(--neon-blue), 0.86);
  background:
    linear-gradient(180deg, rgba(3, 5, 10, 0.78), rgba(3, 5, 10, 0.55)),
    repeating-linear-gradient(0deg, rgba(255, 232, 184, 0.035) 0 1px, transparent 1px 8px);
  border: 1px solid rgba(var(--glyph-cream), 0.16);
  border-left-color: rgba(25, 185, 255, 0.5);
  border-top-color: rgba(255, 106, 26, 0.5);
  font-family: var(--font-mono);
  font-size: clamp(11px, 1vw, 15px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow:
    0 0 8px rgba(var(--neon-blue), 0.72),
    0 0 24px rgba(var(--neon-blue), 0.28);
  box-shadow:
    0 0 34px rgba(0, 0, 0, 0.8),
    0 0 34px rgba(var(--neon-blue), 0.14),
    inset 0 0 24px rgba(0, 0, 0, 0.52);
  transform: skewX(-4deg);
  animation: glyph-drift 7s ease-in-out infinite;
}

.content-sections {
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.content-section {
  position: relative;
  padding: 104px var(--page-gutter);
  scroll-margin-top: 96px;
  border-top: 1px solid var(--line);
  background:
    repeating-linear-gradient(0deg, rgba(255, 232, 184, 0.018) 0 1px, transparent 1px 28px),
    linear-gradient(135deg, transparent 0 14%, rgba(25, 185, 255, 0.04) 14% 15%, transparent 15% 52%, rgba(var(--neon-blue), 0.035) 52% 53%, transparent 53%),
    var(--bg);
  background-size: 100% 100%, 460px 460px, 100% 100%;
  text-align: center;
}

.content-sections .content-section:first-child {
  border-top: 0;
}

.kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto 30px;
  color: var(--glyph-blue);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  text-shadow:
    0 0 8px rgba(25, 185, 255, 0.76),
    0 0 20px rgba(25, 185, 255, 0.26);
}

.kicker::before,
.kicker::after {
  flex: 1 1 120px;
  height: 1px;
  max-width: 260px;
  content: "";
  background: repeating-linear-gradient(90deg, rgba(var(--glyph-cream), 0.26) 0 8px, transparent 8px 14px);
}

.text-content h1,
.text-content h2,
.text-content h3 {
  color: rgba(var(--glyph-cream), 0.96);
  font-family: var(--font-hexa);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-shadow:
    0 0 12px rgba(var(--glyph-cream), 0.18),
    1px 0 rgba(var(--neon-blue), 0.48),
    -1px 0 rgba(255, 106, 26, 0.16);
}

.text-content h1 {
  margin: 0 0 48px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.95;
  text-transform: lowercase;
}

.text-content h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0;
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1;
  text-transform: lowercase;
}

.text-content h2::before {
  display: inline-block;
  flex: 0 0 auto;
  width: auto;
  height: auto;
  content: ">";
  clip-path: none;
  transform: translateY(-0.04em);
  background: none;
  box-shadow: none;
  filter: none;
  font-family: var(--font-mono);
  font-size: clamp(12px, 1.25vw, 17px);
  line-height: 1;
}

.text-content h2::after {
  display: inline-block;
  content: "_";
  font-family: var(--font-mono);
  font-size: clamp(12px, 1.25vw, 17px);
  line-height: 1;
  transform: translateY(-0.1em);
}

.text-content h3 {
  margin: 42px 0 14px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
  text-transform: lowercase;
}

.text-content p,
.text-content li {
  color: rgba(var(--glyph-cream), 0.82);
  line-height: 1.5;
}

.text-content p {
  max-width: 760px;
  margin: 0 auto 18px;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 650;
}

.content-sections .content-section p:not(.kicker) {
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(20px, 2.25vw, 30px);
  font-weight: 700;
  line-height: 1.28;
}

.content-sections .content-section p:last-child {
  margin-bottom: 0;
}

.text-content a {
  color: rgba(var(--neon-blue), 0.96);
  text-shadow:
    0 0 8px rgba(var(--neon-blue), 0.78),
    0 0 20px rgba(var(--neon-blue), 0.28);
}

.content-sections a {
  display: inline-flex;
  align-items: center;
  gap: 0.42em;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.48em 0.72em;
  background: rgba(3, 5, 10, 0.78);
  border: 1px solid rgba(var(--glyph-cream), 0.15);
}

.text-content code {
  font-family: var(--font-mono);
  color: rgba(25, 185, 255, 0.9);
  background: rgba(3, 5, 10, 0.82);
  border: 1px solid rgba(var(--glyph-cream), 0.14);
  padding: 0.1em 0.32em;
}

.document-page {
  min-height: 72svh;
  padding: 118px var(--page-gutter) 72px;
  background:
    radial-gradient(circle at 14% 0, rgba(var(--neon-blue), 0.12), transparent 28%),
    repeating-linear-gradient(0deg, rgba(255, 232, 184, 0.018) 0 1px, transparent 1px 28px),
    var(--bg);
  text-align: left;
}

.document-page .content-section {
  padding: 36px 0;
  border-top-color: rgba(255, 255, 255, 0.08);
  background: transparent;
  text-align: left;
}

.document-page .content-section:first-of-type {
  border-top: 0;
}

.document-page h2 {
  justify-content: flex-start;
  font-size: clamp(28px, 4vw, 46px);
}

.document-page h2::before {
  flex-basis: auto;
  width: auto;
  height: auto;
}

.document-page p,
.document-page li {
  max-width: 880px;
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 520;
}

.document-page ul {
  max-width: 880px;
  margin: 0 0 20px;
  padding-left: 24px;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 64px var(--page-gutter) 34px;
  border-top: 1px solid var(--line);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(var(--neon-blue), 0.12), transparent 34%),
    linear-gradient(180deg, rgba(11, 13, 16, 0.98), rgba(3, 5, 10, 1));
}

.footer-title {
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 26px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-nav a {
  color: rgba(var(--glyph-cream), 0.68);
}

.footer-nav a::before {
  content: ">";
  margin-right: 0.5em;
  color: var(--glyph-blue);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: rgba(var(--glyph-cream), 1);
  text-shadow: var(--neon-text-glow);
}


.post-footer-mark {
  display: flex;
  justify-content: center;
  padding: 18px var(--page-gutter) 72px;
  background: #03050a;
}

.footer-icon {
  width: clamp(40px, 5vw, 58px);
  height: auto;
  opacity: 0.94;
  filter: var(--neon-drop-glow);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@keyframes cursor-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes glyph-drift {
  0%, 100% {
    opacity: 0.72;
    transform: translate3d(0, 0, 0) skewX(-4deg);
  }

  50% {
    opacity: 0.96;
    transform: translate3d(-8px, -6px, 0) skewX(-4deg);
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 9px;
    min-height: 108px;
    padding: 12px var(--page-gutter);
  }

  .site-nav {
    grid-column: 1;
    justify-content: center;
    gap: 14px;
    font-size: 11px;
  }

  .site-link {
    display: none;
  }

  .site-mark {
    grid-column: 1;
  }

  .terminal-session {
    left: var(--page-gutter);
    top: 128px;
    width: calc(100vw - (var(--page-gutter) * 2));
    font-size: 11px;
    padding: 36px 14px 16px;
  }

  .glyph-orbit {
    display: none;
  }

  .content-section {
    padding: 86px var(--page-gutter);
  }

  .text-content h2 {
    gap: 10px;
  }

  .document-page {
    padding-top: 112px;
  }

  .hero-image {
    background-image: url("assets/noxlabs-bg-mobile.jpg");
  }
}

@media (max-width: 560px) {
  .hero-image::after {
    background-position: center 62%;
    background-size: min(78vw, 460px) auto;
  }
}

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