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

html {
  scroll-behavior: smooth;
}

body {
  background: #020202;
  color: #f5f5f5;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  -webkit-user-select: none;
  user-select: none;
}

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

img {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

.nav-brand img,
.creator-image img,
.hero-logo-stage,
.hero-watermark-logo,
.quote-logo-mark,
.socials img {
  pointer-events: none;
}

/* PAGE */

.about-page {
  min-height: 100vh;
  background: #020202;
  overflow: hidden;
}

/* NAV */

.nav {
  position: fixed;
  top: 42px;
  left: 52px;
  right: 52px;
  z-index: 20;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 12px;
}

.nav::before {
  content: "";
  position: absolute;
  inset: -42px -52px -24px;
  z-index: -1;

  background:
    linear-gradient(to bottom, rgba(2,2,2,0.86), rgba(2,2,2,0.34), transparent);

  pointer-events: none;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 300px;
  max-width: 300px;
  overflow: hidden;
  z-index: 21;
}

.nav-brand img {
  width: 44px;
  height: auto;
  flex-shrink: 0;
  opacity: 0.96;
}

.brand-name {
  display: inline-block;
  min-width: 190px;
  white-space: nowrap;
  overflow: hidden;
  font-size: 13px;
  text-transform: none;
  opacity: 0.95;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    letter-spacing 0.7s ease,
    filter 0.7s ease;
}

.brand-name.is-fading {
  opacity: 0;
  transform: translateY(-4px);
  filter: blur(4px);
}

.brand-name.is-mnvnti {
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.brand-name.is-aspire {
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

/* TRUE CENTRE NAVIGATION */

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(44px, 5vw, 82px);
  white-space: nowrap;
  z-index: 20;

  opacity: 1;
  filter: blur(0);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    filter 0.45s ease,
    visibility 0.45s ease;
}

.nav-links a {
  position: relative;
  opacity: 0.88;
  transition: opacity 0.25s ease;
}

.nav-links a:hover {
  opacity: 0.55;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 46px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(95,190,255,0.95), transparent);
  box-shadow: 0 0 16px rgba(95,190,255,0.85);
}

.nav.nav-minimal .nav-links {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  filter: blur(6px);
  pointer-events: none;
}

/* MENU BUTTON */

.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;

  min-width: 92px;
  height: 34px;

  background: transparent;
  border: 0;
  padding: 0;

  color: #fff;
  cursor: pointer;
  z-index: 21;
}

.menu-text {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(8px);
  filter: blur(4px);

  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    filter 0.35s ease;
}

.menu-lines {
  width: 38px;
  height: 24px;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;

  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.menu-lines span {
  display: block;
  height: 1px;
  width: 38px;
  background: #fff;
  opacity: 0.85;

  transition:
    transform 0.45s ease,
    opacity 0.35s ease,
    width 0.35s ease,
    background 0.35s ease;
}

.menu:hover .menu-lines {
  filter: drop-shadow(0 0 10px rgba(95,190,255,0.24));
}

.menu.is-open .menu-text {
  opacity: 0.82;
  transform: translateX(0);
  filter: blur(0);
}

.menu.is-open .menu-lines {
  transform: rotate(180deg);
}

.menu.is-open .menu-lines span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu.is-open .menu-lines span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.menu.is-open .menu-lines span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* SIDE LABEL */

.side-label {
  position: fixed;
  left: 46px;
  top: 50%;
  z-index: 15;

  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);

  display: inline-flex;
  align-items: center;
  gap: 10px;

  letter-spacing: 0.32em;
  font-size: 11px;
  text-transform: uppercase;
  opacity: 0.75;

  transition:
    opacity 0.35s ease,
    filter 0.45s ease,
    letter-spacing 0.45s ease;
}

.side-label:hover {
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(95,190,255,0.22));
}

#sideLabelName {
  display: inline-block;
  transition:
    opacity 0.65s ease,
    filter 0.65s ease,
    letter-spacing 0.65s ease;
}

#sideLabelName.is-fading {
  opacity: 0;
  filter: blur(4px);
}

#sideLabelName.is-aspire {
  letter-spacing: 0.12em;
  text-transform: lowercase;
}

#sideLabelName.is-nathan {
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.side-separator {
  opacity: 0.55;
}

/* HERO */

.about-hero {
  position: relative;
  min-height: 700px;
  padding: 155px 52px 84px;
  overflow: hidden;
  background: #020202;
}

.hero-bg {
  position: absolute;
  inset: -2px;
  z-index: 0;

  background-image: url("../images/about-mnvnti.png");
  background-size: cover;
  background-position: center center;
  transform: scale(1.025);
}

/* FULL DARK CINEMATIC VEIL */

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    radial-gradient(circle at 74% 44%, rgba(95,190,255,0.16), transparent 28%),
    radial-gradient(circle at 48% 40%, rgba(255,255,255,0.055), transparent 30%),
    linear-gradient(to right, rgba(2,2,2,0.98) 0%, rgba(2,2,2,0.84) 30%, rgba(2,2,2,0.50) 58%, rgba(2,2,2,0.70) 100%),
    linear-gradient(to bottom, rgba(2,2,2,0.46) 0%, rgba(2,2,2,0.28) 34%, rgba(2,2,2,0.82) 82%, #020202 100%);

  pointer-events: none;
}

/* EXTRA EDGE VIGNETTE */

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;

  background:
    linear-gradient(to bottom, rgba(2,2,2,0.82) 0%, transparent 18%, transparent 68%, #020202 100%),
    linear-gradient(to right, #020202 0%, transparent 14%, transparent 82%, rgba(2,2,2,0.92) 100%),
    radial-gradient(circle at center, transparent 34%, rgba(0,0,0,0.46) 100%);

  pointer-events: none;
}

/* HERO LOGO WATERMARK + SUBTLE RIPPLE */

.hero-logo-stage {
  position: absolute;
  right: clamp(118px, 13vw, 220px);
  top: 50%;
  z-index: 3;

  width: clamp(230px, 20vw, 340px);
  height: auto;

  transform: translateY(-42%);
  animation: aboutLogoFloat 9s ease-in-out infinite;
  pointer-events: none;
}

.hero-watermark-logo {
  position: relative;
  z-index: 3;

  width: 100%;
  height: auto;

  opacity: 0.86;

  filter:
    drop-shadow(0 34px 48px rgba(0,0,0,0.96))
    drop-shadow(0 0 26px rgba(95,190,255,0.12))
    drop-shadow(0 0 10px rgba(255,255,255,0.10));
}

.about-logo-ground-glow {
  position: absolute;
  left: 46%;
  top: 86%;
  z-index: 1;

  width: 62%;
  height: 14%;

  transform: translate(-50%, -50%);
  border-radius: 50%;

  background:
    radial-gradient(ellipse at center,
      rgba(95,190,255,0.18) 0%,
      rgba(95,190,255,0.10) 22%,
      rgba(95,190,255,0.045) 48%,
      transparent 76%
    );

  filter: blur(7px);
  opacity: 0.42;
  animation: aboutGroundGlow 6.5s ease-in-out infinite;
}

.about-logo-ripple {
  position: absolute;
  left: 46%;
  top: 86%;
  z-index: 2;

  width: 46%;
  height: 12%;

  border: 1px solid rgba(95,190,255,0.20);
  border-radius: 50%;

  transform: translate(-50%, -50%) scale(0.72);
  opacity: 0;

  box-shadow:
    0 0 12px rgba(95,190,255,0.08),
    inset 0 0 8px rgba(95,190,255,0.045);

  animation: aboutLogoRippleSubtle 7.2s ease-out infinite;
}

.about-logo-ripple::before {
  content: "";
  position: absolute;
  inset: 25%;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}

.about-logo-ripple::after {
  content: "";
  position: absolute;
  inset: 42%;
  border: 1px solid rgba(95,190,255,0.10);
  border-radius: 50%;
}

.about-logo-ripple.ripple-delay {
  animation-delay: 3.6s;
}

@keyframes aboutLogoFloat {
  0% {
    transform: translateY(-42%) translateX(0);
  }

  50% {
    transform: translateY(-43.5%) translateX(-3px);
  }

  100% {
    transform: translateY(-42%) translateX(0);
  }
}

@keyframes aboutGroundGlow {
  0%,
  100% {
    opacity: 0.30;
    transform: translate(-50%, -50%) scaleX(0.92);
  }

  50% {
    opacity: 0.50;
    transform: translate(-50%, -50%) scaleX(1.08);
  }
}

@keyframes aboutLogoRippleSubtle {
  0% {
    transform: translate(-50%, -50%) scale(0.72);
    opacity: 0;
  }

  18% {
    opacity: 0.42;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.34);
    opacity: 0;
  }
}

.about-hero-content {
  position: relative;
  z-index: 4;
  max-width: 820px;
  margin-left: 95px;
}

.page-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 12px;
  opacity: 0.72;
  margin-bottom: 26px;
}

.about-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 7.8vw, 118px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.01em;
  max-width: 830px;
  margin-bottom: 30px;
  text-shadow: 0 20px 38px rgba(0,0,0,0.8);
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 13px;
  line-height: 2;
  opacity: 0.86;
  max-width: 690px;
}

/* BLUE CINEMATIC DIVIDERS */

.blue-flash {
  width: min(460px, 100%);
  height: 1px;
  margin: 32px 0 36px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(255,255,255,0.08) 18%,
      rgba(95,190,255,0.42) 50%,
      rgba(255,255,255,0.08) 82%,
      transparent 100%
    );
  box-shadow:
    0 0 18px rgba(95,190,255,0.10),
    0 0 38px rgba(95,190,255,0.05);
}

.blue-flash::before {
  content: "";
  position: absolute;
  inset: -8px 0;
  background:
    radial-gradient(
      circle,
      rgba(95,190,255,0.34),
      rgba(95,190,255,0.10) 38%,
      transparent 70%
    );
  opacity: 0.35;
  filter: blur(8px);
  animation: dividerPulse 7s ease-in-out infinite;
}

.blue-flash::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -35%;
  width: 34%;
  height: 11px;
  background:
    radial-gradient(
      circle,
      rgba(140,220,255,1),
      rgba(95,190,255,0.55) 28%,
      rgba(95,190,255,0.16) 52%,
      transparent 76%
    );
  filter: blur(3px);
  animation: blueFlashMove 5.8s ease-in-out infinite;
}

.blue-flash.small {
  width: min(285px, 100%);
  margin: 24px 0 30px;
}

.blue-flash.center {
  margin-left: auto;
  margin-right: auto;
}

.blue-divider-wide {
  width: calc(100% - 104px);
  height: 1px;
  margin: 0 52px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(95,190,255,0.48),
      rgba(255,255,255,0.12),
      rgba(95,190,255,0.48),
      transparent
    );
  box-shadow:
    0 0 18px rgba(95,190,255,0.10),
    0 0 42px rgba(95,190,255,0.055);
}

.blue-divider-wide::after {
  content: "";
  position: absolute;
  top: -6px;
  left: -20%;
  width: 28%;
  height: 13px;
  background: radial-gradient(circle, rgba(120,210,255,0.95), rgba(95,190,255,0.22), transparent 72%);
  filter: blur(4px);
  animation: blueFlashMoveWide 7s ease-in-out infinite;
}

@keyframes blueFlashMove {
  0% {
    left: -35%;
    opacity: 0;
  }

  16% {
    opacity: 1;
  }

  48% {
    left: 102%;
    opacity: 0;
  }

  100% {
    left: 102%;
    opacity: 0;
  }
}

@keyframes blueFlashMoveWide {
  0% {
    left: -28%;
    opacity: 0;
  }

  18% {
    opacity: 0.9;
  }

  55% {
    left: 105%;
    opacity: 0;
  }

  100% {
    left: 105%;
    opacity: 0;
  }
}

@keyframes dividerPulse {
  0%, 100% {
    opacity: 0.18;
    transform: scaleX(0.96);
  }

  50% {
    opacity: 0.46;
    transform: scaleX(1.04);
  }
}

.about-intro-copy {
  max-width: 650px;
}

.about-intro-copy p {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.76);
}

/* CREATOR */

.creator-section {
  margin: 20px 52px 0;
  border: 1px solid rgba(255,255,255,0.22);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 410px;
  background:
    radial-gradient(circle at 68% 50%, rgba(255,255,255,0.025), transparent 34%),
    rgba(255,255,255,0.008);
}

.creator-image {
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,0.20);
}

.creator-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) contrast(1.06);
}

.creator-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.36), transparent 48%),
    radial-gradient(circle at 70% 30%, rgba(95,190,255,0.10), transparent 24%);
  pointer-events: none;
}

.creator-copy {
  padding: clamp(42px, 5vw, 68px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.creator-copy span {
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 12px;
  opacity: 0.74;
}

.creator-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 0.16em;
  margin-top: 18px;
  text-transform: uppercase;
}

.creator-copy p {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.72);
}

.creator-copy strong {
  color: rgba(255,255,255,0.92);
  font-weight: 400;
}

/* QUOTE */

.quote-panel {
  margin: 20px 52px 0;
  min-height: 120px;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 72px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 100%, rgba(95,190,255,0.12), transparent 28%),
    rgba(255,255,255,0.006);
}

.quote-logo-mark {
  position: absolute;
  left: 42px;
  top: 50%;
  width: 58px;
  height: auto;
  transform: translateY(-50%);
  opacity: 0.12;
  filter: drop-shadow(0 0 18px rgba(95,190,255,0.10));
}

.quote-panel p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: 0.06em;
  text-align: center;
  color: rgba(255,255,255,0.86);
}

.quote-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  color: rgba(255,255,255,0.25);
}

/* VALUES */

.values-grid {
  margin: 20px 52px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.value-card {
  min-height: 198px;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 36px 24px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(95,190,255,0.055), transparent 30%),
    rgba(255,255,255,0.006);
  transition:
    transform 0.3s ease,
    border 0.3s ease,
    background 0.3s ease;
}

.value-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.34);
  background:
    radial-gradient(circle at 50% 42%, rgba(95,190,255,0.10), transparent 32%),
    rgba(255,255,255,0.012);
}

.value-icon {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0.86;
}

.value-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  margin-bottom: 18px;
}

.value-card p {
  max-width: 230px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.68);
}

/* MANIFESTO */

.manifesto {
  margin: 20px 52px 0;
  border: 1px solid rgba(255,255,255,0.18);
  min-height: 245px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 58px;
  padding: 54px 62px;
  background:
    radial-gradient(circle at 18% 50%, rgba(95,190,255,0.10), transparent 26%),
    radial-gradient(circle at 85% 50%, rgba(255,255,255,0.035), transparent 28%),
    rgba(255,255,255,0.006);
}

.manifesto span {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 12px;
  opacity: 0.68;
  margin-bottom: 22px;
}

.manifesto h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.manifesto p {
  max-width: 650px;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.035em;
  color: rgba(255,255,255,0.74);
}

/* FOOTER */

footer {
  padding: 44px 52px 38px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 11px;
  opacity: 0.78;
}

.socials {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 34px;
  letter-spacing: 0;
}

.socials a {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.socials a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.socials img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  filter: none;
}

.built {
  justify-self: end;
  text-align: right;
  line-height: 2;
}

/* TABLET */

@media (max-width: 1024px) {
  .nav {
    left: 34px;
    right: 34px;
  }

  .nav-brand {
    width: 250px;
    max-width: 250px;
  }

  .nav-brand img {
    width: 38px;
  }

  .brand-name {
    min-width: 160px;
    font-size: 11px;
  }

  .nav-links {
    gap: 36px;
  }

  .about-hero-content {
    margin-left: 40px;
  }

  .hero-logo-stage {
    right: clamp(60px, 9vw, 120px);
    top: 50%;
    width: clamp(180px, 24vw, 260px);
    transform: translateY(-42%);
  }

  .hero-watermark-logo {
    opacity: 0.78;
  }

  .creator-section {
    grid-template-columns: 1fr;
  }

  .creator-image {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.20);
  }

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

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

/* MOBILE */

@media (max-width: 760px) {
  .nav {
    top: 24px;
    left: 22px;
    right: 22px;
    height: 42px;
  }

  .nav-brand {
    width: auto;
    max-width: 220px;
    gap: 14px;
  }

  .nav-brand img {
    width: 34px;
  }

  .brand-name {
    min-width: 130px;
    font-size: 10px;
  }

  .nav-links {
    display: none;
  }

  .menu {
    min-width: auto;
  }

  .menu-text {
    display: none;
  }

  .menu-lines {
    width: 34px;
  }

  .menu-lines span {
    width: 34px;
  }

  .side-label {
    display: none;
  }

  .about-hero {
    min-height: auto;
    padding: 120px 22px 56px;
  }

  .hero-bg {
    background-image: url("../images/about-mnvnti.png");
    background-position: center top;
  }

  .about-hero::before {
    background:
      radial-gradient(circle at 72% 26%, rgba(95,190,255,0.12), transparent 30%),
      linear-gradient(to bottom, rgba(2,2,2,0.66) 0%, rgba(2,2,2,0.72) 42%, rgba(2,2,2,0.94) 82%, #020202 100%),
      linear-gradient(to right, rgba(2,2,2,0.82), transparent 55%, rgba(2,2,2,0.74));
  }

  .about-hero::after {
    background:
      linear-gradient(to bottom, rgba(2,2,2,0.76) 0%, transparent 18%, #020202 100%),
      radial-gradient(circle at center, transparent 28%, rgba(0,0,0,0.52) 100%);
  }

  .hero-logo-stage {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: clamp(142px, 38vw, 205px);
    margin: 34px auto 0;
    display: block;
    animation: aboutLogoFloatMobile 8s ease-in-out infinite;
  }

  .hero-watermark-logo {
    opacity: 0.82;
  }

  .about-logo-ground-glow {
    top: 88%;
    width: 58%;
    height: 12%;
    opacity: 0.34;
  }

  .about-logo-ripple {
    top: 88%;
    width: 48%;
    height: 12%;
  }

  @keyframes aboutLogoFloatMobile {
    0% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-6px);
    }

    100% {
      transform: translateY(0);
    }
  }

  .about-hero-content {
    margin-left: 0;
    max-width: 100%;
  }

  .page-label {
    font-size: 10px;
    letter-spacing: 0.30em;
  }

  .about-hero h1 {
    font-size: clamp(52px, 15vw, 78px);
  }

  .hero-kicker {
    font-size: 11px;
    letter-spacing: 0.22em;
  }

  .blue-flash {
    width: 100%;
  }

  .blue-divider-wide {
    width: calc(100% - 44px);
    margin: 0 22px;
  }

  .about-intro-copy p {
    font-size: 14px;
  }

  .creator-section {
    margin: 18px 22px 0;
  }

  .creator-image {
    min-height: 300px;
  }

  .creator-copy {
    padding: 34px 24px;
  }

  .creator-copy span {
    letter-spacing: 0.32em;
  }

  .creator-copy h2 {
    font-size: 25px;
    line-height: 1.5;
  }

  .creator-copy p {
    font-size: 14px;
  }

  .quote-panel {
    margin: 18px 22px 0;
    min-height: 130px;
    padding: 24px 18px;
    gap: 14px;
  }

  .quote-logo-mark {
    left: 18px;
    width: 42px;
    opacity: 0.08;
  }

  .quote-mark {
    font-size: 34px;
  }

  .values-grid {
    margin: 18px 22px 0;
    grid-template-columns: 1fr;
  }

  .manifesto {
    margin: 18px 22px 0;
    grid-template-columns: 1fr;
    padding: 36px 24px;
    gap: 24px;
  }

  .manifesto p {
    font-size: 14px;
  }

  footer {
    padding: 44px 22px 38px;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .socials {
    justify-self: start;
  }

  .built {
    justify-self: start;
    text-align: left;
  }
}

/* VERY SMALL PHONES */

@media (max-width: 420px) {
  .brand-name {
    display: none;
  }

  .value-card {
    min-height: 165px;
  }

  .about-hero h1 {
    font-size: 48px;
  }
}
/* =========================================================
   GLOBAL MOBILE MENU FIX
   Paste at the bottom of each page CSS file
========================================================= */

@media (max-width: 760px) {
  .nav {
    position: fixed;
    z-index: 100;
  }

  .nav::before {
    content: "";
    position: absolute;
    inset: -28px -22px -20px;
    z-index: -1;
    background:
      linear-gradient(to bottom, rgba(2,2,2,0.90), rgba(2,2,2,0.38), transparent);
    pointer-events: none;
  }

  .menu {
    position: relative;
    z-index: 104;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    min-width: 42px;
    height: 34px;
  }

  .menu-text {
    display: inline-block;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(8px);
    filter: blur(4px);
    transition:
      opacity 0.35s ease,
      transform 0.35s ease,
      filter 0.35s ease;
  }

  .menu-lines {
    width: 34px;
    height: 24px;
    position: relative;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    transition:
      transform 0.45s ease,
      filter 0.45s ease;
  }

  .menu-lines span {
    display: block;
    height: 1px;
    width: 34px;
    background: #fff;
    opacity: 1;
    box-shadow: 0 0 10px rgba(255,255,255,0.16);
    transition:
      transform 0.45s ease,
      opacity 0.35s ease,
      width 0.35s ease;
  }

  .menu.is-open .menu-text {
    opacity: 0.82;
    transform: translateX(0);
    filter: blur(0);
  }

  .menu.is-open .menu-lines {
    transform: rotate(180deg);
  }

  .menu.is-open .menu-lines span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu.is-open .menu-lines span:nth-child(2) {
    opacity: 0;
    width: 0;
  }

  .menu.is-open .menu-lines span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(340px, 84vw);
    height: 100svh;
    transform: translateX(100%);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 34px;
    padding: 96px 34px 44px;
    background:
      radial-gradient(circle at 70% 22%, rgba(95,190,255,0.12), transparent 34%),
      linear-gradient(to bottom, rgba(8,8,8,0.985), rgba(2,2,2,0.965));
    border-left: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    filter: blur(8px);
    z-index: 102;
    transition:
      transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.45s ease,
      visibility 0.45s ease,
      filter 0.45s ease;
  }

  .nav-links::before {
    content: "MNVNTI";
    position: absolute;
    top: 34px;
    left: 34px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    letter-spacing: 0.42em;
    opacity: 0.42;
  }

  .nav-links a {
    position: relative;
    font-size: 13px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    opacity: 0.9;
    transform: translateX(14px);
    transition:
      opacity 0.3s ease,
      transform 0.45s ease;
  }

  .nav-links a:hover {
    opacity: 0.58;
  }

  .nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -11px;
    width: 54px;
    height: 1px;
    transform: none;
    background: linear-gradient(90deg, rgba(95,190,255,0.95), transparent);
    box-shadow: 0 0 16px rgba(95,190,255,0.85);
  }

  .nav.nav-minimal .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    filter: blur(0);
    pointer-events: auto;
  }

  .nav.nav-minimal .nav-links a {
    transform: translateX(0);
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  body.mobile-menu-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 90;
    background:
      radial-gradient(circle at 70% 30%, rgba(95,190,255,0.07), transparent 36%),
      rgba(0,0,0,0.58);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
}

@media (min-width: 761px) {
  body.mobile-menu-open {
    overflow: auto;
  }

  body.mobile-menu-open::after {
    display: none;
  }
}

/* about-ripple-3 alignment safety */
@media (max-width: 760px) {
  .about-logo-ground-glow {
    left: 46%;
    top: 88%;
    width: 58%;
    height: 12%;
    opacity: 0.34;
  }

  .about-logo-ripple {
    left: 46%;
    top: 88%;
    width: 48%;
    height: 12%;
  }
}

/* =========================================================
   ABOUT HERO FIRST LOAD POSITION FIX
   Keeps the logo/ripple placement stable before images/fonts finish loading.
========================================================= */

.about-hero {
  position: relative !important;
  min-height: 100svh !important;
  overflow: hidden !important;
  contain: layout paint !important;
}

.hero-logo-stage {
  position: absolute !important;
  right: clamp(118px, 13vw, 220px) !important;
  top: 50% !important;
  width: clamp(230px, 20vw, 340px) !important;
  aspect-ratio: 1 / 1.24 !important;
  transform: translateY(-50%) !important;
  transform-origin: center center !important;
  will-change: transform !important;
}

.hero-watermark-logo {
  display: block !important;
  width: 100% !important;
  height: auto !important;
}

.about-logo-ground-glow,
.about-logo-ripple {
  left: 46% !important;
  top: 82% !important;
}

/* Pause the floating animation until the page has settled.
   JS adds .about-ready almost instantly after load, preventing the first-open jump. */
body:not(.about-ready) .hero-logo-stage {
  animation: none !important;
  transform: translateY(-50%) !important;
}

body.about-ready .hero-logo-stage {
  animation: aboutLogoFloat 9s ease-in-out infinite !important;
}

@media (max-width: 1024px) {
  .hero-logo-stage {
    right: clamp(60px, 9vw, 120px) !important;
    top: 50% !important;
    width: clamp(180px, 24vw, 260px) !important;
    transform: translateY(-50%) !important;
  }
}

@media (max-width: 760px) {
  .about-hero {
    min-height: auto !important;
    contain: none !important;
  }

  .hero-logo-stage {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    width: clamp(142px, 38vw, 205px) !important;
    aspect-ratio: auto !important;
    margin: 34px auto 0 !important;
    transform: none !important;
  }

  body:not(.about-ready) .hero-logo-stage,
  body.about-ready .hero-logo-stage {
    transform: none !important;
  }

  .about-logo-ground-glow,
  .about-logo-ripple {
    left: 46% !important;
    top: 88% !important;
  }
}

/* =========================================================
   MNVNTI GLOBAL RESPONSIVE + MOBILE MENU SAFETY PATCH
========================================================= */

html,
body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-width: 0 !important;
}

main,
section,
footer,
nav,
div {
  max-width: 100%;
}

img,
video,
canvas,
svg,
iframe {
  max-width: 100%;
}

button,
input,
textarea,
select {
  max-width: 100%;
}

.nav {
  max-width: calc(100% - 104px);
}

@media (max-width: 1024px) {
  .nav {
    max-width: calc(100% - 68px);
  }

  .nav-links {
    gap: clamp(24px, 4vw, 42px) !important;
  }

  .brand-name {
    min-width: 130px !important;
  }

  h1 {
    overflow-wrap: break-word;
  }
}

@media (max-width: 760px) {
  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .nav {
    position: fixed !important;
    top: max(22px, env(safe-area-inset-top)) !important;
    left: 20px !important;
    right: 20px !important;
    width: auto !important;
    max-width: calc(100% - 40px) !important;
    height: 42px !important;
    z-index: 200000 !important;
    overflow: visible !important;
    pointer-events: auto !important;
  }

  .nav::before {
    content: "" !important;
    position: absolute !important;
    inset: -26px -20px -18px !important;
    z-index: -1 !important;
    background:
      linear-gradient(to bottom, rgba(2,2,2,0.92), rgba(2,2,2,0.34), transparent) !important;
    pointer-events: none !important;
  }

  .nav-brand {
    position: relative !important;
    z-index: 200001 !important;
    width: auto !important;
    max-width: calc(100% - 70px) !important;
    min-width: 0 !important;
    gap: 13px !important;
  }

  .nav-brand img {
    width: 34px !important;
    min-width: 34px !important;
  }

  .brand-name {
    min-width: 0 !important;
    max-width: 150px !important;
    font-size: 10px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .menu {
    position: fixed !important;
    top: max(26px, calc(env(safe-area-inset-top) + 4px)) !important;
    right: 20px !important;
    z-index: 200003 !important;
    width: 46px !important;
    min-width: 46px !important;
    height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    background: rgba(2,2,2,0.18) !important;
    border: 0 !important;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .menu-text {
    display: none !important;
  }

  .menu-lines {
    position: relative !important;
    z-index: 200004 !important;
    width: 34px !important;
    height: 24px !important;
    display: inline-flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 7px !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .menu-lines span {
    display: block !important;
    width: 34px !important;
    height: 1px !important;
    background: rgba(255,255,255,0.96) !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow:
      0 0 10px rgba(255,255,255,0.20),
      0 0 18px rgba(95,190,255,0.18) !important;
  }

  .menu.is-open .menu-lines span:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
  }

  .menu.is-open .menu-lines span:nth-child(2) {
    opacity: 0 !important;
    width: 0 !important;
  }

  .menu.is-open .menu-lines span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
  }

  .nav-links {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    width: min(340px, 84vw) !important;
    max-width: 84vw !important;
    height: 100svh !important;
    transform: translateX(105%) !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 34px !important;
    padding: 96px 34px 44px !important;
    background:
      radial-gradient(circle at 72% 20%, rgba(95,190,255,0.12), transparent 34%),
      linear-gradient(to bottom, rgba(5,5,5,0.998), rgba(0,0,0,0.996)) !important;
    border-left: 1px solid rgba(255,255,255,0.14) !important;
    box-shadow: -34px 0 90px rgba(0,0,0,0.76) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: 200002 !important;
    transition:
      transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.45s ease,
      visibility 0.45s ease !important;
  }

  .nav.nav-minimal .nav-links {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    filter: none !important;
  }

  .nav-links::before {
    content: "MNVNTI" !important;
    position: absolute !important;
    top: 34px !important;
    left: 34px !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 18px !important;
    letter-spacing: 0.42em !important;
    opacity: 0.42 !important;
  }

  .nav-links a {
    position: relative !important;
    opacity: 0 !important;
    transform: translateX(18px) !important;
    color: rgba(255,255,255,0.92) !important;
    font-size: 13px !important;
    letter-spacing: 0.34em !important;
    text-transform: uppercase !important;
    filter: none !important;
    transition:
      opacity 0.35s ease,
      transform 0.45s ease !important;
  }

  .nav.nav-minimal .nav-links a {
    opacity: 0.92 !important;
    transform: translateX(0) !important;
  }

  .nav-links a.active::after {
    left: 0 !important;
    bottom: -11px !important;
    width: 54px !important;
    transform: none !important;
    background: linear-gradient(90deg, rgba(95,190,255,0.95), transparent) !important;
  }

  body.mobile-menu-open {
    overflow: hidden !important;
    touch-action: none;
  }

  .side-label,
  .side-label-left,
  .side-label-right {
    display: none !important;
  }

  h1,
  .title {
    max-width: 100% !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }

  .work-grid,
  .grid,
  .support-card-grid,
  .connect-grid,
  .field-grid,
  .filter-row {
    max-width: 100% !important;
  }

  .primary-support-btn,
  .outline-btn,
  .submit-btn,
  .support-btn,
  .intro-toggle,
  .motion-toggle,
  .sound-toggle {
    max-width: calc(100vw - 44px) !important;
    min-width: 0 !important;
  }

  .contact-hero,
  .support-hero,
  .about-hero,
  .work-hero,
  .hero {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .contact-form,
  .support-panel,
  .quote-panel,
  .creator-section,
  .connect-section {
    max-width: calc(100vw - 44px) !important;
  }
}

/* Homepage intro sound prompt */
.intro-sound-prompt {
  position: fixed;
  left: 50%;
  bottom: max(54px, calc(env(safe-area-inset-bottom) + 42px));
  z-index: 40;
  transform: translateX(-50%);
  border: 1px solid rgba(95,190,255,0.45);
  background:
    radial-gradient(circle at 50% 0%, rgba(95,190,255,0.16), transparent 46%),
    rgba(0,0,0,0.48);
  color: #f5f5f5;
  padding: 18px 24px;
  min-width: 260px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  cursor: pointer;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 0 28px rgba(95,190,255,0.10),
    inset 0 0 24px rgba(95,190,255,0.04);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    filter 0.6s ease;
}

.intro-sound-prompt.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  filter: blur(6px);
}

.intro-sound-prompt .prompt-main {
  position: relative;
  z-index: 2;
  font-size: 11px;
}

.intro-sound-prompt .prompt-sub {
  position: relative;
  z-index: 2;
  font-size: 9px;
  opacity: 0.58;
}

.prompt-ripple {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 88%;
  height: 54%;
  border: 1px solid rgba(95,190,255,0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.74);
  opacity: 0;
  animation: introPromptRipple 2.7s ease-out infinite;
}

@keyframes introPromptRipple {
  0% {
    transform: translate(-50%, -50%) scale(0.72);
    opacity: 0;
  }

  28% {
    opacity: 0.7;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

@media (max-width: 760px) {
  .intro-sound-prompt {
    bottom: max(32px, calc(env(safe-area-inset-bottom) + 28px));
    width: calc(100vw - 44px);
    min-width: 0;
    padding: 16px 18px;
  }
}


/* =========================================================
   MNVNTI STABLE RESPONSIVE PATCH
   Minimal patch: prevents mobile/tablet overflow without redesigning layout.
========================================================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

img,
video,
canvas,
svg,
iframe {
  max-width: 100%;
}

button,
input,
select,
textarea {
  max-width: 100%;
}

@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .side-label,
  .side-label-left,
  .side-label-right {
    display: none !important;
  }

  h1,
  .title {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .contact-hero,
  .support-hero,
  .about-hero,
  .work-hero,
  .hero {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .contact-form,
  .support-panel,
  .quote-panel,
  .creator-section,
  .connect-section {
    max-width: calc(100vw - 44px);
  }
}

/* MNVNTI minor animation restore */
#sideLabelName {
  display: inline-block;
  transition:
    opacity 0.65s ease,
    filter 0.65s ease,
    letter-spacing 0.65s ease;
}

#sideLabelName.is-fading {
  opacity: 0;
  filter: blur(4px);
}

#sideLabelName.is-aspire {
  letter-spacing: 0.12em;
  text-transform: lowercase;
}

#sideLabelName.is-nathan {
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.side-separator {
  opacity: 0.55;
}

/* Side label MNVNTI animation state */
#sideLabelName.is-mnvnti {
  letter-spacing: 0.36em;
  text-transform: uppercase;
}
