:root {
  --bg: #07070b;
  --bg-2: #0d0d14;
  --accent: #00e87a;
  --accent-dim: rgba(0, 232, 122, 0.08);
  --accent-glow: rgba(0, 232, 122, 0.18);
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.8);
  --border: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(0, 232, 122, 0.22);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-hover: rgba(255, 255, 255, 0.055);
  --radius: 16px;
  --radius-lg: 24px;
  --font-h: "Plus Jakarta Sans", sans-serif;
  --font-b: "Inter", sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ORBS */
.orb-wrap {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}
.o1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(0, 232, 122, 0.13) 0%,
    transparent 70%
  );
  top: -280px;
  left: -180px;
}
.o2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(30, 100, 240, 0.07) 0%,
    transparent 70%
  );
  top: 180px;
  right: -120px;
}
.o3 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 232, 122, 0.07) 0%,
    transparent 70%
  );
  top: 1100px;
  right: 220px;
}
.o4 {
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(30, 80, 220, 0.05) 0%,
    transparent 70%
  );
  top: 2100px;
  left: -280px;
}
.o5 {
  width: 650px;
  height: 650px;
  background: radial-gradient(
    circle,
    rgba(0, 232, 122, 0.09) 0%,
    transparent 70%
  );
  top: 3600px;
  left: 50%;
}
.o6 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 232, 122, 0.06) 0%,
    transparent 70%
  );
  top: 5200px;
  right: 100px;
}

/* LAYOUT */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
section {
  padding: 110px 0;
  position: relative;
  z-index: 1;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-h);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.022em;
}
h1 {
  font-size: clamp(44px, 6.5vw, 82px);
}
h2 {
  font-size: clamp(34px, 4.2vw, 54px);
}
h3 {
  font-size: clamp(20px, 2.5vw, 28px);
}

.accent {
  color: var(--accent);
}
.center {
  text-align: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.pill::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition:
    background 0.3s,
    border-color 0.3s;
}
.glass:hover {
  background: var(--glass-hover);
  border-color: rgba(255, 255, 255, 0.11);
}
.glass-green {
  background: var(--accent-dim);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.24s ease;
  border: none;
  outline: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 28px rgba(0, 232, 122, 0.22);
}
.btn-primary:hover {
  background: var(--accent);
  filter: brightness(1.12);
  color: #000;
  box-shadow: 0 0 32px rgba(0, 232, 122, 0.35);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 17px 36px;
  font-size: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Reduce motion — respect OS preference */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 20px 0;
  transition:
    background 0.35s,
    border-color 0.35s;
}
nav.scrolled {
  background: rgba(7, 7, 11, 0.9);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.logo {
  font-family: var(--font-h);
  font-size: 21px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.022em;
}
.logo span {
  color: var(--accent);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--white);
}
/* Free Library highlight */
.nav-lib {
  color: var(--accent) !important;
  font-weight: 600 !important;
  position: relative;
}
.nav-lib::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  opacity: 0.45;
  border-radius: 1px;
}
.nav-lib:hover {
  color: #fff !important;
}
/* Nav CTA — hidden until past hero */
.nav-cta {
  opacity: 0;
  transform: translateY(-5px) scale(0.97);
  pointer-events: none;
  transition:
    opacity 0.38s ease,
    transform 0.38s ease;
}
.nav-cta.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* HERO */
#hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 30px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.88);
  }
}
.hero-title {
  margin-bottom: 22px;
}
.hero-title .glow {
  color: var(--accent);
  text-shadow: 0 0 70px rgba(0, 232, 122, 0.28);
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.72;
  margin-bottom: 38px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.h-stat {
  display: flex;
  flex-direction: column;
}
.h-stat-n {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
}
.h-stat-l {
  font-size: 12px;
  color: var(--muted);
}
.h-divider {
  width: 1px;
  height: 34px;
  background: var(--border);
}

/* HERO */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 60px;
  align-items: center;
}
.hero-left {
  max-width: 620px;
}
.hero-right {
  display: none;
}
.proof-card {
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--border);
  transition:
    transform 0.3s,
    border-color 0.3s;
}
.proof-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-accent);
}
.proof-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.proof-value {
  font-family: var(--font-h);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 0 30px rgba(0, 232, 122, 0.2);
}
.proof-brand {
  font-size: 12px;
  color: var(--muted);
}
.proof-card-sm {
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--glass-bg);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}
.proof-card-sm .proof-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: var(--accent);
  flex-shrink: 0;
}
.proof-card-sm .proof-quote {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}
.proof-card-sm .proof-who {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}
.slots-card {
  padding: 16px 20px;
  border-radius: var(--radius);
  background: rgba(0, 232, 122, 0.06);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.slots-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.slots-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.slots-bar {
  width: 80px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 4px;
}
.slots-fill {
  height: 100%;
  width: 60%;
  background: var(--accent);
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(0, 232, 122, 0.5);
}
@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

/* VIDEO */
.hero-media {
  margin-top: 72px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 0 80px rgba(0, 232, 122, 0.09),
    0 40px 100px rgba(0, 0, 0, 0.55);
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.media-glow {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(
    135deg,
    rgba(0, 232, 122, 0.22),
    transparent 60%,
    rgba(30, 100, 240, 0.08)
  );
  z-index: -1;
  filter: blur(20px);
}
.vid-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent);
  opacity: 1;
  transition: opacity 0.3s;
  z-index: 5;
}
.vid-btn {
  background: rgba(0, 232, 122, 0.15);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.vid-btn:hover {
  background: rgba(0, 232, 122, 0.3);
}
.vol-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}
.vol-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 80px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  outline: none;
  cursor: pointer;
}
.vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
}

/* LOGOS */
#logos {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.logos-label {
  text-align: center;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 34px;
}
.logos-wrap {
  overflow: hidden;
  /* position: relative; */
}
.logos-wrap::before,
.logos-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  z-index: 2;
  pointer-events: none;
}
.logos-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.logos-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}
.logos-track {
  display: flex;
  align-items: center;
  gap: 64px;
  animation: marquee 28s linear infinite;
  animation-play-state: running;
  width: max-content;
  will-change: transform;
}
.logos-track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.logo-img {
  height: 38px;
  width: auto;
  opacity: 0.55;
  transition: opacity 0.3s;
  filter: brightness(1.1);
  flex-shrink: 0;
}
.logo-img:hover {
  opacity: 1;
}
.logo-img.logo-tall {
  height: 52px;
}

/* WORK GALLERY */
#work {
  text-align: center;
}
.section-intro {
  max-width: 560px;
  margin: 0 auto 56px;
}
.section-intro h2 {
  margin-bottom: 14px;
}
.section-intro p {
  color: var(--muted);
  font-size: 17px;
}

.work-tabs {
  display: inline-flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 36px;
}
.work-tab {
  padding: 8px 22px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--muted);
  transition: all 0.22s ease;
  font-family: var(--font-b);
}
.work-tab.active {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 18px rgba(0, 232, 122, 0.3);
}
.work-tab:hover:not(.active) {
  color: var(--white);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 10px;
}
.work-item.hidden {
  display: none;
}
.work-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-2);
  border: 1px solid var(--border);
  transition:
    transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.35s,
    border-color 0.35s;
  aspect-ratio: 9/16;
  transform-style: preserve-3d;
  will-change: transform;
}
.work-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 440px;
}
.work-item:hover {
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 232, 122, 0.18);
  border-color: rgba(0, 232, 122, 0.2);
}
/* shimmer sweep */
.work-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(0, 232, 122, 0.08) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}
.work-item:hover::after {
  transform: translateX(100%);
}

.work-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 500;
}
/* Hide placeholder when a real video is present */
.work-vid ~ .work-placeholder {
  display: none;
}
.work-placeholder .icon {
  font-size: 28px;
  opacity: 0.28;
}
.work-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* live badge */
.live-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(220, 30, 30, 0.75);
  border: 1px solid rgba(255, 80, 80, 0.3);
  padding: 3px 9px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff5555;
  animation: pulse 1.4s ease-in-out infinite;
}

/* ── CASE STUDIES (RESULTS) ─────────────────────────────────── */
#results {
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(0, 232, 122, 0.015),
    transparent
  );
}
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
/* Base card */
.rc {
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}
.rc:hover {
  border-color: rgba(0, 232, 122, 0.22);
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}
/* Featured — full-width, two-column layout: content left + creative right */
.rc-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 220px;
  background: var(--accent-dim);
  border-color: var(--border-accent);
}
.rc-body {
  padding: 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rc-brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.rc-headline {
  font-family: var(--font-h);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
  line-height: 1.2;
}
.rc-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}
/* Metrics */
.rc-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.rc-metric {
  text-align: center;
  padding: 12px 6px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.rc-metric-n {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.rc-metric-l {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 4px;
}
/* Platform badges */
.rc-plats {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.rc-plat {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: rgba(255, 255, 255, 0.4);
}
.rc-plat.meta {
  background: rgba(24, 119, 242, 0.1);
  border-color: rgba(24, 119, 242, 0.22);
  color: rgba(100, 150, 255, 0.8);
}
.rc-plat.tiktok {
  background: rgba(255, 0, 80, 0.08);
  border-color: rgba(255, 0, 80, 0.18);
  color: rgba(255, 90, 140, 0.8);
}
.rc-plat.youtube {
  background: rgba(255, 0, 0, 0.07);
  border-color: rgba(255, 0, 0, 0.18);
  color: rgba(255, 80, 80, 0.8);
}
.rc-plat.tag {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.38);
}
/* Quote */
.rc-quote {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
}
.rc-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 800;
  color: #000;
  flex-shrink: 0;
}
.rc-quote-text {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  font-style: italic;
}
.rc-quote-attr {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 4px;
  font-weight: 600;
}
/* Right pane — 9:16 creative thumbnail, fills full card height */
.rc-creative {
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  border-left: 1px solid rgba(0, 232, 122, 0.1);
}
.rc-creative::before {
  content: "";
  display: block;
  padding-top: 177.78%;
}
.rc-creative-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.rc-play {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 232, 122, 0.1);
  border: 1.5px solid rgba(0, 232, 122, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent);
}
.rc-creative-label {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.05em;
  font-weight: 600;
  text-align: center;
  padding: 0 12px;
}
.rc-badge {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
/* Small cards — thumbnail strip across top + body below */
.rc-sm .rc-thumb-strip {
  height: 160px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.rc-sm .rc-body {
  padding: 20px 22px;
  gap: 12px;
}
.rc-sm .rc-headline {
  font-size: clamp(15px, 1.6vw, 18px);
}
.rc-sm .rc-metrics {
  grid-template-columns: 1fr 1fr;
}
.rc-sm .rc-metric-n {
  font-size: 24px;
}
.rc-sm-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  white-space: nowrap;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
@media (max-width: 900px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
  .rc-featured {
    grid-column: auto;
    grid-template-columns: 1fr 160px;
  }
  .rc-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .rc-featured {
    grid-template-columns: 1fr;
  }
  .rc-creative {
    display: none;
  }
}

/* ── CASE STUDIES ────────────────────────────────────────── */
/* ── CASE STUDIES ────────────────────────────────────────── */
.cs-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cs-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-2);
  display: grid;
  grid-template-columns: 1fr 42%;
  min-height: 320px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.cs-card.cs-flip {
  grid-template-columns: 42% 1fr;
}
/* SmileBright: visual on right, text on left (visual is first in DOM, push it right) */
.cs-card-visual-right {
  order: 2;
}
.cs-card:hover {
  border-color: var(--cs-color, var(--border-accent));
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.4);
}
.cs-card-accent-green {
  --cs-color: var(--accent);
}
.cs-card-accent-cyan {
  --cs-color: rgba(20, 200, 220, 0.85);
}
.cs-card-accent-purple {
  --cs-color: rgba(168, 85, 247, 0.85);
}

.cs-card-visual {
  position: relative;
  overflow: hidden;
}
.cs-card.cs-flip .cs-card-visual {
  order: -1;
}
.cs-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
.cs-card.cs-flip .cs-badge {
  right: auto;
  left: 20px;
}

.cs-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 52px;
}
.cs-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
  color: var(--cs-color, var(--accent));
  opacity: 0.85;
}
.cs-stat {
  font-family: var(--font-h);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--white);
}
.cs-sublabel {
  font-family: var(--font-h);
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
  margin-bottom: 20px;
  line-height: 1.3;
}
.cs-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 440px;
}
.cs-metrics {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.cs-metric {
  flex: 1;
  padding-right: 20px;
}
.cs-metric + .cs-metric {
  padding-left: 20px;
  padding-right: 0;
  border-left: 1px solid var(--border);
}
.cs-metric-n {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--cs-color, var(--accent));
}
.cs-metric-l {
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
  margin-top: 4px;
  text-transform: uppercase;
}

/* ROAS mockup inside SmileBright card */
.cs-roas-mockup {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08);
  z-index: 1;
}
.cs-roas-header {
  background: #f0f2f5;
  padding: 8px 18px;
  border-bottom: 1px solid #e4e6eb;
}
.cs-roas-header span {
  font-size: 10px;
  font-weight: 700;
  color: #606770;
}
.cs-roas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.cs-roas-cell {
  padding: 13px 18px;
  text-align: right;
  border-right: 1px solid #f0f2f5;
}
.cs-roas-cell:last-child {
  border-right: none;
  background: rgba(24, 119, 242, 0.04);
  padding: 9px 18px;
}
.cs-roas-peak-label {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(20, 180, 220, 0.8);
  display: block;
  margin-bottom: 1px;
}
.cs-roas-val {
  font-size: 15px;
  color: #1c1e21;
  filter: blur(5px);
  user-select: none;
}
.cs-roas-peak-val {
  font-size: 18px;
  font-weight: 800;
  color: #1877f2;
}

.cs-img-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .cs-card,
  .cs-card.cs-flip {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .cs-card-visual,
  .cs-card-visual-right {
    min-height: 220px;
    order: 0 !important;
  }
  .cs-card-body {
    padding: 32px 28px;
  }
  .cs-stat {
    font-size: clamp(28px, 7.5vw, 42px);
  }
  .cs-badge {
    left: auto !important;
    right: 20px !important;
  }
}
@media (max-width: 600px) {
  .cs-metrics {
    flex-wrap: wrap;
    gap: 14px;
  }
  .cs-metric + .cs-metric {
    border-left: none;
    padding-left: 0;
  }
}

/* ── TEAM SECTION ────────────────────────────────────────── */
#team {
  border-top: 1px solid var(--border);
}
.team-dots {
  display: none;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 0;
}
.team-card {
  padding: 24px 20px;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--border);
  transition:
    border-color 0.3s,
    transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.team-card:hover {
  border-color: rgba(0, 232, 122, 0.2);
  transform: translateY(-4px);
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 800;
  color: #000;
  flex-shrink: 0;
  overflow: hidden;
  background: transparent;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.team-name {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
}
.team-role {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}
.team-dept {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  margin-top: 2px;
}
.dept-creative {
  background: rgba(0, 232, 122, 0.1);
  color: rgba(0, 232, 122, 0.85);
}
.dept-strategy {
  background: rgba(59, 130, 246, 0.1);
  color: rgba(59, 130, 246, 0.85);
}
.dept-media {
  background: rgba(245, 200, 66, 0.1);
  color: rgba(245, 200, 66, 0.85);
}
.dept-ops {
  background: rgba(180, 130, 255, 0.1);
  color: rgba(180, 130, 255, 0.85);
}

/* ── STATIC ADS GRID (masonry-style, images shown in full) ── */
.static-ads-grid {
  columns: 5;
  column-gap: 8px;
}
.sa-item {
  break-inside: avoid;
  margin-bottom: 8px;
  border-radius: 10px;
  overflow: hidden;
  will-change: transform;
  transition:
    transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.3s;
  cursor: pointer;
}
.sa-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.sa-item img {
  display: block;
  width: 100%;
  height: auto;
  transform: translateZ(0);
}
@media (max-width: 1100px) {
  .static-ads-grid {
    columns: 4;
  }
}
@media (max-width: 800px) {
  .static-ads-grid {
    columns: 3;
  }
}
@media (max-width: 520px) {
  .static-ads-grid {
    columns: 2;
  }
}

/* SERVICES */
#services {
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.svc-card {
  padding: 36px 30px;
  text-align: left;
  border-radius: var(--radius-lg);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.svc-card.featured {
  background: linear-gradient(
    140deg,
    rgba(0, 232, 122, 0.09),
    rgba(0, 232, 122, 0.02)
  );
  border-color: var(--border-accent);
}

.svc-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
  position: relative;
  transition: box-shadow 0.3s;
}
.svc-card:hover .svc-icon-wrap {
  box-shadow: 0 0 24px rgba(0, 232, 122, 0.25);
}
/* ring pulse on icon */
.svc-icon-wrap::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 18px;
  border: 1px solid rgba(0, 232, 122, 0.2);
  animation: ring-pulse 2.5s ease-in-out infinite;
  opacity: 0;
}
.svc-card:hover .svc-icon-wrap::before {
  opacity: 1;
}
@keyframes ring-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.12);
    opacity: 0;
  }
}

/* icon float animations */
.float-a {
  animation: float-a 3s ease-in-out infinite;
}
.float-b {
  animation: float-b 3.4s ease-in-out infinite;
}
.float-c {
  animation: float-c 2.8s ease-in-out infinite;
}
@keyframes float-a {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-4px) rotate(-4deg);
  }
}
@keyframes float-b {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.08);
  }
}
@keyframes float-c {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-4px) rotate(6deg);
  }
}

.svc-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.svc-card h4 {
  font-family: var(--font-h);
  font-size: 20px;
  margin-bottom: 10px;
}
.svc-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.72;
}

/* REASONS — editorial row layout */
#reasons {
  text-align: left;
}
#reasons .section-intro {
  text-align: left;
  margin-bottom: 0;
}
#reasons .section-intro p {
  max-width: 460px;
}
.reasons-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}
.reasons-header-left {
  flex: 1;
}

.reasons-list {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.reason-row {
  display: grid;
  grid-template-columns: 72px 52px 1fr 1.6fr;
  align-items: center;
  gap: 0 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  cursor: default;
  transition: background 0.25s;
}
.reason-row::before {
  content: "";
  position: absolute;
  left: -24px;
  right: -24px;
  top: 0;
  bottom: 0;
  background: rgba(0, 232, 122, 0.028);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  border-radius: 10px;
}
.reason-row:hover::before {
  opacity: 1;
}

.rr-num {
  font-family: var(--font-h);
  font-size: 42px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
  transition: color 0.35s;
  user-select: none;
}
.reason-row:hover .rr-num {
  color: rgba(0, 232, 122, 0.25);
}

/* per-row color tokens */
.rc-green {
  --c: 0, 232, 122;
}
.rc-blue {
  --c: 59, 130, 246;
}
.rc-purple {
  --c: 168, 85, 247;
}
.rc-amber {
  --c: 251, 191, 36;
}
.rc-teal {
  --c: 20, 184, 166;
}
.rc-slack {
  --c: 56, 197, 240;
}

.reason-row::before {
  background: rgba(var(--c, 0, 232, 122), 0.028);
}
.rr-num {
  color: rgba(var(--c, 255, 255, 255), 0.1);
  transition: color 0.35s;
}
.reason-row:hover .rr-num {
  color: rgba(var(--c, 0, 232, 122), 0.35);
}

.rr-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid rgba(var(--c, 255, 255, 255), 0.22);
  background: rgba(var(--c, 255, 255, 255), 0.07);
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}
.reason-row:hover .rr-icon {
  border-color: rgba(var(--c, 0, 232, 122), 0.42);
  background: rgba(var(--c, 0, 232, 122), 0.14);
  box-shadow: 0 0 18px rgba(var(--c, 0, 232, 122), 0.22);
  transform: scale(1.1);
}
.rr-title {
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 700;
  color: rgb(var(--c, 255, 255, 255));
  line-height: 1.3;
}
.rr-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.slack-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* HOW IT WORKS — Timeline */
#how {
  text-align: center;
}

/* step icon animations */
.write-anim {
  animation: write 2s ease-in-out infinite;
}
@keyframes write {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-8deg) translate(-1px, 1px);
  }
  75% {
    transform: rotate(5deg) translate(1px, -1px);
  }
}
.cam-anim {
  animation: cam 2.5s ease-in-out infinite;
}
@keyframes cam {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}
.chart-anim {
  animation: chart 2s ease-in-out infinite;
}
@keyframes chart {
  0%,
  100% {
    transform: scaleY(1) translateY(0);
  }
  50% {
    transform: scaleY(1.1) translateY(-2px);
  }
}
.rocket-anim {
  animation: rocket 1.8s ease-in-out infinite;
}
@keyframes rocket {
  0%,
  100% {
    transform: translateY(0) rotate(-10deg);
  }
  50% {
    transform: translateY(-7px) rotate(-10deg);
  }
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin-top: 64px;
}
/* connector line — starts invisible, draws left-to-right on trigger */
.steps-timeline::before {
  content: "";
  position: absolute;
  top: 26px;
  left: calc(12.5% + 4px);
  right: calc(12.5% + 4px);
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(0, 232, 122, 0.55),
    rgba(0, 180, 232, 0.4),
    rgba(120, 80, 255, 0.4),
    rgba(0, 232, 122, 0.65)
  );
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.steps-timeline.tl-animated::before {
  transform: scaleX(1);
}

/* step items start hidden; each activates via JS class */
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}
.step-item.tl-active {
  opacity: 1;
  transform: none;
}

/* node pops in when its step activates */
.step-item.tl-active .step-node {
  animation: node-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes node-pop {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}

/* text fades up slightly after node */
.step-item.tl-active .step-num {
  transition-delay: 0.12s;
}
.step-item.tl-active h4 {
  transition-delay: 0.2s;
}
.step-item.tl-active p {
  transition-delay: 0.28s;
}
.step-item .step-num,
.step-item h4,
.step-item p {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.38s ease,
    transform 0.38s ease;
}
.step-item.tl-active .step-num,
.step-item.tl-active h4,
.step-item.tl-active p {
  opacity: 1;
  transform: none;
}

/* no animation on mobile or reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .steps-timeline::before {
    transition: none;
    transform: scaleX(1);
  }
  .step-item {
    opacity: 1;
    transform: none;
  }
  .step-item .step-num,
  .step-item h4,
  .step-item p {
    opacity: 1;
    transform: none;
  }
}
.step-node {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 30px;
  position: relative;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  background: var(--bg); /* cover the connector line behind the node */
}
.step-item:hover .step-node {
  transform: scale(1.12);
}
.step-item:nth-child(1) .step-node {
  border: 1.5px solid rgba(0, 232, 122, 0.5);
  box-shadow: 0 0 0 4px rgba(0, 232, 122, 0.07);
}
.step-item:nth-child(2) .step-node {
  border: 1.5px solid rgba(0, 180, 232, 0.45);
  box-shadow: 0 0 0 4px rgba(0, 180, 232, 0.07);
}
.step-item:nth-child(3) .step-node {
  border: 1.5px solid rgba(120, 80, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(120, 80, 255, 0.07);
}
.step-item:nth-child(4) .step-node {
  border: 1.5px solid rgba(0, 232, 122, 0.6);
  box-shadow: 0 0 0 4px rgba(0, 232, 122, 0.09);
}
.step-item:hover:nth-child(1) .step-node {
  box-shadow: 0 0 22px rgba(0, 232, 122, 0.35);
}
.step-item:hover:nth-child(2) .step-node {
  box-shadow: 0 0 22px rgba(0, 180, 232, 0.3);
}
.step-item:hover:nth-child(3) .step-node {
  box-shadow: 0 0 22px rgba(120, 80, 255, 0.3);
}
.step-item:hover:nth-child(4) .step-node {
  box-shadow: 0 0 22px rgba(0, 232, 122, 0.4);
}
.step-num {
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.step-item:nth-child(1) .step-num {
  color: rgba(0, 232, 122, 0.75);
}
.step-item:nth-child(2) .step-num {
  color: rgba(0, 180, 232, 0.7);
}
.step-item:nth-child(3) .step-num {
  color: rgba(120, 80, 255, 0.7);
}
.step-item:nth-child(4) .step-num {
  color: rgba(0, 232, 122, 0.9);
}
.step-item h4 {
  font-family: var(--font-h);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ── QUIZ FORM ─────────────────────────────────────────── */
#pricing {
  text-align: center;
}

.qf-outer {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  background: rgba(11, 13, 20, 0.92);
  border: 1px solid rgba(0, 232, 122, 0.22);
  border-radius: 28px;
  padding: 52px 56px 48px;
  box-shadow:
    0 0 0 1px rgba(0, 232, 122, 0.05),
    0 0 80px rgba(0, 232, 122, 0.13),
    0 40px 80px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}
/* green top-edge shimmer */
.qf-outer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 232, 122, 0.7),
    transparent
  );
  border-radius: 2px;
  pointer-events: none;
}

/* progress bar */
.qf-bar-track {
  height: 2px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  margin-bottom: 56px;
  overflow: hidden;
}
.qf-bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--accent), rgba(0, 180, 232, 0.8));
  border-radius: 2px;
  transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  width: 0%;
}

/* step wrapper */
.qf-steps {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-start;
}
.qf-step {
  width: 100%;
  flex-shrink: 0;
  text-align: left;
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
}
.qf-step.qf-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
  position: relative;
}
.qf-step.qf-exit-left {
  opacity: 0;
  transform: translateX(-50px);
}
.qf-step.qf-exit-right {
  opacity: 0;
  transform: translateX(50px);
}

/* step number */
.qf-sn {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.qf-sn::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--accent);
  display: block;
}

/* question text */
.qf-q {
  font-family: var(--font-h);
  font-size: clamp(24px, 3.8vw, 40px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  color: var(--white);
}

/* text / email / url input */
.qf-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 22px;
  font-weight: 400;
  padding: 14px 0 14px 2px;
  outline: none;
  transition: border-color 0.25s;
  caret-color: var(--accent);
}
.qf-input:focus {
  border-bottom-color: var(--accent);
}
.qf-input::placeholder {
  color: rgba(255, 255, 255, 0.22);
}
.qf-hint {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 10px;
}

/* option cards */
.qf-opts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 8px;
}
.qf-opt {
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
.qf-opt:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
}
.qf-opt {
  position: relative;
}
.qf-opt.selected {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--white);
}
.qf-opt.selected::after {
  content: "✓";
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
}
.qf-opt.selected .qf-opt-icon {
  transform: scale(1.15);
}
.qf-opt-icon {
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}
.qf-opt-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
  transition: fill 0.2s;
}
.qf-opt-label {
  line-height: 1.35;
}
.qf-other-wrap {
  display: none;
  margin-top: 14px;
  animation: qfFadeIn 0.3s ease;
}
.qf-other-wrap.visible {
  display: block;
}
@keyframes qfFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.qf-multi-hint {
  font-size: 12px;
  color: var(--accent);
  opacity: 0.75;
  margin-bottom: 16px;
  margin-top: -20px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.qf-other-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 16px;
  font-weight: 400;
  padding: 10px 0 10px 2px;
  outline: none;
  transition: border-color 0.25s;
  caret-color: var(--accent);
}
.qf-other-input:focus {
  border-bottom-color: var(--accent);
}
.qf-other-input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

/* custom slider */
.qf-slider-wrap {
  margin-bottom: 8px;
}
.qf-spend-num {
  font-family: var(--font-h);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 28px;
  text-shadow: 0 0 40px rgba(0, 232, 122, 0.25);
  transition: all 0.15s ease;
}
.qf-spend-mo {
  font-size: 20px;
  color: var(--muted);
  font-weight: 400;
  margin-left: 4px;
}
.qf-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
}
.qf-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow:
    0 0 0 3px rgba(0, 232, 122, 0.25),
    0 0 20px rgba(0, 232, 122, 0.4);
  cursor: pointer;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.qf-range::-webkit-slider-thumb:hover {
  box-shadow:
    0 0 0 4px rgba(0, 232, 122, 0.3),
    0 0 30px rgba(0, 232, 122, 0.5);
  transform: scale(1.15);
}
.qf-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow: 0 0 20px rgba(0, 232, 122, 0.4);
  cursor: pointer;
}
.qf-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}
.qf-ticks span {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

/* nav */
.qf-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
.qf-back {
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--font-b);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  transition: color 0.2s;
}
.qf-back:hover {
  color: var(--white);
}
.qf-next {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  box-shadow: 0 0 28px rgba(0, 232, 122, 0.28);
}
.qf-next:hover {
  background: #fff;
  box-shadow: 0 0 44px rgba(0, 232, 122, 0.45);
  transform: translateY(-2px);
}
.qf-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.qf-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.3s;
}
.qf-dot.done {
  background: var(--accent);
  box-shadow: 0 0 8px rgba(0, 232, 122, 0.5);
}
.qf-dot.cur {
  background: var(--white);
  width: 18px;
  border-radius: 3px;
}

/* success */
.qf-success {
  text-align: center;
  padding: 20px 0;
}
.qf-check {
  font-size: 52px;
  margin-bottom: 20px;
  display: block;
  animation: pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pop {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.qf-success h3 {
  font-family: var(--font-h);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}
.qf-success p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 32px;
}
@keyframes qfShake {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-8px);
  }
  40% {
    transform: translateX(8px);
  }
  60% {
    transform: translateX(-5px);
  }
  80% {
    transform: translateX(5px);
  }
}

/* scale word animation */
#scaleWord {
  display: inline;
  white-space: nowrap;
}
.scale-a-extra {
  display: inline-block;
  opacity: 0;
  transform: translateY(-10px) scale(0.4);
  animation: aPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes aPop {
  0% {
    opacity: 0;
    transform: translateY(-12px) scale(0.3);
  }
  55% {
    opacity: 1;
    transform: translateY(3px) scale(1.18);
  }
  80% {
    transform: translateY(-2px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* LIBRARY PROMO */
#library-promo {
  overflow: hidden;
}
.lib-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.lib-promo-left .pill {
  margin-bottom: 20px;
}
.lib-promo-left h2 {
  margin-bottom: 20px;
}
.lib-promo-left p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
}
.lib-promo-right {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.lib-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 20px;
  filter: blur(3.5px);
  transform: scale(1.04);
  pointer-events: none;
  user-select: none;
  background: var(--bg-2);
}
.lib-mock-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 18px 16px;
}
.lib-mock-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.lmt-ai {
  background: rgba(0, 232, 122, 0.12);
  color: rgba(0, 232, 122, 0.85);
}
.lmt-hook {
  background: rgba(59, 130, 246, 0.12);
  color: rgba(59, 130, 246, 0.85);
}
.lmt-sys {
  background: rgba(168, 85, 247, 0.12);
  color: rgba(168, 85, 247, 0.85);
}
.lmt-vid {
  background: rgba(251, 191, 36, 0.12);
  color: rgba(251, 191, 36, 0.85);
}
.lib-mock-title {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}
.lib-mock-meta {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
}
/* gradient + lock overlay */
.lib-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(7, 7, 11, 0.6) 55%,
    var(--bg) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 32px;
  gap: 14px;
}
.lib-lock-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 232, 122, 0.1);
  border: 1px solid rgba(0, 232, 122, 0.25);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  backdrop-filter: blur(8px);
}
@media (max-width: 900px) {
  .lib-promo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .lib-preview-inner {
    grid-template-columns: 1fr;
  }
}

/* TESTIMONIALS MARQUEE */
#testimonials {
  text-align: center;
  overflow: hidden;
}
.testi-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 0;
}
.testi-row {
  display: flex;
  gap: 16px;
  width: max-content;
}
.testi-row.fwd {
  animation: testi-fwd 40s linear infinite;
}
.testi-row.rev {
  animation: testi-rev 40s linear infinite;
}
.testi-row:hover {
  animation-play-state: paused;
}
@keyframes testi-fwd {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes testi-rev {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.testi-outer {
  position: relative;
  overflow: hidden;
}
.testi-outer::before,
.testi-outer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  z-index: 2;
  pointer-events: none;
}
.testi-outer::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.testi-outer::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.testi-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  width: 340px;
  flex-shrink: 0;
  text-align: left;
  background: var(--glass-bg);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--border);
}
.stars {
  color: var(--accent);
  font-size: 13px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testi-text {
  font-size: 14px;
  line-height: 1.76;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 20px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: var(--accent);
  flex-shrink: 0;
}
.author-name {
  font-weight: 600;
  font-size: 13.5px;
}
.author-role {
  font-size: 11.5px;
  color: var(--muted);
}

/* FAQ */
#faq {
  padding: 110px 0;
}
.faq-wrap {
  max-width: 700px;
  margin: 0 auto;
}
.faq-intro {
  text-align: center;
  margin-bottom: 44px;
}
.faq-intro h2 {
  margin-bottom: 14px;
}
.faq-intro p {
  color: var(--muted);
  font-size: 17px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.faq-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--glass-bg);
  transition: border-color 0.3s;
}
.faq-item.open {
  border-color: var(--border-accent);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 500;
  padding: 20px 22px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--accent);
  transition: transform 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}
.faq-item.open .faq-answer {
  max-height: 280px;
}
.faq-a-inner {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.76;
}

/* FINAL CTA */
#cta-final {
  text-align: center;
  padding: 130px 0;
}
.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.cta-glow-bg {
  position: absolute;
  width: 700px;
  height: 340px;
  background: radial-gradient(
    ellipse,
    rgba(0, 232, 122, 0.13) 0%,
    transparent 70%
  );
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(50px);
}
.cta-inner h2 {
  font-size: clamp(36px, 5vw, 62px);
  margin-bottom: 14px;
}
.cta-inner p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 38px;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 38px 0;
  position: relative;
  z-index: 1;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-links {
  display: flex;
  gap: 26px;
  list-style: none;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--white);
}
.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

/* ── HAMBURGER ──────────────────────────────────────────── */
.nav-ham {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  width: 38px;
  height: 38px;
  border-radius: 9px;
  cursor: pointer;
  font-size: 17px;
  transition:
    border-color 0.2s,
    background 0.2s;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-ham:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 299;
  background: rgba(7, 7, 11, 0.97);
  backdrop-filter: blur(28px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.mob-menu.open {
  display: flex;
}
.mob-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 20px;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mob-close:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}
.mob-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  list-style: none;
  width: 100%;
  padding: 0 32px;
}
.mob-links a {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s;
}
.mob-links a:hover,
.mob-links a.nav-lib {
  color: var(--accent);
}
.mob-cta {
  margin-top: 32px;
}

/* ── HERO VIDEO PLACEHOLDER ─────────────────────────────── */
.hero-vid-placeholder {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 72px 40px;
  background: linear-gradient(
    160deg,
    rgba(11, 13, 20, 0.98) 0%,
    rgba(7, 7, 11, 1) 100%
  );
  border-radius: inherit;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.hero-vid-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 50% 40%,
    rgba(0, 232, 122, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-vid-placeholder.hidden {
  display: none;
}
.ph-play-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 232, 122, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 232, 122, 0.07);
  flex-shrink: 0;
}
.ph-play-ring svg {
  width: 22px;
  height: 22px;
  fill: var(--accent);
  margin-left: 3px;
}
.ph-label {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}
.ph-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
  margin-top: -12px;
}
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 16px;
}
.scroll-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: arrowBob 2s ease-in-out infinite;
}
@keyframes arrowBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

/* ── PRICING CALCULATOR ──────────────────────────────────── */
#pricing-calc {
  border-top: 1px solid var(--border);
}
.pcalc-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.pcalc-card {
  background: rgba(11, 13, 20, 0.92);
  border: 1px solid rgba(0, 232, 122, 0.2);
  border-radius: 28px;
  padding: 52px 56px;
  box-shadow:
    0 0 80px rgba(0, 232, 122, 0.08),
    0 40px 80px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}
.pcalc-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 232, 122, 0.7),
    transparent
  );
}
.pcalc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.pcalc-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pcalc-qty {
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
}
.pcalc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 8px;
}
.pcalc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow:
    0 0 0 3px rgba(0, 232, 122, 0.25),
    0 0 16px rgba(0, 232, 122, 0.4);
  cursor: pointer;
  transition: transform 0.2s;
}
.pcalc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
.pcalc-price-tag {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  background: rgba(0, 232, 122, 0.08);
  border: 1px solid rgba(0, 232, 122, 0.18);
  border-radius: 8px;
  padding: 4px 12px;
  transition: all 0.25s;
  white-space: nowrap;
}
.pcalc-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  min-height: 30px;
}
.pcalc-range-hint {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 6px;
}

/* Milestone markers */
.pcalc-slider-wrap {
  position: relative;
  padding-bottom: 28px;
  margin-bottom: 4px;
}
.pcalc-milestone {
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  pointer-events: none;
}
.pcalc-milestone-tick {
  width: 2px;
  height: 10px;
  background: rgba(0, 232, 122, 0.4);
  border-radius: 1px;
}
.pcalc-milestone-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(0, 232, 122, 0.5);
  white-space: nowrap;
}
.pcalc-range-ends {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
}

/* Discount badge */
.pcalc-discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #000;
  background: var(--accent);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
  margin-top: 2px;
  opacity: 0;
  transform: translateY(4px) scale(0.95);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  pointer-events: none;
}
.pcalc-discount-badge.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.pcalc-price-tag.discounted {
  background: rgba(0, 232, 122, 0.15);
  border-color: rgba(0, 232, 122, 0.4);
  color: var(--accent);
}
.pcalc-price-original {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
  text-decoration: line-through;
  margin-top: 2px;
}

.pcalc-divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 28px;
}
.pcalc-addon {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(245, 200, 66, 0.04);
  border: 1px solid rgba(245, 200, 66, 0.14);
  cursor: pointer;
  transition:
    background 0.25s,
    border-color 0.25s;
  user-select: none;
}
.pcalc-addon:hover {
  background: rgba(245, 200, 66, 0.08);
  border-color: rgba(245, 200, 66, 0.25);
}
.pcalc-addon.active {
  background: rgba(245, 200, 66, 0.1);
  border-color: rgba(245, 200, 66, 0.35);
}
.pcalc-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1.5px solid rgba(245, 200, 66, 0.4);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s;
  background: transparent;
}
.pcalc-addon.active .pcalc-check {
  background: var(--gold);
  border-color: var(--gold);
}
.pcalc-check-mark {
  font-size: 13px;
  color: #000;
  opacity: 0;
  transition: opacity 0.2s;
}
.pcalc-addon.active .pcalc-check-mark {
  opacity: 1;
}
.pcalc-addon-text h5 {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}
.pcalc-addon-text p {
  font-size: 13px;
  color: var(--muted);
}
.pcalc-addon-price {
  margin-left: auto;
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
}

.pcalc-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding: 24px 28px;
  border-radius: 16px;
  background: rgba(0, 232, 122, 0.05);
  border: 1px solid rgba(0, 232, 122, 0.18);
  gap: 12px;
}
.pcalc-total-l {
  font-size: 14px;
  color: var(--muted);
  min-width: 0;
}
.pcalc-total-l strong {
  display: block;
  font-family: var(--font-h);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  margin-top: 4px;
  transition: all 0.3s;
  white-space: nowrap;
}
.pcalc-total-r {
  text-align: right;
  flex-shrink: 0;
}
.pcalc-total-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 4px;
  white-space: nowrap;
}
.pcalc-cta {
  margin-top: 20px;
  width: 100%;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

/* ── TEAM SECTION ────────────────────────────────────────── */
#team {
  border-top: 1px solid var(--border);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 0;
}
.team-card {
  padding: 24px 20px;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--border);
  transition:
    border-color 0.3s,
    transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.team-card:hover {
  border-color: rgba(0, 232, 122, 0.2);
  transform: translateY(-4px);
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 800;
  color: #000;
  flex-shrink: 0;
  overflow: hidden;
  background: transparent;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.team-name {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
}
.team-role {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}
.team-dept {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  margin-top: 2px;
}
.dept-creative {
  background: rgba(0, 232, 122, 0.1);
  color: rgba(0, 232, 122, 0.85);
}
.dept-strategy {
  background: rgba(59, 130, 246, 0.1);
  color: rgba(59, 130, 246, 0.85);
}
.dept-media {
  background: rgba(245, 200, 66, 0.1);
  color: rgba(245, 200, 66, 0.85);
}
.dept-ops {
  background: rgba(180, 130, 255, 0.1);
  color: rgba(180, 130, 255, 0.85);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
  .nav-ham {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-right {
    display: none;
  }
  /* Stats go vertical on mobile */
  .hero-stats {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: nowrap;
    margin-top: 32px;
  }
  .hero-left {
    text-align: center;
    max-width: 100%;
  }
  .hero-eyebrow {
    justify-content: center;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .h-divider {
    display: none;
  }
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .work-item.tall {
    grid-row: auto;
    aspect-ratio: 9/16;
    min-height: auto;
  }
  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .reason-row {
    grid-template-columns: 44px 40px 1fr;
    grid-template-rows: auto auto;
  }
  .rr-desc {
    grid-column: 2 / -1;
  }
  .reasons-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .steps-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }
  .steps-timeline::before {
    display: none;
  }
  .results-grid {
    grid-template-columns: 1fr;
  }
  .rc-featured {
    grid-column: auto !important;
    grid-template-columns: 1fr 160px !important;
  }
  .enterprise-row {
    flex-direction: column;
    text-align: center;
  }
  .p-card.popular {
    transform: none;
  }
  .p-card.popular:hover {
    transform: translateY(-5px);
  }
  .lib-promo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pcalc-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .pcalc-card {
    padding: 36px 28px;
  }
  .pcalc-total {
    flex-direction: column;
    align-items: flex-start;
  }
  .pcalc-total-r {
    width: 100%;
    text-align: left;
  }
  .pcalc-total-note {
    white-space: normal;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 18px;
  }
  section {
    padding: 72px 0;
  }
  h1 {
    font-size: clamp(36px, 11vw, 54px);
  }
  h2 {
    font-size: clamp(28px, 7.5vw, 42px);
  }
  .hero-sub {
    font-size: 15px;
    line-height: 1.68;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn {
    justify-content: center;
  }
  .hero-stats {
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
  }
  .h-stat {
    align-items: center;
  }
  .h-divider {
    display: none;
  }
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .reason-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 0;
  }
  .rr-num {
    display: none;
  }
  .rr-icon {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }
  #reasons {
    text-align: center;
  }
  #reasons .section-intro {
    text-align: center;
  }
  #reasons .section-intro p {
    margin-left: auto;
    margin-right: auto;
  }
  .reasons-header {
    align-items: center;
  }
  .steps-timeline {
    grid-template-columns: 1fr;
    gap: 32px 0;
  }
  .qf-outer {
    padding: 28px 20px 24px;
    border-radius: 18px;
  }
  .qf-nav {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 20px;
  }
  .qf-next {
    width: 100%;
    justify-content: center;
  }
  .qf-dots {
    justify-content: center;
  }
  .qf-back {
    display: none;
  }
  .qf-opts {
    grid-template-columns: 1fr !important;
  }
  .qf-q {
    font-size: clamp(20px, 6vw, 28px);
  }
  .qf-spend-num {
    font-size: clamp(36px, 10vw, 56px);
  }
  .lib-promo-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lib-promo-left {
    text-align: center;
  }
  .lib-promo-left p {
    margin-left: auto;
    margin-right: auto;
  }
  .team-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 12px;
    /* hide scrollbar visually */
    scrollbar-width: none;
  }
  .team-grid::-webkit-scrollbar {
    display: none;
  }
  .team-card {
    flex: 0 0 180px;
    scroll-snap-align: start;
  }
  /* Show first 3 cards immediately without scroll-triggered reveal */
  .team-grid .team-card:nth-child(1),
  .team-grid .team-card:nth-child(2),
  .team-grid .team-card:nth-child(3) {
    opacity: 1;
    transform: none;
  }

  /* Scroll dot indicators */
  .team-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
  }
  .team-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition:
      background 0.25s,
      transform 0.25s,
      width 0.25s;
    flex-shrink: 0;
  }
  .team-dot.active {
    background: var(--accent, #00e87a);
    width: 18px;
    border-radius: 3px;
    transform: none;
  }

  .lib-preview-inner {
    grid-template-columns: 1fr;
  }
  .logos-track {
    animation-duration: 18s;
  }
  .testi-outer::before,
  .testi-outer::after {
    width: 60px;
  }
  .cta-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-btns .btn {
    justify-content: center;
  }
  .footer-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
  .section-intro p {
    font-size: 15px;
  }
  .faq-q {
    font-size: 14px;
    padding: 16px 18px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE PERFORMANCE OPTIMIZATIONS
   Target: reduce GPU compositing cost, fix scroll jank
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* 1. ORBS — biggest GPU cost on mobile.
        Replace expensive filter:blur(110px) with a lighter radial-gradient
        that fakes the glow without compositing overhead. */
  .orb-wrap {
    position: absolute; /* not fixed — avoids a separate compositing layer */
  }
  .orb {
    filter: none; /* remove blur — the radial-gradient itself fades to transparent */
    opacity: 0.55; /* slightly lower so it looks similar without blur */
    will-change: auto; /* don't promote to GPU layer */
  }
  /* Only keep first 2 orbs on mobile, hide the rest */
  .o3,
  .o4,
  .o5,
  .o6 {
    display: none;
  }
  .o1 {
    width: 360px;
    height: 360px;
    top: -120px;
    left: -80px;
  }
  .o2 {
    width: 280px;
    height: 280px;
    top: 80px;
    right: -60px;
  }

  /* 2. backdrop-filter — creates a stacking context + compositing layer on EVERY element.
        On dark backgrounds the visual difference is imperceptible. */
  .glass,
  .glass-green,
  .proof-card,
  .proof-card-sm,
  nav.scrolled,
  .qf-outer,
  .live-badge,
  .cs-badge,
  .mob-menu {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* 3. REVEAL — disable the opacity/transform animation completely on mobile.
        This is the main cause of "content appearing/disappearing" while scrolling.
        Content is always visible; no IntersectionObserver-triggered repaints. */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* 4. will-change — only keep on elements that actually animate on mobile */
  .logos-track {
    will-change: transform; /* marquee animation — keep */
  }
  .work-item,
  .sa-item {
    will-change: auto; /* hover-only effects — not needed on touch */
  }

  /* 5. Heavy hover transitions — disable transform/box-shadow transitions
        on touch devices (they never fire, but the browser still tracks them) */
  .work-item,
  .sa-item,
  .glass,
  .rc,
  .cs-card,
  .team-card,
  .svc-card,
  .proof-card,
  .faq-item {
    transition: none;
  }

  /* 6. media-glow filter blur — skip on mobile */
  .media-glow {
    filter: none;
  }

  /* 7. work-item shimmer ::after — GPU-heavy on mobile */
  .work-item::after {
    display: none;
  }

  /* 8. Testimonials/pricing scroll containers — enable momentum scroll */
  .testi-track,
  .team-grid {
    -webkit-overflow-scrolling: touch;
  }
}
