/* ============================================================
   URBANLINKS — Brand system
   Ice White #F5F6FC · Purple #6232FF · Midnight #14141A · Blue #3D6EE3
   (Primary Color 04 is mislabeled "Lime #CEFF1C" in the brand PDF;
    the actual swatch is this blue, sampled from the guide.)
   Grayscale: Cloud #EDEFF7 Smoke #D3D6E0 Steel #BCBFCC Space #9DA2B3
              Graphite #6E7180 Arsenic #40424D Phantom #1E1E24 Black #000
   Type: Manrope 200–800 · Caveat (polaroid captions)
   ============================================================ */

:root {
  --ice: #F5F6FC;
  --purple: #6232FF;
  --purple-soft: #7c52ff;
  --midnight: #14141A;
  --blue: #3D6EE3;
  --blue-deep: #1A3164;
  --cloud: #EDEFF7;
  --smoke: #D3D6E0;
  --steel: #BCBFCC;
  --space: #9DA2B3;
  --graphite: #6E7180;
  --arsenic: #40424D;
  --phantom: #1E1E24;
  --black: #0A0A0E;
  --font: 'Manrope', -apple-system, sans-serif;
  --hand: 'Caveat', cursive;
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--ice);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html.js-cursor, html.js-cursor body, html.js-cursor a,
html.js-cursor button, html.js-cursor .deck-card { cursor: none; }

/* Film grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

.container {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
}

section { scroll-margin-top: 90px; }

::selection { background: var(--purple); color: var(--ice); }

/* ============ Intro curtain ============ */

.curtain {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: curtainUp 0.7s var(--ease) 1.05s forwards;
}

.curtain img {
  height: 34px;
  filter: invert(1);
  opacity: 0;
  animation: curtainLogo 0.9s var(--ease) 0.1s forwards;
}

.curtain.gone { display: none; }

@keyframes curtainLogo {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes curtainUp {
  to { transform: translateY(-100%); }
}

/* ============ Custom cursor ============ */

.cur-dot, .cur-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  display: none;
}

html.js-cursor .cur-dot, html.js-cursor .cur-ring { display: flex; }

.cur-dot {
  width: 8px; height: 8px;
  background: var(--ice);
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cur-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(245, 246, 252, 0.55);
  transform: translate(-50%, -50%);
  align-items: center;
  justify-content: center;
  transition: width 0.3s var(--ease), height 0.3s var(--ease),
              background 0.3s, border-color 0.3s;
}

.cur-ring span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  opacity: 0;
  transition: opacity 0.2s;
}

.cur-ring.grow { width: 56px; height: 56px; border-color: var(--ice); }

.cur-ring.label {
  width: 68px; height: 68px;
  background: var(--blue);
  border-color: var(--blue);
}
.cur-ring.label span { opacity: 1; }

/* ============ Typography helpers ============ */

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--space);
  margin-bottom: 1.2rem;
}

.grad {
  background: linear-gradient(100deg, var(--ice) 0%, var(--purple-soft) 35%, var(--blue) 65%, var(--ice) 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradShift 7s ease-in-out infinite;
}

@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.accent { color: var(--blue); }

.t-outline, .mega-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--ice);
}

.section-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.4rem;
}

.section-title .t-outline { -webkit-text-stroke-width: 1.5px; }

.section-sub {
  color: var(--steel);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 3rem;
}

.section { padding: clamp(5rem, 10vw, 8.5rem) 0; position: relative; }

/* ============ Buttons ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.9rem;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, color 0.35s, border-color 0.35s;
  will-change: transform;
}

.btn-primary {
  background: var(--purple);
  color: var(--ice);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(98, 50, 255, 0.45);
}

.btn-ghost {
  border: 1px solid var(--arsenic);
  color: var(--smoke);
}
.btn-ghost:hover {
  border-color: var(--purple-soft);
  color: var(--ice);
  transform: translateY(-3px);
}

.btn-accent {
  background: var(--blue);
  color: var(--ice);
}
.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(61, 110, 227, 0.3);
}

/* ============ Nav ============ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(10, 10, 14, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 0.7rem 0;
  box-shadow: 0 1px 0 rgba(245, 246, 252, 0.06);
}

.nav-inner {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo img {
  height: 42px;
  width: auto;
  filter: invert(1);
  transition: height 0.4s var(--ease);
}

.nav.scrolled .nav-logo img { height: 34px; }

.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  z-index: 200;
  box-shadow: 0 0 12px rgba(98, 50, 255, 0.6);
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--steel);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav-links a:hover { color: var(--ice); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { padding: 0.65rem 1.4rem; font-size: 0.88rem; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  z-index: 102;
}
.nav-burger span {
  width: 26px; height: 2px;
  background: var(--ice);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

/* ============ Hero ============ */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 90% 60% at 70% -10%, #1b1430 0%, var(--black) 55%);
  padding: 7.5rem 0 4rem;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 560px; height: 560px;
  background: rgba(98, 50, 255, 0.22);
  top: -10%; right: -8%;
  animation: drift 14s ease-in-out infinite alternate;
}

.hero-glow-2 {
  width: 380px; height: 380px;
  background: rgba(61, 110, 227, 0.09);
  bottom: -18%; left: -10%;
  animation: drift 18s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-60px, 50px) scale(1.15); }
}

.hero-pattern {
  position: absolute;
  right: -10%;
  top: 55%;
  width: min(48vw, 660px);
  transform: translateY(-50%);
  filter: invert(1);
  opacity: 0.1;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(circle at 40% 40%, black 30%, transparent 75%);
  mask-image: radial-gradient(circle at 40% 40%, black 30%, transparent 75%);
  animation: patternSpin 60s linear infinite;
}

@keyframes patternSpin {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

.cursor-glow {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(98, 50, 255, 0.16) 0%, rgba(61, 110, 227, 0.08) 40%, transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
}

@media (hover: none), (pointer: coarse) {
  .cursor-glow { display: none; }
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.mega {
  font-size: clamp(3rem, 7.2vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.96;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}

.mega .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
}

.mega .line-inner {
  display: inline-block;
  transform: translateY(115%);
  animation: lineUp 1.1s var(--ease) 0.9s forwards;
}

.mega .line:nth-child(2) .line-inner { animation-delay: 1.05s; }
.mega .line:nth-child(3) .line-inner { animation-delay: 1.2s; }

@keyframes lineUp {
  to { transform: translateY(0); }
}

.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--steel);
  max-width: 480px;
  margin-bottom: 2.2rem;
}
.hero-sub strong { color: var(--ice); font-weight: 700; }

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.2rem;
}

.hero-stats {
  display: flex;
  gap: clamp(1.4rem, 3.4vw, 3rem);
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: row; align-items: baseline; gap: 0.15rem; flex-wrap: wrap; }

.stat-num, .stat-plus {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.stat-num { color: var(--ice); }
.stat-plus { color: var(--purple-soft); }
.stat-plus.star { color: var(--blue); }

.stat-label {
  width: 100%;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--space);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---- Phone / scroll-stopper ---- */

.phone-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}

.stage-sticker {
  position: absolute;
  top: 4%;
  right: 6%;
  z-index: 3;
  background: var(--blue);
  color: var(--ice);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  transform: rotate(6deg);
  box-shadow: 0 10px 30px rgba(61, 110, 227, 0.35);
  animation: stickerBob 5s ease-in-out infinite;
}

@keyframes stickerBob {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50% { transform: rotate(7.5deg) translateY(-7px); }
}

.phone {
  position: relative;
  width: clamp(240px, 20vw, 290px);
  aspect-ratio: 9 / 18.2;
  background: #0d0d12;
  border: 9px solid #1b1b23;
  border-radius: 46px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(245, 246, 252, 0.05);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-9deg) rotateX(3deg) rotate(1.5deg);
  will-change: transform;
}

.phone-notch {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 20px;
  background: #1b1b23;
  border-radius: 100px;
  z-index: 4;
}

.feed {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.feed-track { will-change: transform; }

.post { background: #101016; margin-bottom: 10px; }

.post-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
}

.post-top i {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  flex-shrink: 0;
}

.post-top span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cloud);
}

.post img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  pointer-events: none;
}

.post-act {
  padding: 8px 10px 10px;
  font-size: 0.7rem;
  color: var(--space);
  font-weight: 600;
}

.post-act b { color: var(--smoke); font-weight: 700; }

.stop-stamp {
  position: absolute;
  top: 44%;
  left: 50%;
  z-index: 5;
  background: var(--ice);
  color: var(--midnight);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  transform: translate(-50%, -50%) rotate(-8deg) scale(0);
  transition: transform 0.35s cubic-bezier(0.34, 1.8, 0.5, 1);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.stop-stamp.show { transform: translate(-50%, -50%) rotate(-8deg) scale(1); }

.phone-hearts {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  overflow: hidden;
}

.phone-hearts span {
  position: absolute;
  bottom: 18%;
  font-size: 1.5rem;
  animation: heartUp 1.3s ease-out forwards;
}

@keyframes heartUp {
  0% { opacity: 0; transform: translateY(0) scale(0.5); }
  15% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-240px) scale(1.35) rotate(14deg); }
}

.phone-hint {
  margin-top: 1.4rem;
  font-family: var(--hand);
  font-size: 1.55rem;
  color: var(--space);
  transform: rotate(-3deg);
}

/* ============ Marquees ============ */

.marquee {
  border-top: 1px solid var(--phantom);
  border-bottom: 1px solid var(--phantom);
  padding: 1.4rem 0;
  overflow: hidden;
  background: var(--midnight);
  position: relative;
}

.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--midnight), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--midnight), transparent); }

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  width: max-content;
  animation: marquee 70s linear infinite;
}

/* Logos are trimmed to their artwork, so cap both axes to keep very wide
   wordmarks from towering over compact marks. */
.marquee-track img {
  height: 34px;
  width: auto;
  max-width: 128px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.55;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img:hover { opacity: 1; transform: scale(1.08); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.mega-marquee {
  overflow: hidden;
  padding: 3.2rem 0 1rem;
}

.mega-tilt { transform: rotate(-2deg) scale(1.02); }

.mega-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.mega-marquee-track span {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--arsenic);
}

.mega-marquee-track em {
  font-style: normal;
  color: var(--blue);
  -webkit-text-stroke: 0;
}

/* ============ Filmstrip (drag to browse) ============ */

.strip {
  overflow: hidden;
  padding: 4rem 0 1.6rem;
  background:
    radial-gradient(ellipse 42% 14% at 50% 74%, rgba(98, 50, 255, 0.16), transparent 70%)
    var(--black);
  position: relative;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  perspective: 1100px;
}

.strip:active { cursor: grabbing; }

.strip::before, .strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.strip::before { left: 0; background: linear-gradient(90deg, var(--black), transparent); }
.strip::after { right: 0; background: linear-gradient(-90deg, var(--black), transparent); }

.strip-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  will-change: transform;
  transform-style: preserve-3d;
  padding: 1.5rem 0 2.5rem;
}

.sc-card {
  position: relative;
  flex-shrink: 0;
  width: clamp(210px, 24vw, 310px);
  aspect-ratio: 4 / 5;
  margin: 0 -26px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--midnight);
  will-change: transform, filter;
  pointer-events: none;
  transform-origin: 50% 58%;
  -webkit-box-reflect: below 10px linear-gradient(transparent 62%, rgba(0, 0, 0, 0.28));
}

.sc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(245, 246, 252, 0.08);
}

.sc-card img {
  width: 116%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  margin-left: -8%;
  will-change: transform;
}

.sc-cap {
  position: absolute;
  left: 50%;
  bottom: 0.9rem;
  transform: translateX(-50%);
  background: rgba(10, 10, 14, 0.72);
  border: 1px solid rgba(245, 246, 252, 0.14);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ice);
  white-space: nowrap;
  opacity: 0;
}

.strip-bar {
  width: min(180px, 40%);
  height: 2px;
  margin: 1.8rem auto 0;
  background: var(--phantom);
  border-radius: 2px;
  overflow: hidden;
}

.strip-bar i {
  display: block;
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  border-radius: 2px;
}

.strip-hint {
  text-align: center;
  margin-top: 0.9rem;
  font-family: var(--hand);
  font-size: 1.35rem;
  color: var(--graphite);
  transform: rotate(-2deg);
}

/* ============ About ============ */

.about { background: var(--black); }

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  margin-top: 1rem;
}

.about-story p {
  color: var(--steel);
  font-size: 1.15rem;
  line-height: 1.75;
}
.about-story strong { color: var(--ice); }

.about-cards { display: flex; flex-direction: column; gap: 1.3rem; }

.card {
  background: linear-gradient(160deg, var(--midnight), #101016);
  border: 1px solid var(--phantom);
  border-radius: 20px;
  padding: 1.8rem;
  transition: border-color 0.4s, transform 0.4s var(--ease), box-shadow 0.4s;
}

.card:hover {
  border-color: rgba(98, 50, 255, 0.5);
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: 0 20px 50px rgba(98, 50, 255, 0.12);
}

.card-num {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.8rem;
}

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

/* stickers */

.stickers {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 3.2rem;
}

.sticker {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  transition: transform 0.3s var(--ease);
}

.sticker:hover { transform: scale(1.08) rotate(0deg) !important; }

.s-1 { background: var(--purple); color: var(--ice); transform: rotate(-3deg); }
.s-2 { border: 2px solid var(--blue); color: var(--blue); transform: rotate(2deg); }
.s-3 { background: var(--ice); color: var(--midnight); transform: rotate(-2deg); }
.s-4 { border: 2px dashed var(--space); color: var(--smoke); transform: rotate(3deg); }
.s-5 { background: var(--blue); color: var(--ice); transform: rotate(-1deg); }

/* ============ Services (editorial rows) ============ */

.services {
  background: linear-gradient(180deg, var(--black) 0%, #100d1e 50%, var(--black) 100%);
}

.svc-rows { border-top: 1px solid var(--phantom); }

.svc-row { border-bottom: 1px solid var(--phantom); }

.svc-head {
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: 1.6rem 0.5rem;
  background: none;
  border: 0;
  color: inherit;
  font-family: var(--font);
  text-align: left;
  cursor: pointer;
  transition: padding 0.4s var(--ease);
}

.svc-head:hover { padding-left: 1.4rem; }

.svc-idx {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
  min-width: 2rem;
}

.svc-head h3 {
  font-size: clamp(2rem, 5.4vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--graphite);
  transition: color 0.4s, -webkit-text-stroke-color 0.4s;
  flex: 1;
  min-width: 0;
}

.svc-plus { flex-shrink: 0; }

.svc-row:hover .svc-head h3,
.svc-row.open .svc-head h3 {
  color: var(--ice);
  -webkit-text-stroke-color: transparent;
}

.svc-count {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--space);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.svc-plus {
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--space);
  line-height: 1;
  transition: transform 0.4s var(--ease), color 0.3s;
}

.svc-row.open .svc-plus { transform: rotate(45deg); color: var(--blue); }

.svc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease);
}

.svc-body > ul { overflow: hidden; display: flex; flex-wrap: wrap; gap: 0.5rem; }

.svc-row.open .svc-body { grid-template-rows: 1fr; }

.svc-row.open .svc-body > ul { padding: 0.2rem 0.5rem 1.8rem; }

.svc-body li {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--smoke);
  border: 1px solid var(--arsenic);
  border-radius: 100px;
  padding: 0.4rem 0.95rem;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.svc-body li:hover {
  border-color: var(--purple-soft);
  color: var(--ice);
  background: rgba(98, 50, 255, 0.12);
}

/* ---- 360° orbit ---- */

.orbit {
  position: relative;
  width: min(88vw, 660px);
  aspect-ratio: 1;
  margin: 1.5rem auto 0;
}

.orbit svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.orbit-ring {
  fill: none;
  stroke: var(--arsenic);
  stroke-dasharray: 5 11;
  transform-origin: 50% 50%;
  animation: spin 90s linear infinite;
}

.orbit-line {
  stroke: var(--phantom);
  stroke-width: 1.5;
  transition: stroke 0.4s;
}

.orbit-line.active {
  stroke: var(--blue);
  filter: drop-shadow(0 0 6px rgba(61, 110, 227, 0.7));
}

.orbit-node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.25rem;
  border-radius: 100px;
  border: 1.5px solid var(--arsenic);
  background: rgba(20, 20, 26, 0.92);
  color: var(--smoke);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, color 0.3s, box-shadow 0.3s;
  animation: nodeBob 6s ease-in-out infinite;
  animation-delay: var(--bob, 0s);
  z-index: 2;
}

@keyframes nodeBob {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -8px; }
}

.orbit-node em {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--blue);
}

.orbit-node:hover {
  border-color: var(--blue);
  color: var(--ice);
  box-shadow: 0 10px 34px rgba(61, 110, 227, 0.25);
}

.orbit-node.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--ice);
}

.orbit-node.active em { color: var(--ice); }

.orbit-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--phantom);
  background: radial-gradient(circle at 50% 35%, #191926 0%, var(--midnight) 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.9rem;
  padding: 2rem;
  z-index: 1;
}

.orbit-center h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.orbit-center .oc-sub {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--space);
}

.orbit-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.orbit-chips li {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--smoke);
  border: 1px solid var(--arsenic);
  border-radius: 100px;
  padding: 0.3rem 0.8rem;
  opacity: 0;
  transform: translateY(8px);
  animation: chipIn 0.45s var(--ease) forwards;
  animation-delay: var(--ci, 0s);
}

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

@media (min-width: 1001px) {
  .svc-rows { display: none; }
}

@media (max-width: 1000px) {
  .orbit { display: none; }
}

/* ============ Work ============ */

.work { background: var(--black); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 1.1rem;
  perspective: 1200px;
}

.work-item:nth-child(1),
.work-item:nth-child(8) {
  grid-column: span 2;
  grid-row: span 2;
}

.work-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--midnight);
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.25s ease-out, box-shadow 0.4s;
  will-change: transform;
}

.work-item.tilting { box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55); }

.work-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.8s var(--ease), transform 1.6s var(--ease), filter 0.5s;
}

.work-item img.on {
  opacity: 1;
  transform: scale(1);
}

.work-item:hover img { filter: brightness(0.78); }

.work-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.1rem 1.2rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  background: linear-gradient(transparent, rgba(10, 10, 14, 0.85));
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s;
  z-index: 2;
}

.work-item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}

.wi-dots {
  position: absolute;
  top: 0.9rem;
  right: 0.95rem;
  display: flex;
  gap: 5px;
  z-index: 2;
}

.wi-dots i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(245, 246, 252, 0.35);
  transition: background 0.3s, transform 0.3s;
}

.wi-dots i.on {
  background: var(--ice);
  transform: scale(1.25);
  box-shadow: 0 0 8px rgba(245, 246, 252, 0.8);
}

/* ============ Spotlight ============ */

.spotlight {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--phantom);
  border-bottom: 1px solid var(--phantom);
}

/* Cells are 4:5 — the native ratio of the artwork — so nothing is cropped. */
.spot-collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
}

.spot-collage img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #0d0d12;
}

.spot-shade {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, 0.94);
  -webkit-mask-image: radial-gradient(circle 240px at var(--mx, 50%) var(--my, 50%), transparent 0%, transparent 35%, black 72%);
  mask-image: radial-gradient(circle 240px at var(--mx, 50%) var(--my, 50%), transparent 0%, transparent 35%, black 72%);
}

.spot-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  padding: 4rem 1.5rem;
}

.spot-copy h2 {
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.8);
}

.spot-copy p {
  margin-top: 1.4rem;
  font-family: var(--hand);
  font-size: 1.6rem;
  color: var(--steel);
  transform: rotate(-3deg);
}

/* ============ Influencers ============ */

.influencers {
  background: linear-gradient(160deg, #0b1226 0%, var(--black) 45%);
}

.influencers-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  align-items: center;
}

.inf-list { margin-bottom: 2.2rem; }

.inf-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--phantom);
  color: var(--smoke);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.inf-list li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(61, 110, 227, 0.7);
}

.influencers-visual { display: flex; justify-content: center; }

.inf-badge {
  width: clamp(200px, 22vw, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(61, 110, 227, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--blue);
  position: relative;
  animation: pulse 4s ease-in-out infinite;
}

.inf-badge::before {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px dashed rgba(61, 110, 227, 0.25);
  animation: spin 30s linear infinite;
}

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

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(61, 110, 227, 0.12); }
  50% { box-shadow: 0 0 60px 8px rgba(61, 110, 227, 0.12); }
}

/* ============ Values ============ */

.values { background: var(--black); }

.values-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.value-chip {
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 0.9rem 1.8rem;
  border: 1.5px solid var(--arsenic);
  border-radius: 100px;
  color: transparent;
  -webkit-text-stroke: 1px var(--steel);
  transition: all 0.35s var(--ease);
}

.value-chip:nth-child(odd) { transform: rotate(-1deg); }
.value-chip:nth-child(even) { transform: rotate(1.2deg); }

.value-chip:hover {
  color: var(--midnight);
  -webkit-text-stroke: 0;
  background: var(--ice);
  border-color: var(--ice);
  transform: rotate(0deg) scale(1.04);
}

/* ============ Team ============ */

.team { background: var(--black); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.member {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: var(--midnight);
  border: 1px solid var(--phantom);
  transition: border-color 0.4s, transform 0.45s var(--ease), box-shadow 0.45s;
}

.member img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 18%;
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.5s, transform 0.7s var(--ease);
}

.member:hover {
  border-color: rgba(98, 50, 255, 0.55);
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.5);
}

.member:hover img { transform: scale(1.04); }

.member figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  background: linear-gradient(transparent, rgba(10, 10, 14, 0.92) 55%);
}

.m-name {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ice);
}

.m-role {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--space);
}

.member-join {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
  aspect-ratio: 4 / 5;
  padding: 1.5rem;
  border-style: dashed;
  border-color: var(--arsenic);
  background: transparent;
}

.member-join .mj-plus {
  font-size: 2.4rem;
  font-weight: 200;
  line-height: 1;
  color: var(--blue);
  margin-bottom: 0.4rem;
  transition: transform 0.4s var(--ease);
}

.member-join:hover { border-style: solid; }
.member-join:hover .mj-plus { transform: rotate(90deg); }

/* ============ Contact ============ */

.contact {
  background: radial-gradient(ellipse 80% 70% at 50% 110%, #1b1430 0%, var(--black) 60%);
  overflow: hidden;
}

.hero-glow-3 {
  width: 500px; height: 500px;
  background: rgba(98, 50, 255, 0.16);
  bottom: -30%; left: 50%;
  transform: translateX(-50%);
}

.contact .container { position: relative; z-index: 2; }

.contact-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 2.5rem;
}

.contact-card {
  border: 1px solid var(--phantom);
  border-radius: 18px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: rgba(20, 20, 26, 0.65);
  transition: border-color 0.4s, transform 0.4s var(--ease), box-shadow 0.4s;
}

a.contact-card:hover {
  border-color: rgba(98, 50, 255, 0.6);
  transform: translateY(-5px) rotate(-0.6deg);
  box-shadow: 0 18px 50px rgba(98, 50, 255, 0.15);
}

.cc-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--space);
}

.cc-value { font-weight: 700; font-size: 1.02rem; color: var(--ice); }

.cc-sticker {
  align-items: center;
  justify-content: center;
  background: var(--blue);
  border-color: var(--blue);
  color: var(--ice);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  transform: rotate(-2deg);
}

/* ============ Footer ============ */

.footer {
  border-top: 1px solid var(--phantom);
  padding: 3.5rem 0;
  background: var(--black);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-align: center;
}

.footer-logo {
  height: 28px;
  width: auto;
  filter: invert(1);
  opacity: 0.9;
  transition: transform 0.4s var(--ease);
}

.footer-logo:hover { transform: rotate(-2deg) scale(1.06); }

.footer-tag {
  color: var(--steel);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 0.4rem;
}

.footer-offices {
  color: var(--graphite);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-offices a { color: var(--steel); }
.footer-offices a:hover { color: var(--ice); }

.footer-copy { color: var(--arsenic); font-size: 0.8rem; margin-top: 0.6rem; }

/* ============ Reveal animations ============ */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(10px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .curtain { display: none; }
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .mega .line-inner { transform: none; animation: none; }
  .cursor-glow, .cur-dot, .cur-ring { display: none !important; }
  .grad, .hero-pattern, .hero-glow, .marquee-track, .mega-marquee-track,
  .inf-badge, .inf-badge::before, .stage-sticker,
  .orbit-ring, .orbit-node { animation: none !important; }
}

/* ============ Responsive ============ */

@media (max-width: 1000px) {
  .hero-layout { grid-template-columns: 1fr; gap: 0; }
  .phone-stage { margin-top: 2.5rem; }
  .phone { width: min(64vw, 260px); }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .influencers-inner { grid-template-columns: 1fr; }
  .influencers-visual { justify-content: center; }
  .work-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .spot-collage { grid-template-columns: repeat(4, 1fr); }
  .spot-collage img:nth-child(n + 17) { display: none; }
  .spot-shade {
    -webkit-mask-image: radial-gradient(circle 180px at var(--mx, 50%) var(--my, 50%), transparent 0%, transparent 35%, black 72%);
    mask-image: radial-gradient(circle 180px at var(--mx, 50%) var(--my, 50%), transparent 0%, transparent 35%, black 72%);
  }
}

@media (max-width: 680px) {
  .nav-links {
    position: fixed;
    inset: 0;
    height: 100dvh;
    background: #0A0A0E;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    z-index: 101;
    margin-left: 0;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 1.3rem; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; margin-left: auto; }
  .nav-logo img { height: 34px; }

  .hero { padding-top: 6.5rem; }
  .hero-pattern { width: 90vw; right: -30%; opacity: 0.07; }
  .phone { width: min(70vw, 250px); }
  .stage-sticker { right: 2%; font-size: 0.8rem; }
  .sc-card { margin: 0 -16px; width: min(58vw, 230px); }
  .svc-count { display: none; }
  .svc-head { align-items: center; gap: 1rem; }
  .svc-head h3 { font-size: clamp(1.7rem, 8vw, 2.6rem); }
  .svc-head h3 { -webkit-text-stroke-width: 1px; }
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .work-item figcaption { transform: translateY(0); opacity: 1; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .marquee-track img { height: 26px; max-width: 96px; opacity: 0.72; }
  .marquee-track { gap: 1.6rem; }
  /* full-width fades would swallow a phone screen */
  .marquee::before, .marquee::after { width: 42px; }
  .reel::before, .reel::after, .strip::before, .strip::after { width: 60px; }
  .contact-grid { grid-template-columns: 1fr; }
  .spot-collage { grid-template-columns: repeat(3, 1fr); }
  .spot-collage img:nth-child(n + 13) { display: none; }
  .spot-copy h2 { font-size: clamp(2rem, 9vw, 3rem); }
}
