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

:root {
  --bg: #08080F;
  --bg-2: #0E0E1A;
  --bg-3: #131C3A;
  --accent: #6C5CE7;
  --accent-2: #A29BFE;
  --accent-glow: rgba(108, 92, 231, 0.35);
  --white: #FAFAFA;
  --white-60: rgba(250, 250, 250, 0.6);
  --white-20: rgba(250, 250, 250, 0.12);
  --white-10: rgba(250, 250, 250, 0.06);
  --border: rgba(250, 250, 250, 0.08);
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-big: 'Bebas Neue', sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
}

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

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

input,
textarea,
button {
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}


/* ── REVEAL ANIMATIONS ── */
.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-card {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

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

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

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

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

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

/* ── SECTION LABELS ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-sub {
  color: var(--white-60);
  max-width: 520px;
  margin: 0 auto;
  font-size: 17px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 1;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  z-index: -2;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--accent-glow);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span,
.btn-primary .arrow {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  border: 1px solid var(--border);
  transition: border-color 0.3s, background 0.3s;
}

.btn-ghost:hover {
  border-color: var(--accent-2);
  background: var(--white-10);
}

/* ═══════════════════════════════════
   NAVBAR
═══════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  transition: all 0.4s ease;
  width: 100%;
}

.navbar.scrolled {
  background: rgba(8, 8, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 48px;
}

.nav-logo {
  height: 48px;
  width: auto;
  display: flex;
  align-items: center
}

.logo-img {
  height: clamp(12px, 1.7vw, 30px);
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--white-60);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border: 1px solid var(--accent);
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-2);
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--white);
}

.nav-cta .arrow {
  transition: transform 0.3s;
}

.nav-cta:hover .arrow {
  transform: translateX(4px);
}

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

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

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

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.mobile-menu ul {
  text-align: center;
}

.mobile-menu li {
  margin-bottom: 32px;
}

.mob-link {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--white-60);
  transition: color 0.3s;
}

.mob-link:hover,
.mob-link.cta {
  color: var(--white);
}

.mob-link.cta {
  color: var(--accent-2);
}

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 140px 40px 120px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108, 92, 231, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 92, 231, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

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

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.25) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  animation: float-slow 8s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(162, 155, 254, 0.15) 0%, transparent 70%);
  bottom: -50px;
  right: -50px;
  animation: float-slow 10s ease-in-out infinite reverse;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
  top: 40%;
  left: 60%;
  animation: float-slow 12s ease-in-out infinite 2s;
}

@keyframes float-slow {

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

  50% {
    transform: translate(30px, -30px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--white-10);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white-60);
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  backdrop-filter: blur(8px);
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

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

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 86px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.hero-headline .line {
  display: block;
}

.accent-line {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 60%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--white-60);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 80px;
  margin-bottom: 80px;
  padding: 28px 48px;
  background: var(--white-10);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 2;
}

.stat-item {
  align-items: center;
  padding: 0 48px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  display: inline-block;
  transform: translateY(2px);
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  color: var(--accent);
  margin-left: 2px;
  line-height: 1;
  display: inline-block;
  transform: translateY(4px);
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--white-60);
  letter-spacing: 0.05em;
  margin-top: 4px;
  text-transform: uppercase;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

@keyframes fade-up-down {

  0%,
  100% {
    opacity: 0.4;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(-6px);
  }
}

/* ═══════════════════════════════════
   TICKER
═══════════════════════════════════ */
.ticker-wrap {
  overflow: hidden;
  background: var(--accent);
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}

.ticker-track span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 28px;
  color: rgba(255, 255, 255, 0.9);
}

.ticker-track .sep {
  color: rgba(255, 255, 255, 0.5);
  padding: 0 4px;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

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

/* ═══════════════════════════════════
   BRANDS STRIP
═══════════════════════════════════ */
.brands-strip {
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.brands-strip .section-label {
  margin-bottom: 40px;
  display: block;
}

.brands-marquee {
  overflow: hidden;
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: brands-scroll 25s linear infinite;
  width: max-content;
}

.brand-logo {
  padding: 14px 32px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white-60);
  white-space: nowrap;
  transition: all 0.3s;
  cursor: default;
}

.brand-logo:hover {
  color: var(--white);
  border-color: var(--accent);
  background: var(--white-10);
}

@keyframes brands-scroll {
  from {
    transform: translateX(0);
  }

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

/* ═══════════════════════════════════
   SERVICES
═══════════════════════════════════ */
.services {
  padding: 120px 0;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  padding: 48px 40px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(108, 92, 231, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-num {
  font-family: var(--font-big);
  font-size: 80px;
  line-height: 1;
  color: var(--white-10);
  position: absolute;
  top: 20px;
  right: 30px;
  transition: color 0.4s;
}

.service-card:hover .service-num {
  color: rgba(108, 92, 231, 0.15);
}

.service-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: var(--white-10);
  color: var(--accent-2);
  transition: all 0.3s;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card:hover .service-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  transition: color 0.3s;
}

.service-card:hover h3 {
  color: var(--accent-2);
}

.service-card p {
  color: var(--white-60);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-features {
  margin-bottom: 28px;
}

.service-features li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--white-60);
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.service-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-2);
  transition: gap 0.3s, color 0.3s;
}

.service-link:hover {
  color: var(--white);
  gap: 10px;
}

/* ═══════════════════════════════════
   CREATORS
═══════════════════════════════════ */
.creators {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.creators-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-big);
  font-size: clamp(100px, 18vw, 240px);
  color: var(--white-10);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.1em;
}

.creators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.creator-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
}

.creator-card:hover {
  transform: translateY(-8px);
  border-color: rgba(108, 92, 231, 0.3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.creator-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.creator-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-3) 0%, #1a1a2e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white-60);
  font-size: 13px;
  text-align: center;
}

.creator-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-placeholder-icon svg {
  width: 60px;
  height: 60px;
}

.creator-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 15, 0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.creator-card:hover .creator-overlay {
  opacity: 1;
}

.creator-platforms {
  display: flex;
  gap: 8px;
}

.creator-platforms a {
  padding: 4px 12px;
  background: var(--accent);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.creator-platforms a:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
}

.creator-info {
  padding: 20px 24px;
}

.creator-info h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.creator-info p {
  font-size: 13px;
  color: var(--white-60);
}

.creators-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.creators-note {
  font-size: 14px;
  color: var(--white-60);
}

/* ═══════════════════════════════════
   PARALLAX BANNER
═══════════════════════════════════ */
.parallax-banner {
  height: 60vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-inner {
  position: absolute;
  inset: -20%;
  background: linear-gradient(135deg, #0D0B2B 0%, #131C3A 40%, #1a0a40 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

.parallax-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(108, 92, 231, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(162, 155, 254, 0.2) 0%, transparent 50%);
}

.parallax-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108, 92, 231, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 92, 231, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.parallax-content {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 40px;
}

.parallax-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.highlight-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.parallax-content p {
  color: var(--white-60);
  font-size: 18px;
  margin-bottom: 32px;
}

/* ═══════════════════════════════════
   WORK
═══════════════════════════════════ */
.work {
  padding: 120px 0;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.work-card-large {
  grid-row: span 2;
}

.work-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
}

.work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(108, 92, 231, 0.3);
}

.work-img-placeholder {
  background: linear-gradient(135deg, #1a1a2e 0%, var(--bg-3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-60);
  font-size: 14px;
  font-style: italic;
}

.work-card-large .work-img-placeholder {
  height: 300px;
}

.work-card:not(.work-card-large) .work-img-placeholder {
  height: 200px;
}

.work-info {
  padding: 28px 32px;
}

.work-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.work-tags span {
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.work-info h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.work-info p {
  color: var(--white-60);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.work-metrics {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric-val {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-2);
}

.metric-label {
  font-size: 12px;
  color: var(--white-60);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.work-link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-2);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
}

.work-link:hover {
  color: var(--white);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════
   ABOUT
═══════════════════════════════════ */
.about {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.about-bg-text {
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: var(--font-big);
  font-size: clamp(80px, 15vw, 200px);
  color: var(--white-10);
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.1em;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  color: var(--white-60);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  margin-top: 32px;
}

.badge {
  padding: 8px 20px;
  background: var(--white-10);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}

.about-orb-wrap {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--bg-3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: spin-slow 20s linear infinite;
  box-shadow: 0 0 80px var(--accent-glow);
}

.about-orb-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), transparent, var(--accent-2));
  z-index: -1;
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

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

.about-logo-center {
  width: 200px;
  height: 200px;
  animation: spin-slow 20s linear infinite reverse;
}

.about-logo-center img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floating-chip {
  position: absolute;
  padding: 10px 20px;
  background: rgba(8, 8, 15, 0.9);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.chip-1 {
  top: 60px;
  right: 20px;
  animation: float-chip 4s ease-in-out infinite;
}

.chip-2 {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  animation: float-chip 5s ease-in-out infinite 1s;
}

.chip-3 {
  bottom: 60px;
  right: 30px;
  animation: float-chip 4.5s ease-in-out infinite 0.5s;
}

@keyframes float-chip {

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

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

.chip-2 {
  animation: float-chip-mid 5s ease-in-out infinite 1s;
}

@keyframes float-chip-mid {

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

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

/* ═══════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════ */
.testimonials {
  padding: 120px 0;
  overflow: hidden;
}

.testimonials .section-label {
  display: block;
  text-align: center;
}

.testimonials .section-title {
  text-align: center;
}

.testimonials-track-wrap {
  overflow: hidden;
  margin: 48px 0 32px;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card {
  min-width: calc(50% - 12px);
  flex-shrink: 0;
  padding: 40px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}

.testi-quote {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.8;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 800;
}

.testimonial-card p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--white-60);
  margin-bottom: 28px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
}

.testi-author span {
  font-size: 13px;
  color: var(--white-60);
}

.testi-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.testi-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white-10);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 18px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* ═══════════════════════════════════
   CONTACT
═══════════════════════════════════ */
.invalid-input {
  border-color: #ff4757 !important;
  background: rgba(255, 71, 87, 0.05) !important;
}

.invalid-radio {
  border-color: #ff4757 !important;
}

.custom-error {
  color: #ff4757;
  font-size: 12px;
  margin-top: 6px;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.05em;
  animation: slide-down 0.3s ease forwards;
}

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

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

.contact {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.contact-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  pointer-events: none;
}

.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-align: center;
}

.contact-headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-sub {
  text-align: center;
  color: var(--white-60);
  font-size: 17px;
  margin-bottom: 64px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  justify-content: space-between;
  gap: 80px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white-60);
}

.form-group input,
.form-group textarea {
  background: var(--white-10);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--white);
  font-size: 15px;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(108, 92, 231, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group textarea {
  resize: vertical;
}

.radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.radio-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--white-10);
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: all 0.3s;
}

.radio-btn:has(input:checked) {
  background: rgba(108, 92, 231, 0.2);
  border-color: var(--accent);
}

.radio-btn input {
  display: none;
}

.radio-btn span {
  font-size: 14px;
  font-weight: 500;
}

.form-submit {
  align-self: flex-start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 8px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.mobile-mail {
  display: none;
}

.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--white-10);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-item a,
.contact-info-item span {
  font-size: 14px;
  color: var(--white-60);
  transition: color 0.3s;
}

.contact-info-item a:hover {
  color: var(--accent-2);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

.social-link {
  font-size: 14px;
  color: var(--white-60);
  transition: color 0.3s;
}

.social-link:hover {
  color: var(--accent-2);
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  background: var(--bg);
}

.container.footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 40px;
  flex-wrap: wrap;
}

.footer-logo img {
  height: clamp(12px, 1.7vw, 30px);
  width: auto;
  display: block;
}

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

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--white-60);
  transition: color 0.3s;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px 0;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom span {
  font-size: 13px;
  color: var(--white-60);
}

.footer-tagline {
  color: var(--accent-2) !important;
}

/* --- Work Card Button --- */
.work-content .work-description {
  margin-bottom: 24px;
  /* Gives some space before the button */
}

.work-content .card-btn {
  font-size: 13px;
  padding: 10px 20px;
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.work-content .card-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    height: 360px;
  }

  .about-bg-text {
    display: none;
  }

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

  .work-card-large {
    grid-row: span 1;
  }

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

@media (max-width: 768px) {
  .navbar {
    padding: 20px 24px;
  }

  .navbar.scrolled {
    padding: 14px 24px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 120px 24px 100px;
  }

  .hero-stats {
    padding: 20px 24px;
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-item {
    padding: 0 20px;
  }

  .stat-divider {
    display: none;
  }

  .container {
    padding: 0 24px;
  }

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

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

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

  .footer-top {
    padding: 0 24px;
    flex-direction: column;
  }

  .footer-bottom {
    padding: 20px 24px 0;
  }

  .footer-links-grid {
    gap: 36px;
  }

  .testimonial-card {
    min-width: calc(85vw);
  }

  .creators-bg-text {
    display: none;
  }

  .desktop-mail {
    display: none;
  }

  .mobile-mail {
    display: inline;
  }
}

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

  .hero-headline {
    font-size: clamp(44px, 12vw, 72px);
  }
}

@media (min-width: 992px) {
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }

  .large-card {
    grid-column: auto;
  }
}

.work-img-placeholder {
  height: 300px !important;
}