@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@400;500;600;700&family=Permanent+Marker&display=swap");

:root {
  --ink: #09110f;
  --panel: #101b18;
  --panel-2: #19251d;
  --line: rgba(229, 255, 205, 0.16);
  --text: #f2f8ee;
  --muted: #b6c5bb;
  --blue: #2de6e1;
  --cyan: #25f4dc;
  --green: #c8ff31;
  --amber: #ffe12b;
  --coral: #ff8b19;
  --violet: #9c7cff;
  --shadow: 0 24px 80px rgba(4, 8, 5, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(4, 12, 11, 0.9), rgba(4, 12, 11, 0.28) 48%, rgba(4, 12, 11, 0.78)),
    radial-gradient(ellipse at 50% 48%, rgba(4, 12, 11, 0.22), rgba(4, 12, 11, 0.72) 68%),
    url("graffiti-background.png") center center / cover fixed no-repeat,
    var(--ink);
  font-family: "Kanit", "Trebuchet MS", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.74;
  background:
    radial-gradient(ellipse at 17% 18%, rgba(37, 244, 220, 0.18), transparent 30%),
    radial-gradient(ellipse at 84% 16%, rgba(200, 255, 49, 0.16), transparent 28%),
    radial-gradient(ellipse at 80% 73%, rgba(255, 139, 25, 0.13), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34));
  mix-blend-mode: screen;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  overflow-x: clip;
}

.graffiti-svg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.56;
  mix-blend-mode: screen;
}

.graffiti-svg-layer .center-shade {
  mix-blend-mode: multiply;
}

.graffiti-svg-layer .overspray {
  fill: none;
  stroke: currentColor;
  stroke-width: 40;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  opacity: 0;
  filter: url("#sprayBlur");
  animation: sprayMist var(--duration, 24s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.graffiti-svg-layer .paint-stroke,
.graffiti-svg-layer .paint-drip {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  filter: url("#roughPaint");
  animation: paintDraw var(--duration, 24s) cubic-bezier(0.2, 0.7, 0.22, 1) infinite;
  animation-delay: calc(var(--delay, 0s) + 0.38s);
}

.graffiti-svg-layer .paint-stroke {
  stroke-width: var(--stroke, 13);
}

.graffiti-svg-layer .paint-drip {
  stroke-width: var(--stroke, 5);
  animation-name: dripDraw;
  animation-delay: calc(var(--delay, 0s) + 1.8s);
}

.graffiti-svg-layer .distress {
  fill: none;
  stroke: rgba(2, 10, 8, 0.42);
  stroke-width: calc(var(--stroke, 13) * 0.42);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 7 13 3 19;
  opacity: 0;
  filter: url("#roughPaint");
  animation: distressReveal var(--duration, 24s) ease-in-out infinite;
  animation-delay: calc(var(--delay, 0s) + 1.05s);
}

.graffiti-svg-layer .splatter {
  fill: currentColor;
  opacity: 0;
  filter: url("#sprayBlurSoft");
  animation: splatterPop var(--duration, 24s) ease-in-out infinite;
  animation-delay: calc(var(--delay, 0s) + var(--pop, 1.25s));
}

.graffiti-svg-layer .spray-dot {
  fill: currentColor;
  opacity: 0;
  animation: sprayDot var(--duration, 24s) ease-in-out infinite;
  animation-delay: calc(var(--delay, 0s) + var(--pop, 0.15s));
}

.graffiti-svg-layer .tag-cyan {
  color: var(--cyan);
}

.graffiti-svg-layer .tag-lime {
  color: var(--green);
}

.graffiti-svg-layer .tag-yellow {
  color: var(--amber);
}

.graffiti-svg-layer .tag-orange {
  color: var(--coral);
}

@keyframes sprayMist {
  0%, 7% {
    opacity: 0;
    stroke-dashoffset: 100;
  }
  14% {
    opacity: 0.11;
    stroke-dashoffset: 84;
  }
  38% {
    opacity: 0.18;
    stroke-dashoffset: 0;
  }
  66% {
    opacity: 0.08;
    stroke-dashoffset: 0;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes paintDraw {
  0%, 12% {
    opacity: 0;
    stroke-dashoffset: 100;
  }
  18% {
    opacity: 0.66;
  }
  48%, 74% {
    opacity: 0.54;
    stroke-dashoffset: 0;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes distressReveal {
  0%, 22% {
    opacity: 0;
  }
  38%, 68% {
    opacity: 0.34;
  }
  100% {
    opacity: 0;
  }
}

@keyframes splatterPop {
  0%, 28% {
    opacity: 0;
    transform: scale(0.45);
  }
  38% {
    opacity: 0.46;
    transform: scale(1);
  }
  70% {
    opacity: 0.24;
  }
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes sprayDot {
  0%, 9% {
    opacity: 0;
  }
  15%, 44% {
    opacity: 0.26;
  }
  100% {
    opacity: 0;
  }
}

@keyframes dripDraw {
  0%, 32% {
    opacity: 0;
    stroke-dashoffset: 100;
  }
  45% {
    opacity: 0.48;
  }
  64%, 78% {
    opacity: 0.36;
    stroke-dashoffset: 0;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 6px clamp(14px, 4vw, 42px);
  background: rgba(6, 13, 11, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #04101e;
  background: conic-gradient(from 140deg, var(--cyan), var(--green), var(--amber), var(--blue), var(--cyan));
  clip-path: polygon(50% 0, 94% 25%, 94% 76%, 50% 100%, 6% 76%, 6% 25%);
  box-shadow: 0 0 36px rgba(51, 214, 208, 0.28);
}

.brand-mark::before {
  content: "C";
  font-weight: 950;
}

.brand-logo {
  gap: 0;
  flex: 0 0 auto;
}

.brand-logo img {
  width: clamp(112px, 11vw, 170px);
  height: auto;
  max-width: 36vw;
  display: block;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 18px rgba(37, 244, 220, 0.24)) drop-shadow(0 0 22px rgba(255, 225, 43, 0.18));
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.55vw, 22px);
}

.nav-links a {
  position: relative;
  color: var(--muted);
  font-size: clamp(0.66rem, 0.78vw, 0.74rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--amber), var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  color: var(--text);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.hero {
  position: relative;
  min-height: calc(92vh - 56px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 0;
  padding: clamp(52px, 7vw, 96px) clamp(18px, 5vw, 64px) clamp(46px, 6vw, 78px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 10% 4% auto auto;
  width: min(46vw, 620px);
  height: min(46vw, 620px);
  background:
    radial-gradient(circle at 32% 38%, rgba(37, 244, 220, 0.22), transparent 36%),
    radial-gradient(circle at 70% 46%, rgba(255, 225, 43, 0.2), transparent 36%),
    radial-gradient(circle at 72% 74%, rgba(255, 139, 25, 0.16), transparent 36%);
  filter: blur(28px);
  opacity: 0.75;
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--green), transparent);
}

h1,
h2,
h3,
.display {
  margin: 0;
  font-family: "Permanent Marker", "Kanit", "Trebuchet MS", sans-serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

h1,
.display {
  max-width: 1120px;
  font-size: clamp(2.25rem, 4.45vw, 5rem);
  font-weight: 400;
  text-shadow: 0 6px 0 rgba(0, 0, 0, 0.3), 0 0 28px rgba(37, 244, 220, 0.14);
}

.home-hero-title {
  max-width: min(1380px, 100%);
  display: grid;
  row-gap: 0.16em;
  line-height: 1.12;
}

.home-hero-title > span {
  display: block;
  width: max-content;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
}

.home-hero-title > span:first-child,
.home-hero-title > .headline-accent {
  white-space: nowrap;
}

.headline-accent {
  color: transparent;
  background: linear-gradient(100deg, var(--cyan), var(--green) 42%, var(--amber) 70%, var(--coral));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy {
  max-width: 940px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.26rem);
  line-height: 1.72;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 880px;
  margin-top: 46px;
}

.stat {
  min-height: 118px;
  padding: 20px 16px;
  display: grid;
  align-content: center;
  gap: 8px;
  background:
    radial-gradient(ellipse at 20% 12%, rgba(37, 244, 220, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stat strong {
  display: block;
  color: var(--green);
  font-family: "Permanent Marker", "Kanit", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 0 22px rgba(200, 255, 49, 0.22);
}

.stat strong span {
  color: var(--amber);
}

.stat p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: #04101e;
  background: linear-gradient(95deg, var(--cyan), var(--green) 48%, var(--amber));
  box-shadow: 0 18px 54px rgba(200, 255, 49, 0.24), 0 0 24px rgba(37, 244, 220, 0.2);
}

.btn.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--line);
}

.signal-stack {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.control-panel {
  width: min(96vw, 620px);
  padding: clamp(18px, 2.4vw, 28px);
  background:
    linear-gradient(180deg, rgba(28, 38, 25, 0.88), rgba(8, 15, 13, 0.82)),
    rgba(16, 27, 24, 0.92);
  border: 1px solid rgba(229, 255, 205, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow), 0 0 60px rgba(200, 255, 49, 0.08);
}

.panel-kicker {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel-title {
  margin-top: 8px;
  color: var(--text);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 950;
  letter-spacing: 0;
}

.constellation-stage {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 1;
  margin: clamp(14px, 2vw, 24px) auto 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 38%, rgba(37, 244, 220, 0.14), transparent 28%),
    radial-gradient(circle at 66% 35%, rgba(255, 225, 43, 0.11), transparent 34%),
    radial-gradient(circle at 70% 78%, rgba(255, 139, 25, 0.1), transparent 36%);
}

.constellation-stage::before,
.constellation-stage::after {
  content: "";
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(159, 176, 195, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.constellation-stage::after {
  inset: 20%;
  border-color: rgba(159, 176, 195, 0.18);
  animation: spin 82s linear infinite reverse;
}

.constellation-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.98;
}

.orbit-system {
  position: relative;
  z-index: 2;
  width: min(84%, 520px);
  aspect-ratio: 1;
}

.orbit-ring {
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(159, 176, 195, 0.2);
  border-radius: 50%;
  animation: spin 76s linear infinite;
}

.orbit-ring:nth-child(2) {
  inset: 20%;
  animation-duration: 58s;
  animation-direction: reverse;
}

.orbit-ring:nth-child(3) {
  inset: 31%;
  animation-duration: 44s;
}

.orbit-ring::before,
.orbit-ring::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 24px currentColor;
}

.orbit-ring::before {
  top: 12%;
  left: 14%;
  color: var(--cyan);
}

.orbit-ring::after {
  right: 4%;
  bottom: 22%;
  color: var(--amber);
  background: var(--amber);
}

.core-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(78%, 420px);
  min-height: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0;
  transform: translate(-50%, -50%);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.core-panel::before {
  display: none;
}

.core-panel strong {
  position: relative;
  display: block;
  max-width: 100%;
  font-size: 2.45rem;
  font-weight: 950;
  line-height: 0.95;
  overflow-wrap: normal;
  color: var(--text);
  text-shadow: 0 4px 28px rgba(7, 17, 31, 0.96), 0 0 34px rgba(51, 214, 208, 0.28);
}

.core-panel span {
  position: relative;
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.45;
  text-shadow: 0 3px 20px rgba(7, 17, 31, 0.96);
}

.signal-legend {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.signal-legend span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 18px currentColor;
}

.legend-dot.green {
  color: var(--green);
  background: var(--green);
}

.legend-dot.cyan {
  color: var(--cyan);
  background: var(--cyan);
}

.legend-dot.amber {
  color: var(--amber);
  background: var(--amber);
}

.street-panel {
  width: min(96vw, 640px);
  padding: clamp(18px, 2.4vw, 28px);
  background:
    radial-gradient(ellipse at 18% 22%, rgba(37, 244, 220, 0.13), transparent 30%),
    radial-gradient(ellipse at 82% 18%, rgba(255, 225, 43, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(26, 33, 23, 0.9), rgba(8, 14, 12, 0.82));
  border: 1px solid rgba(229, 255, 205, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow), 0 0 80px rgba(255, 225, 43, 0.08);
  overflow: hidden;
}

.street-panel .panel-title {
  font-family: "Permanent Marker", "Kanit", sans-serif;
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
  font-weight: 400;
  color: var(--text);
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.36), 0 0 28px rgba(200, 255, 49, 0.18);
}

.spray-wall {
  position: relative;
  min-height: 440px;
  margin-top: clamp(14px, 2vw, 22px);
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 26% 42%, rgba(37, 244, 220, 0.18), transparent 30%),
    radial-gradient(ellipse at 70% 40%, rgba(200, 255, 49, 0.17), transparent 31%),
    radial-gradient(ellipse at 72% 76%, rgba(255, 139, 25, 0.13), transparent 28%),
    linear-gradient(180deg, rgba(9, 18, 14, 0.92), rgba(8, 12, 10, 0.78));
}

.spray-wall::before {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at 18% 24%, rgba(37, 244, 220, 0.22) 0 2px, transparent 3px 100%),
    radial-gradient(circle at 68% 22%, rgba(255, 225, 43, 0.2) 0 2px, transparent 3px 100%),
    radial-gradient(circle at 80% 76%, rgba(255, 139, 25, 0.18) 0 2px, transparent 3px 100%);
  background-size: 74px 74px, 91px 91px, 84px 84px;
  opacity: 0.52;
  animation: sprayNoise 12s ease-in-out infinite alternate;
}

.spray-wall::after {
  content: "";
  position: absolute;
  inset: auto -8% 14% -8%;
  height: 34%;
  background:
    radial-gradient(ellipse at 18% 58%, rgba(37, 244, 220, 0.28), transparent 36%),
    radial-gradient(ellipse at 48% 52%, rgba(200, 255, 49, 0.24), transparent 38%),
    radial-gradient(ellipse at 76% 50%, rgba(255, 139, 25, 0.2), transparent 34%);
  filter: blur(18px);
  opacity: 0.78;
  animation: paintBreath 5.6s ease-in-out infinite;
}

.paint-cloud {
  position: absolute;
  border-radius: 999px;
  filter: blur(16px);
  opacity: 0.78;
  mix-blend-mode: screen;
  animation: cloudFloat 7s ease-in-out infinite;
}

.cloud-cyan {
  width: 220px;
  height: 150px;
  left: 4%;
  top: 18%;
  background: rgba(37, 244, 220, 0.22);
}

.cloud-lime {
  width: 280px;
  height: 190px;
  left: 35%;
  top: 16%;
  background: rgba(200, 255, 49, 0.2);
  animation-delay: -2.2s;
}

.cloud-orange {
  width: 210px;
  height: 150px;
  right: 5%;
  bottom: 16%;
  background: rgba(255, 139, 25, 0.19);
  animation-delay: -3.4s;
}

.paint-swipe {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 24px;
  border-radius: 999px;
  transform: rotate(-7deg);
  filter: drop-shadow(0 0 16px currentColor);
  opacity: 0.88;
  animation: swipePulse 4.8s ease-in-out infinite;
}

.swipe-cyan {
  top: 29%;
  color: var(--cyan);
  background: linear-gradient(90deg, transparent, rgba(37, 244, 220, 0.86), transparent);
}

.swipe-lime {
  top: 48%;
  color: var(--green);
  background: linear-gradient(90deg, transparent, rgba(200, 255, 49, 0.84), transparent);
  animation-delay: -1.4s;
}

.swipe-orange {
  top: 66%;
  color: var(--coral);
  background: linear-gradient(90deg, transparent, rgba(255, 139, 25, 0.78), transparent);
  animation-delay: -2.8s;
}

.wall-tag {
  position: absolute;
  z-index: 2;
  font-family: "Permanent Marker", "Kanit", sans-serif;
  font-weight: 400;
  line-height: 0.9;
  color: var(--text);
  text-transform: uppercase;
  text-shadow: 0 7px 0 rgba(0, 0, 0, 0.38), 0 0 24px currentColor;
  transform: rotate(-6deg);
}

.tag-main {
  --tag-rotate: -6deg;
  left: 10%;
  top: 24%;
  color: var(--cyan);
  font-size: clamp(3.5rem, 8vw, 6.8rem);
  animation: tagPop 5.5s ease-in-out infinite;
}

.tag-side {
  --tag-rotate: 7deg;
  right: 9%;
  top: 44%;
  color: var(--green);
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  transform: rotate(7deg);
  animation: tagPop 5.5s ease-in-out infinite -1.8s;
}

.tag-bottom {
  --tag-rotate: -4deg;
  left: 31%;
  bottom: 14%;
  color: var(--amber);
  font-size: clamp(2.2rem, 5.2vw, 4.4rem);
  transform: rotate(-4deg);
  animation: tagPop 5.5s ease-in-out infinite -3s;
}

.spray-can {
  position: absolute;
  z-index: 3;
  right: 9%;
  bottom: 9%;
  width: 56px;
  height: 116px;
  border-radius: 12px 12px 16px 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), transparent 22%),
    linear-gradient(140deg, var(--cyan), var(--green) 48%, var(--amber));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.42), 0 0 28px rgba(200, 255, 49, 0.24);
  transform: rotate(13deg);
  animation: canBounce 3.8s ease-in-out infinite;
}

.spray-can::before {
  content: "";
  position: absolute;
  left: 13px;
  top: -14px;
  width: 30px;
  height: 18px;
  border-radius: 7px 7px 3px 3px;
  background: #e9f1f8;
}

.spray-can::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 42px;
  height: 32px;
  border-radius: 7px;
  background: rgba(5, 17, 14, 0.52);
}

.spray-can i {
  position: absolute;
  left: -88px;
  top: 2px;
  width: 86px;
  height: 42px;
  background: radial-gradient(ellipse at right, rgba(37, 244, 220, 0.34), transparent 70%);
  filter: blur(8px);
  transform: rotate(-18deg);
}

.drip {
  position: absolute;
  z-index: 1;
  width: 7px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
  transform-origin: top;
  animation: paintDrip 4.8s ease-in-out infinite;
}

.drip-one {
  left: 18%;
  top: 52%;
  height: 88px;
  color: var(--cyan);
}

.drip-two {
  left: 46%;
  top: 62%;
  height: 110px;
  color: var(--green);
  animation-delay: -1.6s;
}

.drip-three {
  right: 22%;
  top: 57%;
  height: 78px;
  color: var(--coral);
  animation-delay: -2.8s;
}

.spray-legend {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.spray-legend span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legend-swatch {
  width: 22px;
  height: 8px;
  border-radius: 999px;
  box-shadow: 0 0 18px currentColor;
}

.legend-swatch.cyan {
  color: var(--cyan);
  background: var(--cyan);
}

.legend-swatch.lime {
  color: var(--green);
  background: var(--green);
}

.legend-swatch.orange {
  color: var(--coral);
  background: var(--coral);
}

.section {
  padding: clamp(44px, 6vw, 82px) clamp(18px, 5vw, 64px);
  border-top: 1px solid rgba(229, 255, 205, 0.07);
}

.section.alt {
  background: rgba(255, 255, 255, 0.028);
}

.section-head {
  max-width: 850px;
  margin-bottom: 28px;
}

.section-head.compact-head {
  max-width: 980px;
  margin-bottom: 22px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.8rem);
  font-weight: 950;
}

.products-intro-section {
  padding-top: clamp(34px, 5vw, 66px);
  background:
    radial-gradient(ellipse at 82% 10%, rgba(255, 225, 43, 0.12), transparent 28%),
    radial-gradient(ellipse at 14% 18%, rgba(37, 244, 220, 0.1), transparent 30%),
    linear-gradient(145deg, rgba(10, 37, 26, 0.32), transparent 48%);
}

.products-intro-copy {
  max-width: 1100px;
}

.products-intro-copy h1 {
  max-width: 1040px;
  margin: 0 0 18px;
  font-family: "Permanent Marker", "Kanit", sans-serif;
  font-size: clamp(2.1rem, 4.35vw, 5.1rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  text-shadow: 0 9px 0 rgba(2, 8, 6, 0.42);
}

.products-intro-copy p {
  max-width: 880px;
}

.section-head p,
.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.75;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.service-card,
.metric-card,
.process-step,
.legal-block {
  position: relative;
  padding: clamp(20px, 2.4vw, 30px);
  background:
    radial-gradient(ellipse at 18% 12%, rgba(37, 244, 220, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(22, 31, 20, 0.9), rgba(10, 17, 13, 0.86));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 58px rgba(1, 8, 20, 0.18);
  overflow: hidden;
}

.service-card::before,
.process-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms ease;
}

.service-card:hover::before,
.process-step:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(104, 224, 143, 0.34);
}

.service-card {
  transition: transform 220ms ease, border-color 220ms ease;
}

.service-card h3,
.process-step h3,
.legal-block h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.24;
}

.service-card p,
.process-step p,
.legal-block p,
.legal-block li {
  color: var(--muted);
  line-height: 1.7;
}

.feature-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 7px 0 7px 20px;
  color: var(--muted);
  border-top: 1px solid rgba(229, 255, 205, 0.08);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 10px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  box-shadow: 0 0 14px rgba(37, 244, 220, 0.35);
}

.service-detail-grid .service-card {
  min-height: 320px;
}

.product-grid {
  align-items: stretch;
}

.product-card {
  min-height: 300px;
}

.product-card h3 {
  color: var(--text);
  font-family: "Permanent Marker", "Kanit", sans-serif;
  font-size: clamp(1.75rem, 2.8vw, 2.45rem);
  font-weight: 400;
  letter-spacing: 0;
  text-shadow: 0 8px 0 rgba(2, 8, 6, 0.38);
}

.product-use {
  margin-top: 14px;
}

.product-use strong {
  color: var(--green);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 18px;
  padding: 10px 16px;
  color: #06110e;
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--amber));
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow: 0 12px 34px rgba(37, 244, 220, 0.16);
  transition: transform 180ms ease, filter 180ms ease;
}

.product-cta:hover {
  transform: translateY(-2px);
  filter: saturate(1.12) brightness(1.04);
}

.industries-grid .metric-card strong {
  font-size: clamp(1.8rem, 3.2vw, 3.1rem);
}

.compact-list {
  margin-top: 28px;
}

.compact-list .legal-block {
  padding: 20px;
}

.standards-card {
  align-self: center;
}

.contact-hero {
  min-height: calc(92vh - 62px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: start;
  gap: clamp(28px, 5vw, 74px);
  padding: clamp(38px, 5vw, 72px) clamp(18px, 5vw, 64px);
}

.contact-intro,
.contact-form-wrap {
  padding-top: clamp(12px, 2.3vw, 34px);
}

.contact-intro h1 {
  max-width: 880px;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
}

.contact-intro .lead {
  max-width: 760px;
  margin-top: 18px;
  line-height: 1.62;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-points span {
  padding: 8px 12px;
  color: #06110e;
  background: linear-gradient(135deg, rgba(37, 244, 220, 0.95), rgba(200, 255, 49, 0.95));
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form-wrap {
  width: min(100%, 640px);
  justify-self: end;
}

.contact-details-section {
  padding-top: clamp(36px, 5vw, 62px);
}

.contact-info-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.contact-info-list p {
  margin: 0;
  padding: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
  line-height: 1.55;
}

.contact-info-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--amber);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-hero {
  padding-top: clamp(24px, 3.5vw, 44px);
  padding-bottom: clamp(16px, 2.5vw, 28px);
  border-bottom: 0;
}

.team-hero h1 {
  max-width: 980px;
  font-size: clamp(2rem, 3.45vw, 3.75rem);
}

.team-hero .lead {
  max-width: 980px;
  margin-top: 14px;
  line-height: 1.55;
}

.team-section {
  padding-top: clamp(18px, 2.3vw, 30px);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, clamp(150px, 17vw, 250px)));
  justify-content: center;
  gap: clamp(16px, 2vw, 24px);
}

.team-card {
  position: relative;
  min-width: 0;
  padding: 10px;
  background:
    radial-gradient(ellipse at 18% 12%, rgba(37, 244, 220, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(20, 31, 26, 0.9), rgba(8, 14, 12, 0.88));
  border: 1px solid rgba(229, 255, 205, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 58px rgba(1, 8, 20, 0.22);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--amber), var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms ease;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(104, 224, 143, 0.34);
}

.team-card:hover::before {
  transform: scaleX(1);
}

.team-photo-frame {
  position: relative;
  aspect-ratio: 4 / 4.65;
  background: rgba(3, 10, 9, 0.58);
  border-radius: 6px;
  overflow: hidden;
}

.team-photo-frame::after {
  content: "";
  position: absolute;
  inset: auto -16% 7% 22%;
  height: 5px;
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--amber), var(--coral));
  box-shadow: 0 0 18px rgba(200, 255, 49, 0.26);
  transform: rotate(-4deg);
}

.team-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center bottom;
}

.team-card-copy {
  min-height: 86px;
  padding: 12px 6px 4px;
}

.team-card-copy h2 {
  margin: 0 0 8px;
  font-family: "Permanent Marker", "Kanit", sans-serif;
  font-size: clamp(1.35rem, 1.65vw, 2rem);
  font-weight: 400;
  line-height: 1;
  color: var(--green);
  text-shadow: 0 0 18px rgba(200, 255, 49, 0.2);
}

.team-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-card:nth-child(5) {
  grid-column: 2;
}

.team-card:nth-child(6) {
  grid-column: 3;
}

.ticker {
  display: flex;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.ticker-track {
  display: flex;
  min-width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker span {
  padding: 18px 26px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.metric-card strong {
  display: block;
  color: var(--green);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.metric-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step-num {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: #04101e;
  background: var(--amber);
  border-radius: 8px;
  font-weight: 950;
}

.page-hero {
  padding: clamp(42px, 5.5vw, 76px) clamp(18px, 5vw, 64px) clamp(28px, 4vw, 48px);
  border-bottom: 1px solid rgba(229, 255, 205, 0.06);
  background:
    radial-gradient(ellipse at 82% 20%, rgba(255, 225, 43, 0.16), transparent 30%),
    radial-gradient(ellipse at 16% 32%, rgba(37, 244, 220, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(10, 37, 26, 0.36), transparent 48%);
}

.page-hero h1 {
  font-size: clamp(2.05rem, 3.9vw, 4.45rem);
}

.page-hero .lead {
  max-width: 760px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.visual-panel {
  min-height: 430px;
  position: relative;
  background:
    radial-gradient(ellipse at 24% 26%, rgba(37, 244, 220, 0.1), transparent 32%),
    rgba(12, 22, 16, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.visual-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.07) 42%, transparent 58%);
  transform: translateX(-120%);
  animation: sheen 6s ease-in-out infinite;
}

.flow-map {
  position: absolute;
  inset: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 16px;
}

.node {
  position: relative;
  display: grid;
  place-items: center;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.node.hot {
  background: rgba(104, 224, 143, 0.14);
  border-color: rgba(104, 224, 143, 0.44);
  animation: pulseBorder 2.2s ease-in-out infinite;
}

.beam {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform-origin: left;
  animation: beam 2.7s linear infinite;
}

.beam.b1 { left: 18%; top: 34%; width: 62%; }
.beam.b2 { left: 13%; top: 58%; width: 72%; animation-delay: 0.6s; }
.beam.b3 { left: 26%; top: 78%; width: 48%; animation-delay: 1.1s; }

.bars {
  position: absolute;
  inset: auto 34px 34px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: 12px;
  height: 42%;
}

.bar {
  min-height: 24px;
  background: linear-gradient(180deg, var(--green), var(--cyan));
  border-radius: 6px 6px 0 0;
  transform-origin: bottom;
  animation: barGrow 2.8s ease-in-out infinite;
}

.bar:nth-child(2n) {
  background: linear-gradient(180deg, var(--amber), var(--coral));
  animation-delay: 0.35s;
}

.bar:nth-child(3n) {
  animation-delay: 0.7s;
}

.pipeline {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.pipe-row {
  position: relative;
  display: grid;
  grid-template-columns: 140px 1fr 90px;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pipe-line {
  position: relative;
  height: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.pipe-line::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 48%;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
  border-radius: inherit;
  animation: flow 2.2s ease-in-out infinite;
}

.pipe-row strong,
.pipe-row span {
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pipe-row span {
  color: var(--muted);
}

.legal-list {
  display: grid;
  gap: 18px;
}

.legal-block ol,
.legal-block ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.contact-form {
  display: grid;
  gap: 11px;
  padding: clamp(18px, 2.1vw, 24px);
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(51, 214, 208, 0.68);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #ff7b7b;
}

.field select option {
  color: var(--text);
  background: var(--panel);
}

.field-error {
  display: none;
  margin: -6px 0 0;
  color: #ffb1b1;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: none;
}

.field-error.show {
  display: block;
}

.form-note {
  display: none;
  color: var(--green);
  font-weight: 800;
}

.form-note.show {
  display: block;
}

.form-note[data-state="pending"] {
  color: var(--muted);
}

.form-note[data-state="error"] {
  color: #ff7b7b;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-reg {
  color: rgba(182, 197, 187, 0.68);
  font-size: 0.78rem;
  text-align: right;
}

.footer-email {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: var(--text);
  text-align: right;
}

.footer a:hover {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes scan {
  to { transform: translateY(14px); }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes sheen {
  0%, 52% { transform: translateX(-120%); }
  78%, 100% { transform: translateX(120%); }
}

@keyframes pulseBorder {
  50% { box-shadow: 0 0 34px rgba(104, 224, 143, 0.28); }
}

@keyframes beam {
  0% { transform: scaleX(0); opacity: 0; }
  18% { opacity: 1; }
  100% { transform: scaleX(1); opacity: 0; }
}

@keyframes barGrow {
  0%, 100% { transform: scaleY(0.42); }
  50% { transform: scaleY(1); }
}

@keyframes flow {
  0% { transform: translateX(-80%); }
  100% { transform: translateX(230%); }
}

@keyframes sprayNoise {
  0% { transform: translate3d(-1.2%, -0.6%, 0) scale(1); }
  100% { transform: translate3d(1.4%, 0.8%, 0) scale(1.035); }
}

@keyframes paintBreath {
  0%, 100% { transform: scaleX(0.96) translateY(0); opacity: 0.62; }
  50% { transform: scaleX(1.05) translateY(-8px); opacity: 0.88; }
}

@keyframes cloudFloat {
  0%, 100% { transform: translate3d(-8px, 4px, 0) scale(0.98); }
  50% { transform: translate3d(12px, -10px, 0) scale(1.05); }
}

@keyframes swipePulse {
  0%, 100% { transform: rotate(-7deg) scaleX(0.92); opacity: 0.68; }
  50% { transform: rotate(-7deg) scaleX(1.06); opacity: 0.94; }
}

@keyframes tagPop {
  0%, 100% { filter: saturate(1) contrast(1); transform: translateY(0) rotate(var(--tag-rotate, -6deg)); }
  50% { filter: saturate(1.25) contrast(1.08); transform: translateY(-5px) rotate(var(--tag-rotate, -6deg)); }
}

@keyframes canBounce {
  0%, 100% { transform: translateY(0) rotate(13deg); }
  50% { transform: translateY(-10px) rotate(9deg); }
}

@keyframes paintDrip {
  0%, 100% { transform: scaleY(0.54); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 0.9; }
}

@media (max-width: 960px) {
  .hero,
  .split,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .signal-stack {
    min-height: 520px;
  }

  .grid.three,
  .grid.four,
  .grid.two,
  .metrics,
  .hero-stats,
  .process {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-wrap {
    justify-self: stretch;
    width: 100%;
  }

  .contact-info-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 840px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    inset: 75px 14px auto;
    display: none;
    padding: 18px;
    background: rgba(13, 26, 45, 0.97);
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .nav-links.open {
    display: grid;
  }
}

@media (max-width: 720px) {

  .hero {
    min-height: auto;
  }

  .spray-wall {
    min-height: 360px;
  }

  .spray-can {
    width: 46px;
    height: 96px;
  }

  .spray-legend {
    grid-template-columns: 1fr;
  }

  h1,
  .display,
  .page-hero h1 {
    font-size: clamp(2.1rem, 11vw, 3.9rem);
  }

  .home-hero-title > span:first-child,
  .home-hero-title > .headline-accent {
    white-space: normal;
  }

  .grid.three,
  .grid.four,
  .grid.two,
  .metrics,
  .hero-stats,
  .process {
    grid-template-columns: 1fr;
  }

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

  .team-card:nth-child(5),
  .team-card:nth-child(6) {
    grid-column: auto;
  }

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

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

  .footer-reg {
    text-align: left;
  }

  .contact-info-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .graffiti-svg-layer {
    display: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}
