/* styles.css */

/*
LLM editing note:
When making CSS changes, return the complete affected section(s), not tiny isolated edits.
Preserve section labels.
Avoid duplicate mobile overrides.
Keep signal animation sections grouped together.
*/

/* # Theme Tokens */

:root {
  --bg: #030307;
  --text: #f8fafc;
  --muted: #a7adbd;
  --purple: #7c3cff;
  --purpleSoft: #b985ff;
  --gold: #d9a441;
  --blue: #2e9cff;
  --orange: #ff7a1a;
  --line: rgba(255, 255, 255, 0.14);
  --panel: rgba(255, 255, 255, 0.06);
}

/* # Base Reset */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
          radial-gradient(circle at 80% 10%, rgba(124, 60, 255, 0.22), transparent 34%),
          radial-gradient(circle at 8% 38%, rgba(217, 164, 65, 0.11), transparent 28%),
          linear-gradient(135deg, #030307 0%, #080711 48%, #020204 100%);
  overflow-x: hidden;
}

/* # Background Canvas + Texture */

#signalCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
}

#signalCanvas.isBackgroundActive {
  opacity: 1;
}

.pageNoise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.08;
  background-image:
          linear-gradient(rgba(255,255,255,0.09) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

/* # Page Shell */

.siteShell {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 76px;
}

/* # Top Navigation */

.topNav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  padding: 18px 0;
}

.brandMark {
  position: relative;
  z-index: 2;
  color: white;
  font-size: clamp(1.75rem, 2.8vw, 2.4rem);
  font-weight: 950;
  letter-spacing: 0.42em;
  line-height: 1;
  text-shadow:
          0 0 22px rgba(124, 60, 255, 0.18),
          0 0 42px rgba(124, 60, 255, 0.08);
}

@media (hover: hover) and (pointer: fine) {
  .brandMark {
    transition:
            letter-spacing 220ms ease,
            text-shadow 220ms ease,
            transform 220ms ease;
  }

  .brandMark:hover {
    transform: translateY(-1px);
    letter-spacing: 0.46em;
    text-shadow:
            0 0 28px rgba(124, 60, 255, 0.26),
            0 0 60px rgba(124, 60, 255, 0.14);
  }
}

.navLinks {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 118px;
}

.navLinks a {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.navLinks a:hover {
  color: white;
  opacity: 1;
}

/* ▶ Floating avatar mark */

.avatarBadge {
  position: absolute;
  top: 50%;
  right: 0;
  width: 70px;
  height: 70px;
  transform: translateY(-50%);
  pointer-events: none;
}

.avatarBadge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
          drop-shadow(0 0 24px rgba(124, 60, 255, 0.42))
          drop-shadow(0 0 60px rgba(124, 60, 255, 0.18));
}

/* # Hero Layout */

.hero {
  min-height: calc(100dvh - 92px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 56px;
  padding: 24px 0 52px;
}

.heroCopy {
  position: relative;
  z-index: 2;
}

/* # Hero Typography */

.eyebrow,
.sectionLabel {
  margin: 0;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ▶ Vision / Mission / Values divider */

.contentBlock .sectionLabel,
.valuesSection .sectionLabel {
  position: relative;
  display: inline-block;
  padding-bottom: 22px;
}

.contentBlock .sectionLabel::after,
.valuesSection .sectionLabel::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 2px;
  border-radius: 999px;
  background:
          linear-gradient(
                  90deg,
                  rgba(217, 164, 65, 1),
                  rgba(217, 164, 65, 0.42)
          );
  box-shadow:
          0 0 12px rgba(217, 164, 65, 0.24);
}

h1 {
  max-width: 820px;
  margin: 18px 0 22px;
  font-size: clamp(2.8rem, 6.2vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h1 span,
.contentBlock h2 span {
  color: var(--purpleSoft);
  text-shadow: 0 0 28px rgba(124, 60, 255, 0.42);
}

.heroText {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
  line-height: 1.6;
}

/* # Hero CTA */

.primaryButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 32px;
  padding: 0 28px;
  border-radius: 999px;
  color: white;
  font-size: 1rem;
  font-weight: 850;
  text-decoration: none;
  background: linear-gradient(135deg, var(--purple), #aa55ff);
  box-shadow: 0 0 36px rgba(124, 60, 255, 0.44);
}

.primaryButton {
  transition:
          transform 180ms ease,
          box-shadow 220ms ease,
          filter 220ms ease,
          background 220ms ease;
}

.primaryButton:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #8d53ff, #bc74ff);
  box-shadow:
          0 0 48px rgba(124, 60, 255, 0.52),
          0 14px 36px rgba(124, 60, 255, 0.24);
  filter: brightness(1.04);
}

/* # Signal Panel */

.signalPanel {
  min-height: clamp(300px, 38vh, 430px);
  opacity: 0;
  transform: scale(0.94) translateY(18px);
  transform-origin: center right;
  margin-top: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  background:
          radial-gradient(circle at 72% 50%, rgba(46, 156, 255, 0.09), transparent 34%),
          radial-gradient(circle at 38% 50%, rgba(217, 164, 65, 0.09), transparent 28%),
          linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
  box-shadow:
          inset 0 1px 0 rgba(255,255,255,0.12),
          0 24px 70px rgba(0,0,0,0.34);
  overflow: hidden;
  transition: opacity 700ms ease, transform 700ms ease;
}

.signalPanel.isVisible {
  opacity: 0.78;
  transform: scale(0.94);
}

.signalPanel {
  transition:
          transform 240ms ease,
          border-color 240ms ease,
          box-shadow 240ms ease,
          background 240ms ease,
          opacity 240ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .signalPanel:hover {
    transform: scale(0.955) translateY(-4px);
    border-color: rgba(217, 164, 65, 0.22);
    background:
            radial-gradient(circle at 72% 50%, rgba(46, 156, 255, 0.14), transparent 34%),
            radial-gradient(circle at 38% 50%, rgba(217, 164, 65, 0.14), transparent 28%),
            linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.028));
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,0.16),
            0 34px 90px rgba(0,0,0,0.42),
            0 0 48px rgba(124, 60, 255, 0.12);
  }
}

/* # Signal Diagram */

.signalDiagram {
  position: relative;
  height: 100%;
  min-height: clamp(300px, 38vh, 430px);
}

.signalSvg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(300px, 38vh, 430px);
  overflow: visible;
}

/* # Signal Chaos Inputs */

.chaosDots circle {
  fill: var(--gold);
  opacity: 0.65;
  filter: drop-shadow(0 0 10px rgba(217, 164, 65, 0.45));
  animation: chaosFloat 5.6s ease-in-out infinite alternate;
}

.chaosDots circle:nth-child(2n) {
  fill: var(--blue);
  filter: drop-shadow(0 0 10px rgba(46, 156, 255, 0.38));
}

.chaosDots circle:nth-child(3n) {
  fill: var(--orange);
  filter: drop-shadow(0 0 10px rgba(255, 122, 26, 0.38));
}

.chaosDots circle:nth-child(1) { animation-delay: -0.2s; }
.chaosDots circle:nth-child(2) { animation-delay: -0.9s; }
.chaosDots circle:nth-child(3) { animation-delay: -1.6s; }
.chaosDots circle:nth-child(4) { animation-delay: -2.3s; }
.chaosDots circle:nth-child(5) { animation-delay: -3s; }
.chaosDots circle:nth-child(6) { animation-delay: -3.7s; }
.chaosDots circle:nth-child(7) { animation-delay: -4.4s; }
.chaosDots circle:nth-child(8) { animation-delay: -5.1s; }

.chaosThreads path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-dasharray: 7 18;
  animation: threadPull 3.8s linear infinite;
}

.chaosThreads path:nth-child(2n) {
  stroke: rgba(46, 156, 255, 0.28);
}

.chaosThreads path:nth-child(3n) {
  stroke: rgba(217, 164, 65, 0.32);
}

/* # Signal Core */

.coreDot {
  fill: #fff2df;
  filter:
          drop-shadow(0 0 18px rgba(255, 242, 223, 0.9))
          drop-shadow(0 0 58px rgba(217, 164, 65, 0.42));
}

/* # Ordered Output Lines */

.orderedLines path {
  fill: none;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: orderedDraw 3.8s ease-in-out infinite;
}

.orderedLines .mainLine {
  stroke-width: 3.8;
}

.orderedLines .branchLine {
  stroke-width: 2.4;
  opacity: 0.78;
  animation-delay: 0.28s;
}

.orderedLines .lineBlue {
  stroke: var(--blue);
  filter: drop-shadow(0 0 8px rgba(46, 156, 255, 0.5));
}

.orderedLines .lineGold {
  stroke: var(--gold);
  animation-delay: 0.16s;
  filter: drop-shadow(0 0 8px rgba(217, 164, 65, 0.46));
}

.orderedLines .lineOrange {
  stroke: var(--orange);
  animation-delay: 0.32s;
  filter: drop-shadow(0 0 8px rgba(255, 122, 26, 0.42));
}

/* # Ordered Output Nodes */

.orderedNodes circle {
  opacity: 0;
  animation: nodePop 3.8s ease-in-out infinite;
}

.orderedNodes circle:nth-child(1),
.orderedNodes circle:nth-child(2),
.orderedNodes circle:nth-child(3) {
  fill: var(--blue);
}

.orderedNodes circle:nth-child(4),
.orderedNodes circle:nth-child(5),
.orderedNodes circle:nth-child(6) {
  fill: var(--gold);
  animation-delay: 0.16s;
}

.orderedNodes circle:nth-child(7),
.orderedNodes circle:nth-child(8),
.orderedNodes circle:nth-child(9) {
  fill: var(--orange);
  animation-delay: 0.32s;
}

/* # Founder Section */

.founderSection {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
  margin-top: 32px;
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
          radial-gradient(circle at 20% 20%, rgba(124, 60, 255, 0.18), transparent 34%),
          linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.028));
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.13);
}

.founderImageWrap {
  position: sticky;
  top: 32px;
  width: 100%;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  box-shadow:
          0 24px 70px rgba(0,0,0,0.34),
          0 0 60px rgba(124, 60, 255, 0.12);
}

.founderImageWrap img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 0.82;
  object-fit: cover;
  object-position: center top;
}

.founderCopy h2 {
  margin: 18px 0 18px;
  font-size: clamp(2.45rem, 3.9vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.founderLead {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--text);
  font-size: clamp(1.16rem, 1.8vw, 1.45rem);
  line-height: 1.55;
}

.founderCopy p:not(.sectionLabel):not(.founderLead) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.founderPills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.founderPills span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  color: var(--purpleSoft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(124, 60, 255, 0.08);
}

/* # Founder Logo Marquee */

.companyLogoMarquee {
  position: relative;
  overflow: hidden;
  max-width: 720px;
  margin-top: 30px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.companyLogoTrack {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: logoMarquee 32s linear infinite;
}

.companyLogoTrack img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: contain;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 10px 28px rgba(0,0,0,0.24);
}

/* # Content Sections */

.contentBlock,
.valuesSection {
  margin-top: 32px;
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.13);
  opacity: 0;
  transform: translateY(18px);
  transition:
          opacity 700ms ease,
          transform 700ms ease,
          border-color 220ms ease,
          box-shadow 220ms ease,
          background 220ms ease;
}

.contentBlock.isVisible,
.valuesSection.isVisible {
  opacity: 1;
  transform: translateY(0);
}

.contentBlock h2 {
  max-width: 920px;
  margin: 18px 0 0;
  font-size: clamp(1.8rem, 3.8vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

/* # Values Grid */

.valuesGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.valueCard {
  min-height: 250px;
  padding: 26px 20px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
          radial-gradient(circle at top right, rgba(124, 60, 255, 0.18), transparent 38%),
          linear-gradient(180deg, rgba(255,255,255,0.095), rgba(255,255,255,0.03));
  transition:
          border-color 220ms ease,
          background 220ms ease,
          box-shadow 220ms ease,
          transform 220ms ease;
}

.valueCard strong {
  display: block;
  color: var(--purpleSoft);
  font-size: 3.6rem;
  line-height: 1;
  transition: color 220ms ease, text-shadow 220ms ease;
}

.valueCard h3 {
  margin: 20px 0 10px;
  transition: color 220ms ease, text-shadow 220ms ease;
}

.valueCard p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* # Dynamic Mobile Value Focus */

.valueCard.isCenteredValue {
  border-color: rgba(185, 133, 255, 0.34);
  background:
          radial-gradient(circle at top center, rgba(124, 60, 255, 0.34), transparent 52%),
          linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  box-shadow:
          0 0 38px rgba(124, 60, 255, 0.18),
          inset 0 1px 0 rgba(255,255,255,0.16);
  transform: scale(1.02);
}

.valueCard.isCenteredValue strong {
  color: #d6b2ff;
  text-shadow: 0 0 22px rgba(185, 133, 255, 0.42);
}

.valueCard.isCenteredValue h3 {
  color: var(--gold);
  text-shadow: 0 0 18px rgba(217, 164, 65, 0.24);
}

/* # Desktop Hover States */

@media (hover: hover) and (pointer: fine) {
  .contentBlock.isVisible:hover,
  .valuesSection.isVisible:hover {
    transform: translateY(-8px);
    border-color: rgba(185, 133, 255, 0.26);
    background: rgba(255,255,255,0.075);
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,0.16),
            0 24px 70px rgba(0,0,0,0.28),
            0 0 44px rgba(124, 60, 255, 0.12);
  }

  .valueCard:hover {
    border-color: rgba(185, 133, 255, 0.34);
    background:
            radial-gradient(circle at top center, rgba(124, 60, 255, 0.34), transparent 52%),
            linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
    box-shadow:
            0 0 38px rgba(124, 60, 255, 0.18),
            inset 0 1px 0 rgba(255,255,255,0.16);
    transform: translateY(-6px);
  }

  .valueCard:hover strong {
    color: #d6b2ff;
    text-shadow: 0 0 22px rgba(185, 133, 255, 0.42);
  }

  .valueCard:hover h3 {
    color: var(--gold);
    text-shadow: 0 0 18px rgba(217, 164, 65, 0.24);
  }
}

/* # Footer */

.siteFooter {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 64px;
  padding: 54px 0 64px;
  border-top: 1px solid rgba(217, 164, 65, 0.22);
  background:
          linear-gradient(
                  180deg,
                  rgba(217, 164, 65, 0.04) 0%,
                  rgba(0,0,0,0.18) 10%,
                  rgba(0,0,0,0.92) 28%,
                  #000 100%
          );
}

.siteFooter::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: 1px;
  background:
          linear-gradient(
                  90deg,
                  transparent,
                  rgba(217, 164, 65, 0.72),
                  transparent
          );
  box-shadow: 0 0 18px rgba(217, 164, 65, 0.24);
}

.siteFooter strong {
  display: block;
  margin-bottom: 10px;
  color: white;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.34em;
}

.siteFooter p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.footerLinks {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footerLink,
.footerLinkedIn {
  transition:
          color 180ms ease,
          transform 180ms ease,
          opacity 180ms ease,
          border-color 180ms ease,
          background 180ms ease,
          box-shadow 180ms ease,
          text-shadow 180ms ease;
}

.footerLink {
  position: relative;
  color: var(--gold);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.footerLink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: rgba(217, 164, 65, 0.72);
  transform: scaleX(0.42);
  transform-origin: left center;
  opacity: 0.58;
  transition:
          transform 180ms ease,
          opacity 180ms ease;
}

.footerLink:hover {
  color: #f3c86d;
  transform: translateY(-1px);
  text-shadow: 0 0 18px rgba(217, 164, 65, 0.42);
}

.footerLink:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.footerLinkedIn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,0.03);
  text-decoration: none;
}

.footerLinkedIn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transform: translateY(-0.5px);
}

.footerLinkedIn:hover {
  color: var(--gold);
  border-color: rgba(217, 164, 65, 0.42);
  background: rgba(217, 164, 65, 0.08);
  transform: translateY(-2px);
  box-shadow:
          0 0 24px rgba(217, 164, 65, 0.12),
          inset 0 1px 0 rgba(255,255,255,0.08);
}

@media (max-width: 700px) {
  .siteFooter {
    flex-direction: column;
    align-items: flex-start;
    padding: 44px 0 54px;
  }

  .footerLinks {
    width: 100%;
    justify-content: space-between;
  }
}

/* # Keyframes */

@keyframes chaosFloat {
  from {
    transform: translate(-4px, 3px) scale(0.92);
    opacity: 0.38;
  }

  to {
    transform: translate(10px, -6px) scale(1.08);
    opacity: 0.72;
  }
}

@keyframes threadPull {
  from {
    stroke-dashoffset: 80;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes orderedDraw {
  0%, 16% {
    stroke-dashoffset: 520;
    opacity: 0;
  }

  48%, 72% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  88% {
    stroke-dashoffset: 0;
    opacity: 0;
  }

  100% {
    stroke-dashoffset: 520;
    opacity: 0;
  }
}

@keyframes nodePop {
  0%, 45% {
    opacity: 0;
    transform: scale(0.7);
  }

  58%, 76% {
    opacity: 1;
    transform: scale(1);
  }

  92%, 100% {
    opacity: 0;
    transform: scale(0.7);
  }
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

/* # Reduced Motion */

@media (prefers-reduced-motion: reduce) {
  .chaosDots circle,
  .chaosThreads path,
  .orderedLines path,
  .orderedNodes circle,
  .companyLogoTrack {
    animation: none;
  }
}

/* # Founder Responsive */

@media (max-width: 1100px) {
  .founderSection {
    grid-template-columns: 1fr;
    gap: 28px;
    overflow: hidden;
  }

  .founderImageWrap {
    width: min(100%, 360px);
    margin: 0 auto;
  }

  .founderImageWrap img {
    width: 100%;
    aspect-ratio: 0.82;
    max-height: 420px;
    object-fit: cover;
    object-position: center top;
  }

  .founderCopy {
    margin-top: 30px;
    min-width: 0;
  }

  .founderCopy h2,
  .founderLead,
  .founderCopy p:not(.sectionLabel):not(.founderLead) {
    max-width: 100%;
  }

  .companyLogoMarquee {
    max-width: 100%;
  }
}

/* # Mobile */

@media (max-width: 920px) {
  .siteShell {
    width: min(100% - 28px, 1180px);
    padding-top: 18px;
  }

  .navLinks {
    display: none;
  }

  .topNav {
    height: 54px;
    padding: 12px 0;
  }

  .brandMark {
    letter-spacing: 0.34em;
  }

  .hero {
    min-height: calc(100dvh - 72px);
    grid-template-columns: 1fr;
    align-content: center;
    gap: 18px;
    padding: 40px 0 36px;
  }

  h1 {
    font-size: clamp(2.6rem, 12.8vw, 4.7rem);
  }

  .heroText {
    max-width: 100%;
  }

  .signalPanel {
    min-height: 260px;
    opacity: 0.68;
    transform: none;
    border-radius: 24px;
  }

  .signalPanel.isVisible {
    opacity: 0.68;
    transform: none;
  }

  .signalDiagram,
  .signalSvg {
    min-height: 260px;
  }

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

  .founderSection {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .founderImageWrap {
    max-width: 320px;
    margin: 0 auto;
  }

  .founderImageWrap img {
    width: 100%;
    max-height: 380px;
  }
}

@media (min-width: 921px) {
  .valueCard.isCenteredValue {
    transform: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .founderPills span {
    cursor: default;
    transition:
            color 180ms ease,
            border-color 180ms ease,
            background 180ms ease,
            box-shadow 180ms ease,
            transform 180ms ease,
            text-shadow 180ms ease;
  }

  .founderPills span:hover {
    color: var(--gold);
    border-color: rgba(217, 164, 65, 0.42);
    background: rgba(217, 164, 65, 0.08);
    transform: translateY(-2px);
    text-shadow: 0 0 18px rgba(217, 164, 65, 0.28);
    box-shadow:
            0 0 24px rgba(217, 164, 65, 0.10),
            inset 0 1px 0 rgba(255,255,255,0.08);
  }
}

