/* =========================================================
   AiContentProduction.com
   Dark green / neon yellow / orange · metajive-inspired
   ========================================================= */

:root {
  --bg: #050a07;
  --bg-2: #07120c;
  --bg-3: #0a1810;
  --line: rgba(212, 255, 0, 0.12);
  --line-strong: rgba(212, 255, 0, 0.35);

  --text: #e6f5e8;
  --text-dim: #8fa394;
  --text-muted: #5a6b5e;

  --yellow: #d4ff00;
  --yellow-hot: #e6ff1f;
  --orange: #ff8a00;
  --orange-hot: #ff6a00;

  --glow-1: 0 0 30px rgba(212, 255, 0, 0.45),
            0 0 80px rgba(255, 138, 0, 0.25);
  --glow-2: 0 0 60px rgba(212, 255, 0, 0.65),
            0 0 140px rgba(255, 138, 0, 0.35);

  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --container: 1440px;
  --pad: clamp(20px, 4vw, 60px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--yellow); color: var(--bg); }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}

@media (hover: none) {
  body { cursor: auto; }
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s var(--ease);
}

button { font: inherit; cursor: none; background: none; border: 0; color: inherit; }

/* =========================================================
   GRAIN OVERLAY
   ========================================================= */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =========================================================
   CURSOR
   ========================================================= */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid var(--yellow);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  mix-blend-mode: difference;
}
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 4px; height: 4px;
  background: var(--yellow);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor.is-hover {
  width: 64px; height: 64px;
  background: rgba(212, 255, 0, 0.15);
  border-color: var(--yellow-hot);
}
@media (hover: none) {
  .cursor, .cursor-dot { display: none; }
}

/* =========================================================
   AMBIENT GLOWS
   ========================================================= */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}
.ambient-glow--yellow {
  width: 600px; height: 600px;
  background: var(--yellow);
  top: -200px; left: -150px;
}
.ambient-glow--orange {
  width: 700px; height: 700px;
  background: var(--orange);
  bottom: -300px; right: -200px;
  opacity: 0.25;
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px var(--pad);
  transition: background .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(5, 10, 7, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.nav__logo-mark {
  color: var(--yellow);
  font-size: 14px;
  text-shadow: var(--glow-1);
  animation: pulse 3s ease-in-out infinite;
}
.nav__logo-img {
  width: 32px;
  height: 32px;
  display: block;
  filter: drop-shadow(0 0 14px rgba(212, 255, 0, 0.45)) drop-shadow(0 0 28px rgba(255, 138, 0, 0.25));
  transition: transform .35s var(--ease), filter .35s var(--ease);
}
.nav__logo:hover .nav__logo-img {
  transform: rotate(-8deg) scale(1.05);
  filter: drop-shadow(0 0 18px rgba(212, 255, 0, 0.65)) drop-shadow(0 0 36px rgba(255, 138, 0, 0.4));
}
.nav__logo-dot { color: var(--yellow); }
.nav__logo-tld { color: var(--text-dim); }
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer__logo-img {
  width: 24px;
  height: 24px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}
.nav__menu a {
  position: relative;
  padding: 6px 0;
  color: var(--text-dim);
}
.nav__menu a:hover { color: var(--yellow); }
.nav__menu a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--yellow);
  transition: width .3s var(--ease);
}
.nav__menu a:not(.nav__cta):hover::after { width: 100%; }

.nav__cta {
  padding: 10px 18px !important;
  border: 1px solid var(--yellow);
  border-radius: 999px;
  color: var(--yellow) !important;
  background: linear-gradient(135deg, rgba(212,255,0,0.06), rgba(255,138,0,0.06));
  transition: all .3s var(--ease);
}
.nav__cta:hover {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--bg) !important;
  box-shadow: var(--glow-1);
  transform: translateY(-1px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--yellow);
  transition: transform .3s var(--ease);
}

@media (max-width: 880px) {
  .nav__menu { display: none; }
  .nav__menu.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(5,10,7,0.97);
    backdrop-filter: blur(20px);
    padding: 24px var(--pad);
    border-bottom: 1px solid var(--line);
  }
  .nav__burger { display: flex; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn--primary,
.btn--primary-block {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
  color: var(--bg);
  box-shadow: var(--glow-1);
}
.btn--primary:hover,
.btn--primary-block:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-2);
  filter: brightness(1.1);
}
.btn--ghost,
.btn--ghost-block {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(212, 255, 0, 0.02);
}
.btn--ghost:hover,
.btn--ghost-block:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(212, 255, 0, 0.06);
}
.btn--primary-block,
.btn--ghost-block {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px var(--pad) 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* (removed full-bleed background video · hero video now lives in its own frame) */

/* =========================================================
   HERO · DEDICATED VIDEO PLAYER
   ========================================================= */
.hero__player {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero__player-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 22px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(212, 255, 0, 0.08) inset,
    0 0 80px -20px rgba(212, 255, 0, 0.25),
    0 0 120px -30px rgba(255, 138, 0, 0.2);
  transition: box-shadow .5s var(--ease), border-color .4s var(--ease);
}
.hero__player-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(212,255,0,0.5), transparent 40%, transparent 60%, rgba(255,138,0,0.4));
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  padding: 1px;
}
.hero__player-frame:hover {
  box-shadow:
    0 40px 100px -20px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(212, 255, 0, 0.18) inset,
    0 0 120px -20px rgba(212, 255, 0, 0.4),
    0 0 180px -30px rgba(255, 138, 0, 0.3);
}
.hero__player-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  background: #000;
}

/* LIVE / HERO REEL indicator */
.hero__player-live {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(5, 10, 7, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text);
  text-transform: uppercase;
}
.hero__player-live-dot {
  width: 7px; height: 7px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--yellow);
  animation: pulse 2s ease-in-out infinite;
}

/* Source caption underneath */
.hero__player-caption {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 18, 12, 0.4);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  align-self: flex-start;
  max-width: 100%;
  overflow: hidden;
}
.hero__player-source-label {
  color: var(--yellow);
  font-weight: 600;
}
.hero__player-caption a {
  color: var(--text);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.hero__player-caption a:hover { color: var(--yellow); }

/* =========================================================
   HERO · AUDIO BUTTON (inside player frame)
   ========================================================= */
.hero__audio-btn {
  position: absolute;
  z-index: 4;
  bottom: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px 14px 18px;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
  color: var(--bg);
  border: 0;
  border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: none;
  box-shadow: var(--glow-2);
  transition: transform .35s var(--ease), filter .35s var(--ease), box-shadow .35s var(--ease);
  animation: audioBtnPulse 2.4s ease-in-out infinite;
}
.hero__audio-btn:hover {
  transform: scale(1.06);
  filter: brightness(1.08);
}
.hero__audio-btn-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
}
.hero__audio-btn-icon svg { width: 100%; height: 100%; }
.hero__audio-btn-ring {
  position: absolute;
  inset: -6px;
  border: 2px solid var(--yellow);
  border-radius: 999px;
  opacity: 0.6;
  animation: audioBtnRing 2.4s ease-out infinite;
  pointer-events: none;
}
.hero__audio-btn[aria-pressed="true"] {
  animation: none;
  background: rgba(5, 10, 7, 0.78);
  backdrop-filter: blur(10px);
  color: var(--yellow);
  border: 1px solid var(--yellow);
  box-shadow: none;
}
.hero__audio-btn[aria-pressed="true"] .hero__audio-btn-ring { display: none; }

@keyframes audioBtnPulse {
  0%, 100% { box-shadow: 0 0 24px rgba(212,255,0,0.45), 0 0 60px rgba(255,138,0,0.25); }
  50%      { box-shadow: 0 0 44px rgba(212,255,0,0.85), 0 0 100px rgba(255,138,0,0.55); }
}
@keyframes audioBtnRing {
  0%   { transform: scale(1);    opacity: 0.6; }
  100% { transform: scale(1.45); opacity: 0;   }
}

@media (max-width: 640px) {
  .hero__audio-btn {
    bottom: 14px;
    right: 14px;
    padding: 12px 16px 12px 14px;
    font-size: 11px;
    gap: 8px;
  }
  .hero__player-frame { aspect-ratio: 9 / 12; }
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}
.hero__inner--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero__copy { min-width: 0; }

@media (max-width: 1100px) {
  .hero__inner--split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 32px;
}
.hero__eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--yellow);
  animation: pulse 2s ease-in-out infinite;
}

.hero__title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  font-size: clamp(48px, 7.5vw, 120px);
  margin-bottom: 36px;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .word {
  display: inline-block;
  transform: translateY(110%);
  animation: rise .9s var(--ease-out) forwards;
}
.hero__title .line:nth-child(1) .word:nth-child(1) { animation-delay: .05s; }
.hero__title .line:nth-child(1) .word:nth-child(2) { animation-delay: .1s; }
.hero__title .line:nth-child(2) .word:nth-child(1) { animation-delay: .15s; }
.hero__title .line:nth-child(2) .word:nth-child(2) { animation-delay: .2s; }
.hero__title .line:nth-child(2) .word:nth-child(3) { animation-delay: .25s; }
.hero__title .line:nth-child(3) .word { animation-delay: .35s; }
.hero__title .line:nth-child(4) .word { animation-delay: .45s; }

.italic {
  font-family: 'Inter', serif;
  font-style: italic;
  font-weight: 300;
}

.glow {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 70%, var(--orange-hot) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(212,255,0,0.4)) drop-shadow(0 0 60px rgba(255,138,0,0.25));
}

.hero__sub {
  max-width: 620px;
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--text-dim);
  margin-bottom: 40px;
  opacity: 0;
  animation: fade .8s var(--ease) .8s forwards;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 80px;
  opacity: 0;
  animation: fade .8s var(--ease) 1s forwards;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 720px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  opacity: 0;
  animation: fade .8s var(--ease) 1.2s forwards;
}
.hero__stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__stats strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.hero__stats span {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 600px) {
  .hero__stats { grid-template-columns: 1fr; gap: 18px; }
}

/* MARQUEE */
.hero__marquee {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 10, 7, 0.4);
  backdrop-filter: blur(8px);
  padding: 18px 0;
  overflow: hidden;
}
.marquee {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}
.marquee span:nth-child(even) {
  color: var(--yellow);
  text-shadow: 0 0 8px rgba(212, 255, 0, 0.5);
}

@keyframes scroll {
  to { transform: translateX(-50%); }
}
@keyframes rise {
  to { transform: translateY(0); }
}
@keyframes fade {
  to { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust {
  padding: 60px var(--pad);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.trust__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.trust__logos {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 60px);
  justify-content: center;
  align-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(15px, 1.5vw, 19px);
  color: var(--text-dim);
}
.trust__logos span {
  opacity: 0.6;
  transition: all .3s var(--ease);
}
.trust__logos span:hover {
  opacity: 1;
  color: var(--yellow);
}

/* =========================================================
   SECTION COMMON
   ========================================================= */
section {
  position: relative;
  z-index: 2;
}
.section-header {
  max-width: var(--container);
  margin: 0 auto;
  padding-bottom: 60px;
}
.section-header__label,
.manifesto__label {
  display: flex;
  gap: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.section-header__label span:first-child,
.manifesto__label span:first-child {
  color: var(--yellow);
}
.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  font-size: clamp(38px, 6vw, 88px);
}
.section-title--xl {
  font-size: clamp(48px, 8vw, 120px);
  margin-bottom: 24px;
}
.section-lead {
  max-width: 640px;
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--text-dim);
  margin-top: 18px;
}

/* =========================================================
   MANIFESTO
   ========================================================= */
.manifesto {
  padding: 120px var(--pad);
  border-bottom: 1px solid var(--line);
}
.manifesto__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
}
.manifesto__label {
  flex-direction: column;
  gap: 8px;
  padding-top: 18px;
}
.manifesto__body p {
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--text-dim);
  margin-top: 24px;
  max-width: 820px;
}
.manifesto__body p strong {
  color: var(--text);
  font-weight: 500;
}
@media (max-width: 880px) {
  .manifesto__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  padding: 120px var(--pad);
  border-bottom: 1px solid var(--line);
}
.services__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--bg);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: background .4s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(212,255,0,0.08), transparent 50%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { background: var(--bg-2); }

.service-card--accent {
  background: linear-gradient(180deg, rgba(212,255,0,0.04), rgba(255,138,0,0.02));
}

.service-card__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--yellow);
  letter-spacing: 0.1em;
}
.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.service-card p {
  color: var(--text-dim);
  font-size: 15px;
  margin-bottom: 8px;
}
.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
}
.service-card li {
  padding-left: 20px;
  position: relative;
}
.service-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--yellow);
}

@media (max-width: 1000px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   WORK
   ========================================================= */
.work {
  padding: 120px var(--pad);
  border-bottom: 1px solid var(--line);
}
.work__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.work-card {
  position: relative;
  grid-column: span 3;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  transition: transform .5s var(--ease), border-color .4s var(--ease);
}
.work-card--wide { grid-column: span 6; aspect-ratio: 16 / 7; }

.work-card:hover { transform: translateY(-4px); border-color: var(--yellow); }

.work-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.work-card__media iframe,
.work-card__media video {
  position: absolute;
  top: 50%; left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}
.work-card__media video { pointer-events: auto; }
.work-card__source {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(5, 10, 7, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  max-width: calc(100% - 28px);
  overflow: hidden;
}
.work-card__source-label {
  color: var(--yellow);
  font-weight: 600;
  text-transform: uppercase;
  flex-shrink: 0;
}
.work-card__source a {
  color: var(--text-dim);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.work-card__source a:hover { color: var(--yellow); }

.work-card--placeholder {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(212, 255, 0, 0.03),
      rgba(212, 255, 0, 0.03) 12px,
      transparent 12px,
      transparent 24px
    ),
    var(--bg-2);
  border-style: dashed;
  border-color: var(--line-strong);
}
.work-card__placeholder-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 32px;
  color: var(--text-dim);
}
.work-card__placeholder-icon {
  font-size: 48px;
  color: var(--yellow);
  line-height: 1;
  opacity: 0.7;
}
.work-card__placeholder-inner h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}
.work-card__placeholder-inner p {
  font-size: 13px;
  max-width: 360px;
}
.work-card__placeholder-inner code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--yellow);
  background: rgba(212, 255, 0, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
}

.work__note {
  max-width: var(--container);
  margin: 32px auto 0;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 18, 12, 0.4);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-dim);
}
.work__note > span:first-child {
  color: var(--yellow);
  letter-spacing: 0.08em;
  font-weight: 600;
}
.work__note a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 3px;
}
.work__note a:hover {
  color: var(--yellow);
  text-decoration-color: var(--yellow);
}
.work__note-hint { color: var(--text-muted); }

/* Hero source tag */
.video-source-tag {
  position: absolute;
  bottom: 80px;
  right: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(5, 10, 7, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  max-width: 480px;
  overflow: hidden;
}
.video-source-tag__label {
  color: var(--yellow);
  font-weight: 600;
}
.video-source-tag a {
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.video-source-tag a:hover { color: var(--yellow); }
.video-source-tag--corner {
  bottom: 14px;
  right: 14px;
  max-width: calc(100% - 28px);
}
@media (max-width: 700px) {
  .video-source-tag { font-size: 10px; padding: 6px 10px; bottom: 90px; right: 16px; }
}

/* Ads section video */
.ads__media video {
  position: absolute;
  top: 50%; left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.work-card__meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(5,10,7,0.9));
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.work-card__meta h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 600;
}
.work-card__meta span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 880px) {
  .work__grid { grid-template-columns: 1fr; }
  .work-card, .work-card--wide { grid-column: span 1; aspect-ratio: 16 / 10; }
}

/* =========================================================
   PROCESS
   ========================================================= */
.process {
  padding: 120px var(--pad);
  border-bottom: 1px solid var(--line);
}
.process__list {
  max-width: var(--container);
  margin: 0 auto;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.process__item {
  padding: 48px 32px 48px 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: background .4s var(--ease);
}
.process__item:last-child { border-right: 0; }
.process__item:hover { background: rgba(212,255,0,0.02); }

.process__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--yellow);
  letter-spacing: 0.1em;
}
.process__item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 600;
  margin-bottom: 10px;
}
.process__item p {
  color: var(--text-dim);
  font-size: 15px;
  padding-right: 16px;
}
@media (max-width: 880px) {
  .process__list { grid-template-columns: 1fr; }
  .process__item { border-right: 0; border-bottom: 1px solid var(--line); padding: 32px 0; }
  .process__item:last-child { border-bottom: 0; }
}

/* =========================================================
   PRICING
   ========================================================= */
.pricing {
  padding: 120px var(--pad);
  border-bottom: 1px solid var(--line);
}
.pricing__callout {
  position: relative;
  max-width: var(--container);
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  padding: 32px 40px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 50%, rgba(212,255,0,0.08), transparent 50%),
    radial-gradient(circle at 100% 50%, rgba(255,138,0,0.06), transparent 50%),
    var(--bg-2);
  box-shadow:
    0 30px 60px -30px rgba(0,0,0,0.7),
    0 0 80px -30px rgba(212,255,0,0.25),
    0 0 0 1px rgba(212,255,0,0.05) inset;
}
.pricing__callout-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(70px, 13vw, 220px);
  letter-spacing: -0.04em;
  line-height: 0.9;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 2px rgba(212, 255, 0, 0.14);
          text-stroke: 2px rgba(212, 255, 0, 0.14);
  text-transform: uppercase;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 0 40px rgba(212, 255, 0, 0.18));
  user-select: none;
}
.pricing__callout-badge,
.pricing__callout-body {
  position: relative;
  z-index: 2;
}
.pricing__callout-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--bg);
  text-align: center;
  flex-shrink: 0;
  box-shadow:
    0 0 40px rgba(212,255,0,0.5),
    0 0 90px rgba(255,138,0,0.35);
  animation: calloutPulse 3.5s ease-in-out infinite;
}
.pricing__callout-num {
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing__callout-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.pricing__callout-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--text);
}
.pricing__callout-body p {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--text-dim);
  max-width: 760px;
  line-height: 1.6;
}
.pricing__callout-body strong { color: var(--text); font-weight: 600; }

@keyframes calloutPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(212,255,0,0.5), 0 0 90px rgba(255,138,0,0.35); }
  50%      { box-shadow: 0 0 60px rgba(212,255,0,0.8), 0 0 140px rgba(255,138,0,0.55); }
}

@media (max-width: 800px) {
  .pricing__callout {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 24px;
    gap: 20px;
  }
  .pricing__callout-badge { margin: 0 auto; }
  .pricing__callout-body p { margin: 0 auto; }
}

.pricing__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plan {
  position: relative;
  padding: 40px 36px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all .4s var(--ease);
}
.plan:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}
.plan--featured {
  border-color: var(--yellow);
  background:
    radial-gradient(circle at top right, rgba(212,255,0,0.08), transparent 60%),
    radial-gradient(circle at bottom left, rgba(255,138,0,0.06), transparent 60%),
    var(--bg-2);
  box-shadow: 0 0 60px rgba(212,255,0,0.1), inset 0 0 0 1px rgba(212,255,0,0.1);
}
.plan__badge {
  position: absolute;
  top: -12px; left: 36px;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--bg);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  box-shadow: var(--glow-1);
}
.plan__head h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}
.plan__head p {
  color: var(--text-dim);
  font-size: 14px;
}
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.plan__amount {
  font-family: 'Inter', sans-serif;
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.plan--featured .plan__amount {
  filter: drop-shadow(0 0 18px rgba(212,255,0,0.35));
}
.plan__period {
  font-size: 15px;
  color: var(--text-dim);
}
.plan__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  flex: 1;
}
.plan__features li {
  padding-left: 26px;
  position: relative;
}
.plan__features li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--yellow);
  font-weight: 700;
}
.pricing__note {
  max-width: var(--container);
  margin: 32px auto 0;
  text-align: center;
  color: var(--text-dim);
  font-size: 15px;
}
.pricing__note a { color: var(--yellow); }

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

/* =========================================================
   ADS SECTION
   ========================================================= */
.ads {
  padding: 120px var(--pad);
  border-bottom: 1px solid var(--line);
}
.ads__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ads__copy p {
  color: var(--text-dim);
  margin: 24px 0;
  font-size: clamp(15px, 1.2vw, 18px);
  max-width: 540px;
}
.ads__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.ads__bullets li {
  padding-left: 24px;
  position: relative;
  color: var(--text-dim);
}
.ads__bullets li::before {
  content: '◉';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-size: 12px;
}
.ads__bullets strong { color: var(--text); font-weight: 600; }
.ads__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.ads__media iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 178%;
  height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media (max-width: 880px) {
  .ads__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  padding: 120px var(--pad);
  border-bottom: 1px solid var(--line);
}
.faq__list {
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  transition: background .3s var(--ease);
}
.faq summary {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  cursor: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--text);
  transition: color .3s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: 'JetBrains Mono', monospace;
  font-size: 24px;
  color: var(--yellow);
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details[open] summary { color: var(--yellow); }
.faq details p {
  padding-top: 18px;
  color: var(--text-dim);
  font-size: 16px;
  max-width: 720px;
}

/* =========================================================
   CTA / CONTACT
   ========================================================= */
.cta {
  padding: 160px var(--pad);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212,255,0,0.12), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,138,0,0.1), transparent 50%);
  pointer-events: none;
}
.cta__inner {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 8vw, 130px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.cta__sub {
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--text-dim);
  margin-bottom: 48px;
  max-width: 620px;
}
.cta__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(7, 18, 12, 0.6);
  backdrop-filter: blur(10px);
}
.cta__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cta__field--full { grid-column: 1 / -1; }
.cta__field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.cta__field input,
.cta__field select,
.cta__field textarea {
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  cursor: none;
  transition: border-color .3s var(--ease);
}
.cta__field input:focus,
.cta__field select:focus,
.cta__field textarea:focus {
  outline: none;
  border-color: var(--yellow);
}
.cta__form > .btn {
  grid-column: 1 / -1;
  justify-self: start;
}
.cta__form-success {
  grid-column: 1 / -1;
  color: var(--yellow);
  font-size: 14px;
}
.cta__header {
  margin-bottom: 36px;
}
.cta__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  font-size: 15px;
  color: var(--text-dim);
}
.cta__bullets li {
  position: relative;
  padding-left: 26px;
}
.cta__bullets li::before {
  content: '◉';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yellow);
  font-size: 12px;
  filter: drop-shadow(0 0 6px rgba(212,255,0,.5));
}
.cta__bullets strong { color: var(--text); font-weight: 600; }

.calendly-wrap {
  position: relative;
  margin: 16px 0 32px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  overflow: hidden;
  background: var(--bg-2);
  box-shadow:
    0 20px 60px -20px rgba(0, 0, 0, 0.6),
    0 0 60px -20px rgba(212, 255, 0, 0.18),
    0 0 120px -40px rgba(255, 138, 0, 0.15);
}
.calendly-inline-widget {
  background: transparent !important;
  border-radius: 22px;
}
@media (max-width: 700px) {
  .calendly-inline-widget {
    min-width: 100% !important;
    height: 1080px !important;
  }
}
.cta__honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.footer__admin {
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: rgba(212,255,0,0.2);
  text-underline-offset: 3px;
  transition: color .3s var(--ease);
}
.footer__admin:hover { color: var(--yellow); }
.cta__direct {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 15px;
  color: var(--text-dim);
}
.cta__direct a { color: var(--yellow); font-weight: 500; }
@media (max-width: 700px) {
  .cta__form { grid-template-columns: 1fr; padding: 24px; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  padding: 80px var(--pad) 32px;
  background: var(--bg-2);
  position: relative;
  z-index: 2;
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer__logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 17px;
  display: inline-block;
  margin-bottom: 16px;
}
.footer__dot { color: var(--yellow); }
.footer__brand p {
  color: var(--text-dim);
  font-size: 14px;
  max-width: 360px;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer__cols h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 16px;
}
.footer__cols ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__cols a {
  font-size: 14px;
  color: var(--text-dim);
}
.footer__cols a:hover { color: var(--yellow); }
.footer__bottom {
  max-width: var(--container);
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (max-width: 880px) {
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__title .word { transform: none !important; }
}
