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

:root {
  --bg: #ffffff;
  --bg2: #f6f5f2;
  --bg3: #eceae6;
  --lime: #ff6000;
  --lime-a: rgba(255, 96, 0, 0.08);
  --violet: rgba(255, 96, 0, 0.04);
  --white: #0a0a0a;
  --muted: rgba(10, 10, 10, 0.45);
  --border: rgba(10, 10, 10, 0.09);
  --border2: rgba(10, 10, 10, 0.16);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
#cur {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  top: 0;
  left: 0;
}

#cd {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  transform: translate(-50%, -50%);
}

#cr {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 96, 0, 0.35);
  transform: translate(-50%, -50%);
  transition: width .4s cubic-bezier(.23, 1, .32, 1), height .4s, opacity .3s, border-color .3s;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5rem;
  height: 68px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  transition: background .4s;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
}

.logo {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.45rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
}

.ldot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

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

  50% {
    opacity: .25;
    transform: scale(.65)
  }
}

.nlinks {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nlinks a {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .25s;
  font-weight: 600;
}

.nlinks a:hover {
  color: var(--white);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ncta {
  height: 38px;
  padding: 0 1.4rem;
  border-radius: 100px;
  background: var(--lime);
  color: #ffffff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all .25s;
  font-family: 'Syne', sans-serif;
  border: none;
  cursor: none;
}

.ncta:hover {
  background: #ff7722;
  transform: scale(1.04);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: .3rem;
}

.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all .3s;
  display: block;
}

/* HERO */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  min-height: 600px;
}

#c3d {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 25%, rgba(255, 255, 255, .45) 100%), linear-gradient(to top, rgba(255, 255, 255, 1) 0%, transparent 42%), linear-gradient(to bottom, rgba(255, 255, 255, .82) 0%, transparent 20%);
  pointer-events: none;
}

.grid-ov {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(rgba(255, 96, 0, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 96, 0, .04) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: radial-gradient(ellipse 65% 65% at 50% 40%, black 0%, transparent 100%);
  mask-image: radial-gradient(ellipse 65% 65% at 50% 40%, black 0%, transparent 100%);
  pointer-events: none;
}

.scan {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(to bottom, transparent 0px, transparent 3px, rgba(0, 0, 0, .025) 3px, rgba(0, 0, 0, .025) 4px);
  pointer-events: none;
}

#robot-wrap {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  width: min(640px, 52vw);
  height: min(84vh, 740px);
  z-index: 12;
  pointer-events: none;
}

#robot-wrap canvas {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: auto;
}

.hero-cta-center {
  position: absolute;
  top: 85%;
  left: 30%;
  transform: translateX(-50%);
  height: 60px;
  padding: 0 2.6rem;
  border-radius: 100px;
  border: 1.5px solid var(--border2);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  background: rgba(255, 255, 255, .7);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: all .3s;
  cursor: none;
  pointer-events: auto;
  opacity: 0;
  animation: slideUp .7s 1.3s ease forwards;
}

.hero-cta-center:hover {
  border-color: rgba(255, 96, 0, .55);
  color: var(--lime);
  background: rgba(255, 96, 0, .06);
  transform: translateX(-50%) translateY(-2px);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 3.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 3rem;
  pointer-events: none;
}

.hero-content a,
.hero-content button {
  pointer-events: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: slideUp .7s .2s ease forwards;
}

.epill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 1px solid rgba(255, 96, 0, .28);
  background: rgba(255, 96, 0, .07);
  padding: .32rem .85rem;
  border-radius: 100px;
  font-size: .64rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 700;
}

.epill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 1.5s ease infinite;
}

.eloc {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.hero-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(3.8rem, 9vw, 8.5rem);
  line-height: .9;
  letter-spacing: -.03em;
  font-weight: 400;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-word {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .9s cubic-bezier(.16, 1, .3, 1);
}

.title-word.vis {
  transform: translateY(0);
}

.line-italic {
  font-style: italic;
  color: var(--lime);
}

.line-outline {
  -webkit-text-stroke: 1.5px rgba(255, 96, 0, .3);
  color: transparent;
}

.hero-right {
  max-width: 300px;
  opacity: 0;
  animation: slideUp .7s .85s ease forwards;
  padding-bottom: .2rem;
}

.hero-sub {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-sub strong {
  color: var(--white);
  font-weight: 600;
}

.hero-btns {
  display: flex;
  gap: .7rem;
  flex-direction: column;
}

.btn-l {
  height: 50px;
  padding: 0 1.8rem;
  border-radius: 100px;
  background: var(--lime);
  color: #ffffff;
  font-family: 'Syne', sans-serif;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  border: none;
  cursor: none;
}

.btn-l:hover {
  background: #ff7722;
  transform: translateY(-2px);
}

.btn-o {
  height: 50px;
  padding: 0 1.8rem;
  border-radius: 100px;
  border: 1px solid var(--border2);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  background: transparent;
  cursor: none;
}

.btn-o:hover {
  border-color: rgba(255, 96, 0, .5);
  color: var(--lime);
}

.vid-badge {
  position: absolute;
  top: 20%;
  right: 5.5%;
  z-index: 10;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  border: 1px solid rgba(255, 96, 0, .22);
  background: rgba(255, 255, 255, .7);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  opacity: 0;
  animation: popIn .6s 1.6s cubic-bezier(.34, 1.56, .64, 1) forwards;
  cursor: none;
  transition: transform .4s cubic-bezier(.23, 1, .32, 1);
}

.vid-badge:hover {
  transform: scale(1.08);
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(.55)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

.vid-play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
}

.vid-badge:hover .vid-play {
  transform: scale(1.12);
}

.play-tri {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid #ffffff;
  margin-left: 3px;
}

.vid-label {
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 700;
}

.vid-sub {
  font-size: .54rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-hint {
  position: absolute;
  right: 3.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  opacity: 0;
  animation: fadeIn 1s 1.5s ease forwards;
}

.stext {
  font-size: .58rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}

.strack {
  width: 1px;
  height: 56px;
  background: rgba(255, 96, 0, .18);
  position: relative;
  overflow: hidden;
}

.srunner {
  position: absolute;
  top: -56px;
  left: 0;
  right: 0;
  height: 56px;
  background: linear-gradient(to bottom, transparent, var(--lime));
  animation: srun 2s ease-in-out infinite;
}

@keyframes srun {
  from {
    top: -56px
  }

  to {
    top: 56px
  }
}

.stats-row {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: slideUp .7s 1.1s ease forwards;
  pointer-events: none;
}

.sitem {
  pointer-events: auto;
}

.sitem {
  padding: 1.15rem 2.5rem;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .9rem;
  background: rgba(255, 255, 255, .88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: background .3s;
}

.sitem:last-child {
  border-right: none;
}

.sitem:hover {
  background: rgba(255, 96, 0, .05);
}

.sval {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.55rem;
  color: var(--lime);
  line-height: 1;
}

.slabel {
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* TICKER */
.ticker {
  border-top: 1px solid var(--border);
  padding: .9rem 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .98);
}

.ticker-t {
  display: flex;
  animation: tick 32s linear infinite;
  white-space: nowrap;
}

.ti {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  flex-shrink: 0;
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.ts {
  color: var(--lime);
}

@keyframes tick {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* SHARED SECTION */
section {
  padding: 7rem 3.5rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 700;
  margin-bottom: 1.4rem;
}

.tag::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--lime);
}

.h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: .95;
  letter-spacing: -.025em;
  font-weight: 400;
  margin-bottom: 1.8rem;
}

.h2 em {
  font-style: italic;
  color: var(--lime);
}

.h2 .dim {
  color: rgba(10, 10, 10, .25);
}

/* ─── ABOUT HERO ──────────────────────────────────────────────── */
.about-hero-block {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  padding: 7rem 3.5rem;
}

/* background layers */
.ahb-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 96, 0, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 96, 0, .025) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: radial-gradient(ellipse 75% 95% at 68% 50%, black 0%, transparent 100%);
  mask-image: radial-gradient(ellipse 75% 95% at 68% 50%, black 0%, transparent 100%);
}

.ahb-glow {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 96, 0, .09) 0%, rgba(255, 140, 60, .04) 45%, transparent 70%);
}

.ahb-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: repeating-linear-gradient(to bottom, transparent 0, transparent 3px, rgba(0, 0, 0, .025) 3px, rgba(0, 0, 0, .025) 4px);
}

.ahb-corner {
  position: absolute;
  width: 36px;
  height: 36px;
  border-color: rgba(255, 96, 0, .2);
  border-style: solid;
  pointer-events: none;
  z-index: 2;
}

.ahb-corner--tl {
  top: 2rem;
  left: 2rem;
  border-width: 1px 0 0 1px;
}

.ahb-corner--br {
  bottom: 2rem;
  right: 2rem;
  border-width: 0 1px 1px 0;
}

/* two-column layout */
.ahb-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* LEFT — typography */
.ahb-heading {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: .92;
  letter-spacing: -.03em;
  font-weight: 400;
  margin-bottom: 1.8rem;
}

.ahb-hl {
  display: block;
}

.ahb-hl--lime {
  font-style: italic;
  color: var(--lime);
  text-shadow: 0 0 60px rgba(255, 96, 0, .15);
}

.ahb-hl--ghost {
  -webkit-text-stroke: 1.5px rgba(255, 96, 0, .22);
  color: transparent;
}

.ahb-byline {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'DM Mono', monospace;
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 1.8rem;
}

.ahb-sep {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.8rem;
}

.ahb-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.apill {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 1.1rem;
  border: 1px solid var(--border2);
  border-radius: 100px;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: border-color .25s, color .25s, background .25s;
  cursor: default;
  background: rgba(10, 10, 10, .02);
}

.apill:hover {
  border-color: rgba(255, 96, 0, .4);
  color: var(--lime);
  background: var(--lime-a);
}

/* RIGHT — photo scene */
.ahb-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ahb-scene {
  position: relative;
  width: 320px;
  padding: 2.5rem;
  margin: -2.5rem;
}

.ahb-photo {
  width: 320px;
  height: 420px;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border2);
  background: var(--bg3);
  box-shadow:
    0 0 0 1px rgba(255, 96, 0, .06),
    0 0 80px rgba(255, 96, 0, .08),
    0 40px 100px rgba(0, 0, 0, .15);
  transform: perspective(900px) rotateY(var(--tx, 0deg)) rotateX(var(--ty, 0deg));
  transition: transform .12s ease-out, box-shadow .3s;
  position: relative;
  z-index: 2;
}

.ahb-photo:hover {
  box-shadow:
    0 0 0 1px rgba(255, 96, 0, .12),
    0 0 100px rgba(255, 96, 0, .13),
    0 40px 100px rgba(0, 0, 0, .18);
}

.ahb-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Circular photo variant */
.ahb-photo--circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border2);
  background: var(--bg3);
  box-shadow:
    0 0 0 1px rgba(255, 96, 0, .06),
    0 0 80px rgba(255, 96, 0, .08),
    0 40px 100px rgba(0, 0, 0, .15);
  transform: perspective(900px) rotateY(var(--tx, 0deg)) rotateX(var(--ty, 0deg));
  transition: transform .12s ease-out, box-shadow .3s;
  position: relative;
  z-index: 2;
}

.ahb-photo--circle:hover {
  box-shadow:
    0 0 0 1px rgba(255, 96, 0, .12),
    0 0 100px rgba(255, 96, 0, .13),
    0 40px 100px rgba(0, 0, 0, .18);
}

.ahb-photo-grad {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .12) 40%, transparent 65%);
}

.ahb-photo-info {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  right: 1.4rem;
}

.ahb-photo-name {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: .25rem;
  line-height: 1;
}

.ahb-photo-role {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 96, 0, .85);
}

.ahb-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 1.25rem;
  box-shadow: inset 0 0 0 1px rgba(255, 96, 0, .1);
}

/* orbital ring */
.ahb-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  margin-left: -200px;
  margin-top: -200px;
  border-radius: 50%;
  border: 1px solid rgba(255, 96, 0, .08);
  pointer-events: none;
  z-index: 1;
  animation: ahbRing 18s linear infinite;
}

.ahb-ring::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  transform: translateX(-50%);
  box-shadow: 0 0 14px rgba(255, 96, 0, .6), 0 0 28px rgba(255, 96, 0, .25);
}

.ahb-ring::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 25%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 140, 60, .7);
  box-shadow: 0 0 8px rgba(255, 100, 20, .4);
}

@keyframes ahbRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* floating stat chips */
.ahb-chip {
  position: absolute;
  z-index: 5;
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--border2);
  border-radius: .75rem;
  padding: .65rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .15rem;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
  transition: transform .12s ease-out;
}

.ahb-chip--a {
  top: 0;
  left: 0;
  animation: chipFlt 5s ease-in-out infinite;
}

.ahb-chip--b {
  top: 2.5rem;
  right: 0;
  animation: chipFlt 5s ease-in-out 1.6s infinite;
}

.ahb-chip--c {
  bottom: 3rem;
  left: -.5rem;
  animation: chipFlt 5s ease-in-out 3.2s infinite;
}

.ahb-chip-n {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.45rem;
  color: var(--lime);
  line-height: 1;
}

.ahb-chip-l {
  font-size: .54rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}

@keyframes chipFlt {

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

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

/* ABOUT DETAIL */
.about-detail {
  background: var(--bg2);
  padding: 7rem 3.5rem;
}

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 5rem;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}

.about-copy p {
  color: var(--muted);
  line-height: 2;
  font-size: .98rem;
  margin-bottom: 1.4rem;
}

.about-copy p strong {
  color: var(--white);
  font-weight: 600;
}

.about-cta {
  display: flex;
  gap: .8rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.services-list {
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--bg);
}

.svc {
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem 1.8rem;
  border-bottom: 1px solid var(--border);
  transition: background .3s;
  cursor: default;
}

.svc:last-child {
  border-bottom: none;
}

.svc:hover {
  background: var(--lime-a);
}

.svc-num {
  font-family: 'DM Mono', monospace;
  font-size: .7rem;
  color: var(--muted);
}

.svc-inner .svc-title {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.svc-inner .svc-desc {
  font-size: .76rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: .2rem;
}

.svc-arrow {
  color: var(--lime);
  font-size: 1rem;
  opacity: 0;
  transition: all .3s;
  transform: translateX(-6px);
}

.svc:hover .svc-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* GALLERY */
#gallery {
  background: var(--bg2);
  padding: 7rem 3.5rem;
}

.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: .9rem;
  max-width: 1280px;
  margin: 0 auto;
}

.gc {
  border-radius: .875rem;
  overflow: hidden;
  position: relative;
  cursor: none;
  background: var(--bg3);
  border: 1px solid var(--border);
  transition: transform .5s cubic-bezier(.23, 1, .32, 1), border-color .3s;
}

.gc:hover {
  transform: scale(1.02);
  border-color: rgba(255, 96, 0, .25);
}

.gc.a {
  grid-column: 1/7;
}

.gc.b {
  grid-column: 7/10;
}

.gc.c {
  grid-column: 10/13;
}

.gc.d {
  grid-column: 1/5;
}

.gc.e {
  grid-column: 5/9;
}

.gc.f {
  grid-column: 9/13;
}

.gvis {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* .gc.a .gvis {
  height: 360px;
} */

.gbg {
  position: absolute;
  inset: 0;
}

.gnum {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 6rem;
  color: rgba(255, 96, 0, .05);
  position: absolute;
  bottom: .5rem;
  right: 1rem;
  line-height: 1;
}

.glabel {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lime);
  background: rgba(255, 255, 255, .92);
  padding: .28rem .7rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 96, 0, .22);
  font-weight: 600;
}

.gover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
}

.gc:hover .gover {
  opacity: 1;
}

.gtitle {
  font-size: .95rem;
  font-weight: 700;
  color: #ffffff;
}

.garrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--lime-a);
  border: 1px solid rgba(255, 96, 0, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  font-size: .85rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all .35s;
}

.gc:hover .garrow {
  opacity: 1;
  transform: translateY(0);
}

.gallery-more {
  text-align: center;
  margin-top: 2.5rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* MARQUEE 2 */
.marquee2 {
  padding: 3.5rem 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.m2t {
  display: flex;
  animation: tick2 24s linear infinite;
  white-space: nowrap;
}

.m2i {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(2rem, 4.5vw, 4rem);
  color: rgba(10, 10, 10, .06);
  flex-shrink: 0;
  padding: 0 2rem;
  letter-spacing: -.02em;
}

.m2i.lit {
  color: rgba(255, 96, 0, .12);
}

@keyframes tick2 {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* PROCESS */
#process {
  background: var(--bg);
  padding: 7rem 3.5rem;
}

.process-wrap {
  max-width: 1280px;
  margin: 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  margin-top: 3.5rem;
}

.pstep {
  background: var(--bg2);
  padding: 2.5rem 1.8rem;
  position: relative;
  transition: background .3s;
  overflow: hidden;
}

.pstep::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.23, 1, .32, 1);
}

.pstep:hover {
  background: var(--bg3);
}

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

.pstep-n {
  font-family: 'DM Mono', monospace;
  font-size: .66rem;
  color: var(--muted);
  letter-spacing: .14em;
  margin-bottom: 1.4rem;
}

.pstep-ico {
  width: 44px;
  height: 44px;
  border-radius: .625rem;
  background: rgba(255, 96, 0, .06);
  border: 1px solid rgba(255, 96, 0, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  transition: background .3s, border-color .3s;
}

.pstep:hover .pstep-ico {
  background: rgba(255, 96, 0, .1);
  border-color: rgba(255, 96, 0, .38);
}

.pstep-ico svg {
  width: 22px;
  height: 22px;
  stroke: var(--lime);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pstep-t {
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: .55rem;
  letter-spacing: .02em;
}

.pstep-d {
  font-size: .76rem;
  color: var(--muted);
  line-height: 1.75;
}

/* BRANDS */
.brands {
  padding: 4rem 3.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}

.brands-l {
  text-align: center;
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.brands-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.brand {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, .15);
  transition: color .3s;
  cursor: default;
}

.brand:hover {
  color: rgba(255, 96, 0, .7);
}

/* TESTIMONIAL */
#testimonial {
  background: var(--bg2);
  padding: 7rem 3.5rem;
  text-align: center;
}

.testi-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.testi-quote {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  line-height: 1.35;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 2rem;
}

.testi-quote em {
  color: var(--lime);
}

.testi-author {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 2rem;
}

.tdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border2);
  transition: background .3s;
  cursor: none;
}

.tdot.active {
  background: var(--lime);
}

/* CONTACT */
#contact {
  background: var(--bg);
  padding: 7rem 3.5rem;
}

.contact-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-box {
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 5rem 4.5rem;
  position: relative;
  overflow: hidden;
  background: var(--bg2);
}

.contact-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 96, 0, .09) 0%, transparent 70%);
  pointer-events: none;
}

.contact-box .h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
}

.contact-sub {
  text-align: center;
  color: var(--muted);
  line-height: 1.9;
  max-width: 460px;
  margin: 0 auto 3rem;
  font-size: .95rem;
}

.contact-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}

.clink {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .25s;
  font-weight: 600;
}

.clink:hover {
  color: var(--lime);
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(0, 0, 0, .4);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}

.modal.open {
  opacity: 1;
  pointer-events: all;
}

.mbox {
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 1.25rem;
  padding: 3rem;
  width: 100%;
  max-width: 540px;
  transform: translateY(22px);
  transition: transform .45s cubic-bezier(.23, 1, .32, 1);
  position: relative;
}

.modal.open .mbox {
  transform: translateY(0);
}

.mclose {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  background: transparent;
  color: var(--muted);
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: all .2s;
  font-family: 'Syne', sans-serif;
}

.mclose:hover {
  color: var(--white);
  border-color: var(--border2);
}

.mtitle {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 2.1rem;
  margin-bottom: .4rem;
}

.mtitle em {
  color: var(--lime);
}

.msub {
  color: var(--muted);
  font-size: .83rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.msub a {
  color: var(--lime);
  text-decoration: none;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
  margin-bottom: .9rem;
}

.fg {
  margin-bottom: .9rem;
}

.fg label {
  display: block;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .4rem;
  font-weight: 600;
}

.fg input,
.fg textarea,
.fg select {
  width: 100%;
  background: rgba(10, 10, 10, .04);
  border: 1px solid var(--border2);
  border-radius: .625rem;
  padding: .78rem 1rem;
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: .86rem;
  outline: none;
  transition: border-color .25s;
  resize: none;
  -webkit-appearance: none;
  appearance: none;
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: rgba(255, 96, 0, .5);
}

.fg select option {
  background: #f6f5f2;
}

.mbtns {
  display: flex;
  gap: .8rem;
  margin-top: 1.4rem;
}

.mbtn-c {
  flex: 0;
  white-space: nowrap;
  height: 46px;
  padding: 0 1.4rem;
  border-radius: 100px;
  border: 1px solid var(--border2);
  background: transparent;
  color: var(--muted);
  font-family: 'Syne', sans-serif;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: none;
  transition: all .25s;
}

.mbtn-c:hover {
  color: var(--white);
}

.mbtn-s {
  flex: 1;
  height: 46px;
  border-radius: 100px;
  background: var(--lime);
  color: #ffffff;
  border: none;
  font-family: 'Syne', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: none;
  transition: all .25s;
}

.mbtn-s:hover {
  background: #ff7722;
}

.msuccess {
  text-align: center;
  padding: 2.5rem 1rem;
  display: none;
}

.msuccess-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--lime-a);
  border: 1px solid rgba(255, 96, 0, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  font-size: 1.3rem;
}

.msuccess h3 {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.9rem;
  margin-bottom: .5rem;
}

.msuccess p {
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.7;
}

/* WORK DETAIL MODAL */
.wmbox {
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 1.25rem;
  width: 100%;
  max-width: 760px;
  overflow: hidden;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(22px);
  transition: transform .45s cubic-bezier(.23, 1, .32, 1);
}

.modal.open .wmbox {
  transform: translateY(0);
}

.wm-media {
  width: 100%;
  background: var(--bg3);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wm-media img {
  display: block;
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}

.wm-media video {
  display: block;
  width: 100%;
  max-height: 460px;
  background: #000;
}

.wm-grad {
  width: 100%;
  height: 320px;
}

.wm-grad.gbg-1 {
  background: linear-gradient(135deg, rgba(255, 96, 0, .28), rgba(255, 140, 60, .18));
}

.wm-grad.gbg-2 {
  background: linear-gradient(135deg, rgba(255, 140, 60, .35), rgba(255, 96, 0, .18));
}

.wm-grad.gbg-3 {
  background: linear-gradient(135deg, rgba(255, 60, 20, .32), rgba(255, 120, 60, .2));
}

.wm-grad.gbg-4 {
  background: linear-gradient(135deg, rgba(255, 96, 0, .28), rgba(255, 180, 80, .2));
}

.wm-grad.gbg-5 {
  background: linear-gradient(135deg, rgba(255, 120, 40, .3), rgba(255, 96, 0, .18));
}

.wm-grad.gbg-6 {
  background: linear-gradient(135deg, rgba(255, 60, 0, .3), rgba(255, 140, 60, .18));
}

.wm-body {
  padding: 2rem 2.5rem 2.5rem;
}

.wm-tag {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 700;
  margin-bottom: .65rem;
}

.wm-title {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 1.8rem;
}

.wm-foot {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

/* GALLERY VIDEO BADGE */
.gvid-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(10, 10, 10, .15);
  border-radius: 100px;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, .75);
  padding: .22rem .6rem;
  z-index: 2;
}

/* REEL MODAL */
#reel-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

#reel-modal.open {
  opacity: 1;
  pointer-events: all;
}

.rm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 4, 2, .88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.rm-scene {
  perspective: 1400px;
  position: relative;
  z-index: 2;
  width: min(900px, 92vw);
}

.rm-card {
  position: relative;
  background: linear-gradient(160deg, #111009 0%, #0c0a07 100%);
  border: 1px solid rgba(255, 96, 0, .28);
  border-radius: 20px;
  padding: 1.6rem 1.6rem 1.4rem;
  box-shadow: 0 0 0 1px rgba(255, 96, 0, .08), 0 50px 100px rgba(0, 0, 0, .8), 0 0 80px rgba(255, 96, 0, .07);
  transform: translateY(48px) rotateX(8deg) scale(.97);
  transform-origin: center bottom;
  transform-style: preserve-3d;
  transition: transform .55s cubic-bezier(.23, 1, .32, 1), opacity .35s ease;
  opacity: 0;
}

#reel-modal.open .rm-card {
  transform: translateY(0) rotateX(0deg) scale(1);
  opacity: 1;
}

.rm-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .13);
  color: rgba(255, 255, 255, .65);
  font-size: .75rem;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  z-index: 2;
}

.rm-close:hover {
  background: rgba(255, 96, 0, .18);
  border-color: rgba(255, 96, 0, .5);
  color: #fff;
}

.rm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-right: 2.8rem;
}

.rm-tag {
  font-family: 'Syne', sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 96, 0, .85);
}

.rm-meta {
  font-family: 'DM Mono', monospace;
  font-size: .55rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .28);
}

.rm-video-wrap {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .6), inset 0 0 0 1px rgba(255, 96, 0, .08);
}

.rm-video-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 96, 0, .04) 0%, transparent 30%);
  pointer-events: none;
  z-index: 1;
}

.rm-video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.rm-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.rm-foot-label {
  font-family: 'DM Mono', monospace;
  font-size: .53rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .22);
}

.rm-foot-cta {
  font-family: 'Syne', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lime);
  text-decoration: none;
  transition: opacity .2s;
}

.rm-foot-cta:hover {
  opacity: .7;
}

@media(max-width:600px) {
  .rm-card {
    padding: 1rem;
    border-radius: 14px;
  }

  .rm-header {
    margin-bottom: .7rem;
  }

  .rm-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }

  .rm-foot-cta {
    align-self: flex-end;
  }
}

/* GALLERY LOADING / EMPTY */
.gallery-loading {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 5rem 2rem;
}

.gload-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  opacity: .3;
  animation: gldot .9s ease-in-out infinite;
}

.gload-dot:nth-child(2) {
  animation-delay: .15s;
}

.gload-dot:nth-child(3) {
  animation-delay: .3s;
}

@keyframes gldot {

  0%,
  80%,
  100% {
    opacity: .2;
    transform: scale(.8);
  }

  40% {
    opacity: .9;
    transform: scale(1);
  }
}

.gallery-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 5rem 2rem;
  color: var(--muted);
  font-size: .88rem;
  letter-spacing: .06em;
}

/* FOOTER */
footer {
  padding: 2.5rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  background: var(--bg);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.3rem;
}

.footer-copy {
  font-size: .68rem;
  letter-spacing: .1em;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .25s;
  font-weight: 600;
}

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

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

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

/* STAGGER DELAYS */
.delay-1 {
  transition-delay: .06s;
}

.delay-2 {
  transition-delay: .08s;
}

.delay-3 {
  transition-delay: .1s;
}

.delay-4 {
  transition-delay: .12s;
}

.delay-5 {
  transition-delay: .15s;
}

.delay-6 {
  transition-delay: .16s;
}

.delay-7 {
  transition-delay: .18s;
}

.delay-8 {
  transition-delay: .2s;
}

.delay-9 {
  transition-delay: .24s;
}

.delay-10 {
  transition-delay: .3s;
}

/* GALLERY BG VARIANTS */
.gbg-1 {
  background: linear-gradient(135deg, rgba(255, 96, 0, .1), rgba(255, 160, 60, .07));
}

.gbg-2 {
  background: linear-gradient(135deg, rgba(255, 140, 60, .12), rgba(255, 96, 0, .06));
}

.gbg-3 {
  background: linear-gradient(135deg, rgba(255, 60, 20, .1), rgba(255, 120, 60, .07));
}

.gbg-4 {
  background: linear-gradient(135deg, rgba(255, 96, 0, .08), rgba(255, 180, 80, .06));
}

.gbg-5 {
  background: linear-gradient(135deg, rgba(255, 120, 40, .1), rgba(255, 96, 0, .06));
}

.gbg-6 {
  background: linear-gradient(135deg, rgba(255, 60, 0, .1), rgba(255, 140, 60, .06));
}

/* UTILITY */
.tag--center {
  justify-content: center;
}

.h2--flush {
  margin-bottom: 0;
}

.btn-gallery {
  flex-shrink: 0;
}

.contact-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.msuccess-cta {
  display: inline-flex;
  align-items: center;
  height: 46px;
  padding: 0 1.8rem;
  border-radius: 100px;
  background: var(--lime);
  color: #ffffff;
  font-family: 'Syne', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 1.5rem;
}

.msuccess-cta:hover {
  background: #ff7722;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@media(max-width:960px) {
  nav {
    padding: 0 1.5rem;
    position: relative;
  }

  .nlinks {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .97);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
    z-index: 500;
  }

  .nlinks.open {
    display: flex;
  }

  .nlinks a {
    font-size: .8rem;
    padding: .4rem 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  #hero .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem 9rem;
  }

  .hero-right {
    max-width: 100%;
  }

  #robot-wrap {
    display: none;
  }

  .vid-badge {
    display: none;
  }

  .scroll-hint {
    display: none;
  }

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

  .sitem {
    padding: .9rem 1.2rem;
  }

  section,
  .about-detail,
  #gallery,
  #process,
  #contact,
  #testimonial {
    padding: 5rem 1.5rem;
  }

  .about-hero-block {
    padding: 5rem 1.5rem;
  }

  .ahb-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ahb-right {
    order: -1;
    justify-content: center;
  }

  .ahb-scene {
    width: 280px;
    padding: 2rem;
    margin: -2rem;
  }

  .ahb-photo {
    width: 280px;
    height: 360px;
  }

  .ahb-photo--circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
  }

  .ahb-ring {
    width: 340px;
    height: 340px;
    margin-left: -170px;
    margin-top: -170px;
  }

  .ahb-chip--b {
    right: -.5rem;
  }

  .ahb-left {
    text-align: center;
  }

  .ahb-byline {
    justify-content: center;
  }

  .ahb-pills {
    justify-content: center;
  }

  .brands {
    padding: 3rem 1.5rem;
  }

  .about-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .gc.a,
  .gc.b,
  .gc.c,
  .gc.d,
  .gc.e,
  .gc.f {
    grid-column: auto;
  }

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

  .contact-box {
    padding: 3rem 2rem;
  }

  .gallery-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

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

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

  .footer-links {
    justify-content: center;
  }
}

@media(max-width:480px) {
  .hero-title {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

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

  .sitem {
    padding: .75rem 1rem;
    gap: .6rem;
  }

  .sval {
    font-size: 1.2rem;
  }

  .slabel {
    font-size: .56rem;
  }

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

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

  .gc.a,
  .gc.b,
  .gc.c,
  .gc.d,
  .gc.e,
  .gc.f {
    grid-column: auto;
  }

  .gvis {
    height: 220px !important;
  }

  .contact-box {
    padding: 2rem 1.2rem;
  }

  .contact-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-btns .btn-l,
  .contact-btns .btn-o {
    justify-content: center;
  }

  .brands-row {
    gap: 2rem;
  }

  .about-cta {
    flex-direction: column;
  }

  .about-cta .btn-l,
  .about-cta .btn-o {
    justify-content: center;
    text-align: center;
  }

  .ncta {
    display: none;
  }

  section,
  .about-detail,
  #gallery,
  #process,
  #contact,
  #testimonial {
    padding: 4rem 1.2rem;
  }

  .about-hero-block {
    padding: 4rem 1.2rem;
  }

  .ahb-scene {
    width: 220px;
    padding: 1.6rem;
    margin: -1.6rem;
  }
  
  .ahb-photo {
    width: 220px;
    height: 290px;
  }

  .ahb-photo--circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
  }

  .ahb-chip--a,
  .ahb-chip--c {
    display: none;
  }

  .ahb-ring {
    display: none;
  }

  .footer-links {
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}