/* =========================================================
   TT MASSIVE MARKETING — Global Stylesheet
   ========================================================= */

:root {
  --bg: #0a0a0a;
  --bg-elev: #111111;
  --bg-card: #141414;
  --ink: #f5f5f5;
  --ink-dim: #9a9a9a;
  --ink-faint: #5a5a5a;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
  --accent: #d4ff3d;
  --accent-2: #ff5f9d;
  --accent-3: #6c8cff;
  --accent-4: #ff9f45;
  --accent-glow: rgba(212, 255, 61, 0.35);

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-mega: "Anton", "Space Grotesk", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.27, 1.55);
  --dur: 0.6s;

  --pad-section: clamp(4rem, 8vw, 10rem) clamp(1.25rem, 4vw, 4rem);
}

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

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  cursor: none;
}

@media (max-width: 900px), (hover: none) {
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none !important; }
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

::selection {
  background: var(--accent);
  color: #000;
}

/* ==========================================================
   CURSOR
   ========================================================== */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 38px; height: 38px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease),
              background 0.3s var(--ease), border-color 0.3s var(--ease),
              mix-blend-mode 0.2s var(--ease);
  mix-blend-mode: difference;
  will-change: transform, width, height;
}
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--ink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.05s linear, background 0.3s var(--ease);
  mix-blend-mode: difference;
}
.cursor.is-hover {
  width: 84px; height: 84px;
  background: var(--accent);
  border-color: var(--accent);
  mix-blend-mode: normal;
}
.cursor.is-hover + .cursor-dot,
.cursor.is-hover ~ .cursor-dot { opacity: 0; }

/* ==========================================================
   GRAIN + GLOBAL
   ========================================================== */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.9'/></svg>");
}

/* ==========================================================
   LOADER
   ========================================================== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.is-done {
  opacity: 0;
  visibility: hidden;
}
.loader-inner {
  width: min(80vw, 520px);
  text-align: center;
}
.loader-text {
  font-family: var(--font-mega);
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: 0.02em;
  display: block;
  color: var(--ink);
  position: relative;
}
.loader-text::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: var(--accent);
  clip-path: inset(0 100% 0 0);
  animation: loader-fill 1.6s var(--ease) forwards;
}
@keyframes loader-fill {
  to { clip-path: inset(0 0 0 0); }
}
.loader-bar {
  margin: 1.5rem auto 0.75rem;
  width: 100%;
  height: 2px;
  background: var(--line);
  overflow: hidden;
  position: relative;
}
.loader-bar-fill {
  position: absolute;
  inset: 0 100% 0 0;
  background: var(--accent);
  animation: loader-fill 1.6s var(--ease) forwards;
}
.loader-percent {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--ink-dim);
}

/* ==========================================================
   NAV
   ========================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 4rem);
  z-index: 100;
  mix-blend-mode: difference;
  transition: transform 0.5s var(--ease), background 0.3s var(--ease);
}
.nav.is-hidden { transform: translateY(-120%); }
.nav.is-solid {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  mix-blend-mode: normal;
  border-bottom: 1px solid var(--line);
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}
.logo-mark {
  display: inline-block;
  padding: 0.25rem 0.55rem;
  background: var(--accent);
  color: #000;
  border-radius: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  transition: transform 0.3s var(--ease-bounce);
}
.nav-logo:hover .logo-mark { transform: rotate(-8deg) scale(1.08); }
.logo-full { font-size: 0.75rem; letter-spacing: 0.2em; color: var(--ink-dim); text-transform: uppercase; }

.nav-links {
  display: flex;
  gap: 0.25rem;
}
.nav-links a {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav-links a::before {
  content: "";
  position: absolute;
  inset: auto 0.85rem 0.35rem 0.85rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover::before { transform: scaleX(1); }

@media (max-width: 760px) {
  .nav-links { display: none; }
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem 0.6rem 1.1rem;
  background: var(--accent);
  color: #000;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  transition: transform 0.3s var(--ease-bounce), background 0.3s var(--ease);
}
.nav-cta:hover { transform: translate(2px, -2px) rotate(-1deg); }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 7rem clamp(1.25rem, 4vw, 4rem) 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.blob {
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 900px;
  max-height: 900px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
  animation: blob-float 22s var(--ease) infinite;
  will-change: transform;
}
.blob-1 {
  background: var(--accent);
  top: -20vw;
  left: -10vw;
  animation-duration: 24s;
}
.blob-2 {
  background: var(--accent-2);
  bottom: -25vw;
  right: -15vw;
  animation-duration: 30s;
  animation-delay: -5s;
  opacity: 0.3;
}
.blob-3 {
  background: var(--accent-3);
  top: 40%;
  left: 40%;
  width: 40vw;
  height: 40vw;
  animation-duration: 35s;
  animation-delay: -10s;
  opacity: 0.22;
}
@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(8vw, -4vw) scale(1.1); }
  66%      { transform: translate(-6vw, 6vw) scale(0.95); }
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  color: var(--ink-dim);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(8px);
}
.pulse {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 var(--accent-glow); }
  70%  { box-shadow: 0 0 0 14px rgba(212, 255, 61, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 255, 61, 0); }
}
.hero-location { display: flex; gap: 1.5rem; }
.hero-location span:last-child {
  color: var(--accent);
  font-feature-settings: "tnum";
}

.hero-main { padding: 3rem 0 2rem; }
.hero-title {
  font-family: var(--font-mega);
  font-weight: 400;
  font-size: clamp(3.2rem, 11vw, 12rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line-huge {
  font-size: 1.12em;
}
.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%) rotate(6deg);
  animation: word-rise 1.1s var(--ease) forwards;
}
.word.accent { color: var(--accent); position: relative; }
.word.accent::after {
  content: "";
  position: absolute;
  left: 0; bottom: -0.06em;
  width: 100%;
  height: 0.08em;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-draw 1.2s 1.4s var(--ease) forwards;
}
.word.italic { font-style: italic; font-family: "Space Grotesk", serif; font-weight: 300; text-transform: lowercase; letter-spacing: -0.03em; }
@keyframes word-rise {
  to { opacity: 1; transform: translateY(0) rotate(0); }
}
@keyframes underline-draw {
  to { transform: scaleX(1); }
}

.hero-sub {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  max-width: 620px;
  margin-left: auto;
  align-items: start;
  padding-top: 2rem;
}
.hero-sub-divider {
  height: 1px;
  background: var(--ink);
  margin-top: 0.7rem;
}
.hero-sub p {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
}

.hero-scroll {
  display: flex;
  justify-content: flex-end;
  padding-right: 0.5rem;
}
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--ink-dim);
  font-family: var(--font-display);
  font-weight: 500;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: var(--accent);
  animation: scroll-fall 2s var(--ease) infinite;
}
@keyframes scroll-fall {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(240%); }
}

/* ==========================================================
   MARQUEE
   ========================================================== */
.marquee-section {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  overflow: hidden;
}
.marquee {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-family: var(--font-mega);
  font-size: clamp(2.2rem, 6vw, 5rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.marquee-track span { flex-shrink: 0; }
.marquee-track .dot { color: var(--accent); }
.marquee-slow .marquee-track { animation-duration: 50s; font-size: clamp(1.2rem, 2.5vw, 2rem); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ==========================================================
   SECTION HEADING SYSTEM
   ========================================================== */
section { position: relative; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 3rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.section-num { color: var(--accent); }

/* ==========================================================
   MANIFESTO
   ========================================================== */
.manifesto {
  padding: var(--pad-section);
  max-width: 1500px;
  margin: 0 auto;
}
.manifesto-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin-bottom: 4rem;
}
.manifesto-title em {
  font-style: italic;
  color: var(--ink-dim);
  font-family: "Space Grotesk", serif;
}
.highlight {
  display: inline-block;
  position: relative;
  padding: 0 0.15em;
  color: #000;
}
.highlight::before {
  content: "";
  position: absolute;
  inset: 8% -2%;
  background: var(--accent);
  z-index: -1;
  transform: skew(-4deg);
}
.strike { text-decoration: line-through; text-decoration-color: var(--accent-2); text-decoration-thickness: 3px; color: var(--ink-dim); }

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}
.m-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.m-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.m-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.m-col li {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.3;
}
.m-col li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.m-col:last-child li::before {
  content: "+";
  color: var(--accent);
  font-weight: 700;
}

/* ==========================================================
   STATS
   ========================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.25rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.4s var(--ease);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.stat:hover { background: var(--bg-elev); }
.stat:hover::before { transform: scaleX(1); }
.stat-num {
  font-family: var(--font-mega);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.stat-label {
  font-size: 0.875rem;
  color: var(--ink-dim);
  line-height: 1.4;
  max-width: 28ch;
}

/* ==========================================================
   APPS
   ========================================================== */
.apps {
  padding: var(--pad-section);
  max-width: 1500px;
  margin: 0 auto;
}
.apps-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 24ch;
  margin-bottom: 5rem;
}
.apps-heading-accent {
  position: relative;
  display: inline-block;
}
.apps-heading-accent::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0.08em;
  width: 100%;
  height: 0.09em;
  background: var(--accent);
  opacity: 0.4;
  z-index: -1;
}

.app-card {
  position: relative;
  margin-bottom: 4rem;
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-elev);
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease);
}
.app-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}
.app-card-bg {
  position: absolute;
  inset: -10% -10%;
  z-index: -1;
  opacity: 0.35;
  filter: blur(80px);
  transition: opacity 0.6s var(--ease);
}
.app-commerce .app-card-bg {
  background: radial-gradient(ellipse at 20% 30%, var(--accent) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 70%, var(--accent-3) 0%, transparent 60%);
}
.app-prospecting .app-card-bg {
  background: radial-gradient(ellipse at 80% 30%, var(--accent-2) 0%, transparent 55%),
              radial-gradient(ellipse at 20% 70%, var(--accent-4) 0%, transparent 60%);
}
.app-card:hover .app-card-bg { opacity: 0.55; }

.app-card-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
}
.app-card-grid.reverse .app-card-left { order: 2; }
.app-card-grid.reverse .app-card-right { order: 1; }

@media (max-width: 900px) {
  .app-card-grid, .app-card-grid.reverse {
    grid-template-columns: 1fr;
  }
  .app-card-grid.reverse .app-card-left,
  .app-card-grid.reverse .app-card-right { order: initial; }
}

.app-logo-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.app-icon {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.app-icon-commerce {
  background: linear-gradient(135deg, var(--accent) 0%, #a8d425 100%);
  color: #0a0a0a;
  box-shadow: 0 12px 40px rgba(212, 255, 61, 0.3);
}
.app-icon-prospecting {
  background: linear-gradient(135deg, var(--accent-2) 0%, #d94474 100%);
  color: #ffffff;
  box-shadow: 0 12px 40px rgba(255, 95, 157, 0.3);
}
.app-icon svg { width: 36px; height: 36px; }
.app-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: block;
  margin-bottom: 0.25rem;
}
.app-name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.app-tld { color: var(--ink-dim); font-weight: 400; }

.app-pitch {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.55;
  color: var(--ink);
  max-width: 52ch;
  margin-bottom: 1.5rem;
}
.app-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.app-features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9375rem;
  color: var(--ink);
}
.feat-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.app-prospecting .feat-dot { background: var(--accent-2); }

.app-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* DEVICE MOCKUPS */
.device-mockup {
  position: relative;
  perspective: 1200px;
  transition: transform 0.7s var(--ease);
  will-change: transform;
}
.device-shell {
  background: #0f0f0f;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55),
              0 10px 30px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transform: rotate3d(1, 1, 0, 4deg);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.device-mockup:hover .device-shell {
  transform: rotate3d(1, 1, 0, 0deg);
  box-shadow: 0 50px 120px rgba(212, 255, 61, 0.15),
              0 20px 60px rgba(0, 0, 0, 0.5);
}
.device-mockup-alt .device-shell {
  transform: rotate3d(1, -1, 0, 4deg);
}
.device-mockup-alt:hover .device-shell {
  transform: rotate3d(1, -1, 0, 0deg);
  box-shadow: 0 50px 120px rgba(255, 95, 157, 0.15),
              0 20px 60px rgba(0, 0, 0, 0.5);
}
.device-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line);
  background: #0a0a0a;
}
.traffic-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--line-strong);
}
.traffic-dot:nth-child(1) { background: #ff5f56; }
.traffic-dot:nth-child(2) { background: #ffbd2e; }
.traffic-dot:nth-child(3) { background: #27c93f; }
.device-url {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--ink-dim);
  margin-left: 0.6rem;
}
.device-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.metric-row { display: flex; gap: 1rem; }
.metric {
  flex: 1;
  padding: 1rem;
  background: #141414;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.metric-label { font-size: 0.7rem; color: var(--ink-dim); letter-spacing: 0.05em; text-transform: uppercase; }
.metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 0.25rem;
}
.metric-delta {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  padding: 0.1rem 0.45rem;
  border-radius: 4px;
}
.metric-delta.up {
  background: rgba(212, 255, 61, 0.15);
  color: var(--accent);
}
.chart {
  height: 90px;
  background: #141414;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.5rem;
}
.chart svg { width: 100%; height: 100%; }
.creator-list, .prospect-row { display: flex; flex-direction: column; gap: 0.5rem; }
.creator-row, .prospect-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  background: #141414;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.875rem;
}
.creator-avatar, .prospect-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: #0a0a0a;
}
.creator-name { flex: 1; font-weight: 500; }
.creator-val { font-family: var(--font-display); font-weight: 700; color: var(--accent); }

.prospect-info { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.prospect-name { font-weight: 500; font-size: 0.875rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prospect-blurb { font-size: 0.75rem; color: var(--ink-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prospect-score {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent-2);
  font-size: 1rem;
}
.prospect-footer {
  font-size: 0.75rem;
  color: var(--ink-dim);
  letter-spacing: 0.05em;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  transition: transform 0.35s var(--ease-bounce), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
}
.btn-primary:hover {
  transform: translate(3px, -3px);
  box-shadow: -3px 3px 0 0 var(--ink);
}
.btn-pink {
  background: var(--accent-2);
  color: #fff;
}
.btn-pink:hover { box-shadow: -3px 3px 0 0 var(--accent); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #0a0a0a;
}
.btn-xl {
  padding: 1.2rem 2rem;
  font-size: 1.125rem;
}

/* ==========================================================
   SERVICES
   ========================================================== */
.services {
  padding: var(--pad-section);
  max-width: 1500px;
  margin: 0 auto;
}
.services-title {
  font-family: var(--font-mega);
  font-size: clamp(2.5rem, 7vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 4rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service {
  padding: 2.5rem 2rem;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.service::after {
  content: "→";
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.25rem;
  color: var(--ink-faint);
  transform: rotate(-45deg);
  transition: transform 0.4s var(--ease), color 0.4s var(--ease);
}
.service:hover {
  background: var(--bg-elev);
}
.service:hover::after {
  transform: rotate(0deg);
  color: var(--accent);
}
.service-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--accent);
}
.service h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.service p {
  font-size: 0.9375rem;
  color: var(--ink-dim);
  line-height: 1.55;
  flex: 1;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.service-tags span {
  font-size: 0.7rem;
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  letter-spacing: 0.05em;
  color: var(--ink-dim);
  font-family: var(--font-display);
}

/* ==========================================================
   WORK
   ========================================================== */
.work {
  padding: var(--pad-section);
  max-width: 1500px;
  margin: 0 auto;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}
.work-card {
  grid-column: span 6;
  padding: 2.5rem 2rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.work-card-1 { grid-column: span 8; background: linear-gradient(135deg, #1a1a1a, #0d0d0d); }
.work-card-2 { grid-column: span 4; background: linear-gradient(135deg, #2a1416, #120708); }
.work-card-3 { grid-column: span 4; background: linear-gradient(135deg, #1f1a28, #0c0a10); }
.work-card-4 { grid-column: span 4; background: linear-gradient(135deg, #18241f, #0a110d); }
.work-card-5 { grid-column: span 4; background: linear-gradient(135deg, #241e12, #100c07); }
.work-card-6 { grid-column: span 12; background: linear-gradient(135deg, #1c1a12, #0b0a05); min-height: 280px; }

@media (max-width: 900px) {
  .work-card, .work-card-1, .work-card-2, .work-card-3,
  .work-card-4, .work-card-5, .work-card-6 { grid-column: span 12; }
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(212, 255, 61, 0.15), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.work-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
}
.work-card:hover::before { opacity: 1; }

.work-emoji { font-size: 2.5rem; }
.work-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.work-arrow {
  color: var(--accent);
  transition: transform 0.4s var(--ease);
  font-size: 1.1rem;
}
.work-card:hover .work-arrow { transform: translate(6px, -6px); }
.work-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.875rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 28ch;
}
.work-tags {
  display: flex;
  gap: 0.4rem;
  margin-top: auto;
}
.work-tags span {
  font-size: 0.7rem;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink-dim);
  letter-spacing: 0.05em;
  font-family: var(--font-display);
}

/* ==========================================================
   PROCESS
   ========================================================== */
.process {
  padding: var(--pad-section);
  max-width: 1500px;
  margin: 0 auto;
}
.process-title {
  font-family: var(--font-mega);
  font-size: clamp(2.5rem, 7vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 4rem;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.process-step {
  padding: 2rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.process-step:hover {
  transform: translateY(-4px);
  background: var(--bg-elev);
}
.p-num {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  background: var(--accent);
  color: #0a0a0a;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  width: fit-content;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.process-step p { font-size: 0.9375rem; color: var(--ink-dim); line-height: 1.55; }

/* ==========================================================
   LOGOS MARQUEE
   ========================================================== */
.logos {
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-elev);
}
.logos-head {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 2rem;
}
.logo-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink);
  white-space: nowrap;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.logo-pill:hover { color: var(--accent); border-color: var(--accent); }

/* ==========================================================
   QUOTE
   ========================================================== */
.quote-section {
  padding: var(--pad-section);
  max-width: 1200px;
  margin: 0 auto;
}
.quote-section blockquote {
  position: relative;
  padding: 3rem 2rem 3rem 4rem;
  border-left: 4px solid var(--accent);
}
.quote-section blockquote::before {
  content: "“";
  position: absolute;
  top: -0.25em;
  left: 0.5rem;
  font-family: var(--font-mega);
  font-size: 8rem;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}
.quote-section p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 2.2rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.quote-section em { color: var(--accent); font-style: italic; }
.quote-section footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.quote-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
}
.quote-section footer strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}
.quote-section footer span {
  font-size: 0.875rem;
  color: var(--ink-dim);
}

/* ==========================================================
   CTA
   ========================================================== */
.cta {
  padding: clamp(5rem, 10vw, 12rem) clamp(1.25rem, 4vw, 4rem);
  background:
    radial-gradient(ellipse at 20% 80%, rgba(212, 255, 61, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 95, 157, 0.18) 0%, transparent 55%),
    #050505;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  opacity: 0.4;
}
.cta-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.cta-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 2.5rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}
.cta-title {
  font-family: var(--font-mega);
  font-size: clamp(3.5rem, 13vw, 14rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}
.cta-strike {
  display: inline-block;
  position: relative;
  color: var(--accent);
}
.cta-strike::after {
  content: "";
  position: absolute;
  left: -4%; right: -4%;
  top: 52%;
  height: 0.06em;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-draw 2s 0.5s var(--ease) forwards;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.cta-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.cta-meta > div {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}
.meta-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 500;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  padding: 4rem clamp(1.25rem, 4vw, 4rem) 0;
  background: #050505;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}
.footer-brand {
  max-width: 300px;
}
.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
}
.footer-brand p { color: var(--ink-dim); font-size: 0.9rem; }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 560px) {
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}
.footer-cols > div { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 0.5rem;
}
.footer-cols a {
  font-size: 0.9375rem;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.footer-cols a:hover { color: var(--accent); }

.footer-huge {
  text-align: center;
  padding: 2rem 0 1rem;
  overflow: hidden;
  pointer-events: none;
}
.footer-huge span {
  font-family: var(--font-mega);
  font-size: clamp(4rem, 22vw, 22rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, var(--ink) 0%, transparent 110%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--ink-dim);
  letter-spacing: 0.03em;
}
@media (max-width: 560px) {
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
}

/* ==========================================================
   REVEAL ANIMATIONS
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

.reveal-text span { display: inline-block; }
