/* Mission page - Praxedis Technologies */
:root {
  --mexican-green: #006847;
  --mexican-green-light: #00a868;
  --terminal-green: #00ff88;
  --mexican-red: #ce1126;
  --mexican-white: #ffffff;
  --dark-bg: #0a0a0a;
  --panel-bg: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --panel-border: rgba(255, 255, 255, 0.13);
  --text-primary: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.72);
  --text-dim: rgba(255, 255, 255, 0.46);
  --light-bg: #f4f4f4;
  --transition-speed: 0.3s;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  overflow-x: hidden;
  cursor: none;
}

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

ul {
  list-style: none;
}

p {
  line-height: 1.7;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

#cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30002;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mexican-green-light);
  pointer-events: none;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 14px rgba(0, 255, 136, 0.75);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

#cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30001;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(0, 255, 136, 0.58);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

#cursor-dot.hovering {
  width: 14px;
  height: 14px;
  background: var(--mexican-red);
  box-shadow: 0 0 18px rgba(206, 17, 38, 0.82);
}

#cursor-ring.hovering {
  width: 52px;
  height: 52px;
  border-color: rgba(206, 17, 38, 0.6);
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--mexican-green), var(--mexican-red));
  pointer-events: none;
}

header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background var(--transition-speed), padding var(--transition-speed), border-color var(--transition-speed);
}

header.scrolled {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 104, 71, 0.32);
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

nav.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.logo .green {
  color: var(--mexican-green-light);
}

.logo .white {
  color: var(--mexican-white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color var(--transition-speed);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--mexican-green-light);
}

.cta-button,
.cta-button-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: transform var(--transition-speed), background var(--transition-speed), border-color var(--transition-speed), box-shadow var(--transition-speed), color var(--transition-speed);
}

.cta-button {
  min-height: 3.25rem;
  padding: 1rem 1.45rem;
  font-size: 0.88rem;
}

.cta-button-small {
  min-height: 2.35rem;
  padding: 0.55rem 1rem;
  background: var(--mexican-green);
  color: var(--mexican-white) !important;
  font-size: 0.78rem;
}

.cta-button.primary {
  border: 1px solid rgba(0, 255, 136, 0.38);
  background: var(--mexican-green);
  color: var(--mexican-white);
  box-shadow: 0 18px 44px rgba(0, 104, 71, 0.3);
}

.cta-button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.045);
  color: var(--mexican-white);
}

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

.cta-button.primary:hover,
.cta-button-small:hover {
  background: var(--mexican-red);
  border-color: rgba(206, 17, 38, 0.55);
  box-shadow: 0 20px 48px rgba(206, 17, 38, 0.28);
}

.cta-button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
}

.hamburger {
  position: relative;
  z-index: 1200;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(0, 255, 136, 0.4);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.3s;
}

.hamburger:hover {
  border-color: var(--mexican-green-light);
}

.hamburger:focus-visible {
  outline: 2px solid var(--mexican-green-light);
  outline-offset: 3px;
}

.ham-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--mexican-white);
  transform-origin: center;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 6rem 3rem 4rem;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.mobile-nav-overlay.is-open {
  display: flex;
}

.mno-flag-bars {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  width: 18%;
  pointer-events: none;
}

.mno-flag-bar {
  flex: 1;
}

.mno-flag-bar--green {
  background: var(--mexican-green);
  opacity: 0.18;
}

.mno-flag-bar--white {
  background: var(--mexican-white);
  opacity: 0.05;
}

.mno-flag-bar--red {
  background: var(--mexican-red);
  opacity: 0.18;
}

.mno-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 104, 71, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 104, 71, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.mno-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: border-color 0.3s, color 0.3s;
}

.mno-close:hover {
  border-color: var(--mexican-red);
  color: var(--mexican-red);
}

.mno-close:focus-visible {
  outline: 2px solid var(--mexican-green-light);
  outline-offset: 3px;
}

.mno-nav {
  width: 100%;
  max-width: 82%;
}

.mno-item {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mno-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mno-link {
  display: block;
  padding: 1.1rem 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: 0;
  transform: translateY(100%);
  transition: color 0.25s, padding-left 0.25s;
}

.mno-link:hover,
.mno-link.active {
  color: var(--mexican-green-light);
}

.mno-link:hover {
  padding-left: 0.5rem;
}

.mno-link--cta {
  margin-top: 1.5rem;
  color: var(--mexican-green-light) !important;
  font-size: 1.2rem !important;
  text-transform: uppercase;
}

.mno-item:has(.mno-link--cta) {
  border-bottom: none;
}

.mno-tagline {
  position: absolute;
  bottom: 2rem;
  left: 3rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0;
}

.mno-tagline-green {
  color: var(--mexican-green-light);
}

.mno-tagline-white {
  color: rgba(255, 255, 255, 0.28);
}

.mission-hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  align-items: center;
  overflow: hidden;
  padding: 10rem 0 7rem;
  background:
    linear-gradient(120deg, rgba(0, 104, 71, 0.2), transparent 34%),
    linear-gradient(300deg, rgba(206, 17, 38, 0.18), transparent 38%),
    #050505;
}

#mission-canvas,
.cinema-grid,
.flag-rails {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

#mission-canvas {
  width: 100%;
  height: 100%;
  opacity: 0.82;
}

.cinema-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.045) 49%, transparent 51%);
  background-size: 64px 64px, 64px 64px, 100% 8px;
  opacity: 0.22;
}

.flag-rails {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  padding-right: 5vw;
  transform: skewX(-16deg);
}

.rail {
  width: 58px;
  min-height: 100%;
}

.rail-green {
  background: linear-gradient(180deg, transparent, rgba(0, 104, 71, 0.42), transparent);
}

.rail-white {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.rail-red {
  background: linear-gradient(180deg, transparent, rgba(206, 17, 38, 0.4), transparent);
}

.mission-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.58fr);
  gap: 3rem;
  align-items: center;
}

.mission-copy,
.signal-card,
.access-copy,
.access-matrix {
  min-width: 0;
}

.mission-kicker,
.section-kicker {
  color: var(--mexican-green-light);
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mission-kicker {
  margin-bottom: 1.2rem;
}

.mission-title {
  max-width: 870px;
  margin-bottom: 1.35rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: 0;
  text-shadow: 0 28px 80px rgba(0, 0, 0, 0.76);
}

.mission-sub {
  max-width: 760px;
  color: var(--text-muted);
  font-size: 1.18rem;
}

.mission-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

.signal-card {
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.58);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
}

.signal-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mexican-green), var(--mexican-white), var(--mexican-red));
}

.signal-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.status-pill {
  padding: 0.4rem 0.55rem;
  border: 1px solid rgba(0, 255, 136, 0.34);
  border-radius: 4px;
  color: var(--terminal-green);
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.72rem;
  font-weight: 800;
}

.status-pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--terminal-green);
  box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.45);
  animation: status-pulse 1.8s ease-out infinite;
}

@keyframes status-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.45);
  }
  100% {
    box-shadow: 0 0 0 18px rgba(0, 255, 136, 0);
  }
}

.signal-stack {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.signal-stack span {
  display: block;
  padding: 0.78rem 0.9rem;
  border-left: 3px solid var(--mexican-green-light);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.76);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-stack span:nth-child(2n) {
  border-left-color: var(--mexican-red);
}

.signal-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.declaration-section,
.access-section,
.live-proof-section,
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}

.declaration-section {
  background: var(--light-bg);
  color: #1a1a1a;
}

.access-section {
  background:
    linear-gradient(90deg, rgba(0, 104, 71, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(0, 104, 71, 0.05) 1px, transparent 1px),
    #ffffff;
  background-size: 42px 42px;
  color: #1a1a1a;
}

.live-proof-section {
  background:
    linear-gradient(180deg, #050505 0%, #101010 100%);
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(0, 104, 71, 0.24), transparent 36%),
    linear-gradient(315deg, rgba(206, 17, 38, 0.22), transparent 40%),
    #080808;
  text-align: center;
}

.declaration-section > .container,
.access-section > .container,
.live-proof-section > .container {
  position: relative;
  z-index: 1;
}

.section-header {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-header h2,
.access-copy h2,
.contact-section h2 {
  margin-top: 0.6rem;
  margin-bottom: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-header p:not(.section-kicker),
.access-copy p,
.contact-section p {
  color: rgba(26, 26, 26, 0.66);
  font-size: 1.05rem;
}

.live-proof-header p:not(.section-kicker),
.contact-section p {
  color: var(--text-muted);
}

.red-line {
  display: block;
  width: 52px;
  height: 4px;
  margin-bottom: 1.15rem;
  background: var(--mexican-red);
}

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

.principle-card {
  min-height: 22rem;
  padding: 1.5rem;
  border-top: 4px solid var(--mexican-green);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.09);
}

.principle-card:nth-child(2) {
  border-top-color: var(--mexican-red);
}

.principle-index {
  display: block;
  color: var(--mexican-red);
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
}

.principle-card i {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--mexican-green);
  font-size: 1.9rem;
}

.principle-card h3 {
  margin-bottom: 0.85rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.25;
}

.principle-card p {
  color: rgba(26, 26, 26, 0.66);
  font-size: 0.96rem;
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 4rem;
  align-items: center;
}

.access-copy p + p {
  margin-top: 1rem;
}

.access-matrix {
  display: grid;
  gap: 0.72rem;
}

.matrix-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  min-height: 4.4rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--mexican-green);
  border-radius: 6px;
  background: #101010;
  color: var(--mexican-white);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
}

.matrix-row:nth-child(2n) {
  border-left-color: var(--mexican-red);
}

.matrix-row span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.matrix-row strong {
  color: var(--terminal-green);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  text-align: right;
}

.matrix-row-live {
  border-left-color: var(--mexican-white);
  background: linear-gradient(90deg, var(--mexican-green), #111 48%, var(--mexican-red));
}

.terminal-frame {
  overflow: hidden;
  border: 1px solid rgba(0, 255, 136, 0.18);
  border-radius: 8px;
  background: #050505;
  box-shadow:
    0 34px 96px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(255, 255, 255, 0.035) inset;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.8rem;
  padding: 0.72rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: #171717;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red {
  background: #ff5f57;
}

.dot-yellow {
  background: #ffbd2e;
}

.dot-green-dot {
  background: #28c840;
}

.terminal-title {
  margin-left: 0.45rem;
  color: rgba(255, 255, 255, 0.45);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.terminal-command,
.terminal-output {
  font-family: 'Courier New', Courier, monospace;
}

.terminal-command {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  padding: 1rem 1.15rem 0.5rem;
  color: var(--terminal-green);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.t-prompt {
  color: var(--mexican-green-light);
}

#health-command {
  color: var(--mexican-white);
}

.terminal-output {
  min-height: 27rem;
  padding: 0.5rem 1.15rem 1.2rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  line-height: 1.35;
  white-space: pre;
}

.ansi-bold {
  font-weight: 900;
}

.ansi-dim {
  opacity: 0.62;
}

.ansi-fg-green {
  color: #006847;
}

.ansi-fg-brightgreen {
  color: #00ff88;
}

.ansi-fg-white {
  color: #ffffff;
}

.ansi-fg-red {
  color: #ce1126;
}

.ansi-fg-gold {
  color: #ffd60a;
}

.ansi-fg-steel {
  color: #8aa0af;
}

.ansi-bg-green {
  background: #006847;
}

.ansi-bg-white {
  background: #ffffff;
}

.ansi-bg-red {
  background: #ce1126;
}

.contact-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.contact-manifesto {
  color: rgba(255, 255, 255, 0.45) !important;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.92rem !important;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.large-green {
  box-shadow: 0 0 38px rgba(0, 104, 71, 0.34);
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
}

.footer-flag {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 5px;
}

.footer-flag span:nth-child(1) {
  background: var(--mexican-green);
}

.footer-flag span:nth-child(2) {
  background: var(--mexican-white);
}

.footer-flag span:nth-child(3) {
  background: var(--mexican-red);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.86rem;
}

.cursor-trail-particle {
  position: fixed;
  z-index: 9997;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
}

.ambient-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

@keyframes ambient-float {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
  15%, 85% {
    opacity: var(--ap-alpha, 0.18);
  }
  100% {
    opacity: 0;
    transform: translateY(-110vh) scale(0.5);
  }
}

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

@media (max-width: 992px) {
  body {
    cursor: auto;
  }

  #cursor-dot,
  #cursor-ring {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .mission-hero {
    min-height: auto;
    padding: 8rem 0 5rem;
  }

  .mission-shell,
  .access-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .mission-title {
    font-size: 3.45rem;
  }

  .section-header h2,
  .access-copy h2,
  .contact-section h2 {
    font-size: 2.45rem;
  }

  .flag-rails {
    display: none;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 1rem;
  }

  .mission-title {
    font-size: 2.75rem;
  }

  .mission-sub {
    font-size: 1.02rem;
  }

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

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

  .matrix-row {
    grid-template-columns: 1fr;
  }

  .matrix-row strong {
    text-align: left;
  }

  .terminal-command {
    font-size: 0.78rem;
  }

  .terminal-output {
    min-height: 21rem;
    padding: 0.35rem 0.6rem 0.9rem;
    font-size: 0.42rem;
    line-height: 1.32;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 460px) {
  .mission-title {
    font-size: 2.35rem;
  }

  .section-header h2,
  .access-copy h2,
  .contact-section h2 {
    font-size: 2rem;
  }

  .cta-button {
    width: 100%;
  }

  .mno-nav {
    max-width: 100%;
  }

  .mno-link {
    font-size: 2.05rem;
  }

  .mobile-nav-overlay {
    padding: 6rem 1.5rem 4rem;
  }

  .mno-tagline {
    left: 1.5rem;
  }

  .terminal-output {
    font-size: 0.36rem;
  }
}

@media (hover: none) {
  #cursor-dot,
  #cursor-ring {
    display: none;
  }

  body {
    cursor: auto;
  }
}

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