/* ============================================================
   E&B Studios — Neon Pro
   Refined cinematic / dark
   ============================================================ */

:root {
  --bg:        #0a0a09;
  --bg-2:      #0f0f0e;
  --card:      #121211;
  --line:      rgba(245, 241, 233, 0.12);
  --line-soft: rgba(245, 241, 233, 0.07);
  --fg:        #f4f1e9;
  --muted:     #9b988f;
  --muted-2:   #6f6d66;
  --accent:    #c9f24b;
  --accent-dim:#9bbb2e;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --container: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
em { font-style: italic; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 200;
  box-shadow: 0 0 12px var(--accent);
}

/* ---------- Brand fishbowl backdrop ---------- */
.filter-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.brand-backdrop {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.72;
  --brand-shift: 0px;
  --brand-roll: 0deg;
}

.brand-lens {
  position: absolute;
  top: 48%;
  left: 50%;
  width: min(1320px, 118vw);
  aspect-ratio: 1.85 / 1;
  transform:
    translate3d(-50%, calc(-50% + var(--brand-shift)), 0)
    rotate(var(--brand-roll))
    perspective(900px)
    rotateX(7deg);
  border-radius: 50%;
  filter: url("#brand-fishbowl");
  mix-blend-mode: screen;
  animation: lensFloat 12s var(--ease) infinite alternate;
  will-change: transform;
}

.brand-lens::before {
  content: "";
  position: absolute;
  inset: 8% 4%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 48% 52%, rgba(201, 242, 75, 0.13), rgba(201, 242, 75, 0.025) 42%, transparent 70%),
    radial-gradient(ellipse at center, transparent 52%, rgba(201, 242, 75, 0.1) 54%, transparent 62%),
    radial-gradient(ellipse at center, transparent 58%, rgba(201, 242, 75, 0.05) 60%, transparent 70%);
  transform: scaleX(1.08);
  box-shadow:
    inset 0 0 28px rgba(201, 242, 75, 0.06),
    inset 0 0 90px rgba(201, 242, 75, 0.035),
    0 0 70px rgba(201, 242, 75, 0.045);
}

.brand-lens::after {
  content: "";
  position: absolute;
  inset: 22% 13%;
  border: 1px solid rgba(201, 242, 75, 0.12);
  border-radius: 50%;
  box-shadow:
    inset 0 0 24px rgba(201, 242, 75, 0.08),
    inset 0 0 54px rgba(201, 242, 75, 0.035),
    0 0 42px rgba(201, 242, 75, 0.075),
    0 0 110px rgba(201, 242, 75, 0.04);
}

.brand-echo {
  position: absolute;
  left: 50%;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: 0;
  white-space: nowrap;
  color: rgba(9, 13, 14, 0.05);
  -webkit-text-fill-color: rgba(9, 13, 14, 0.035);
  -webkit-text-stroke: 1.35px rgba(201, 242, 75, 0.34);
  text-shadow:
    0 0 2px rgba(244, 255, 207, 0.44),
    0 0 7px rgba(201, 242, 75, 0.22),
    0 0 18px rgba(201, 242, 75, 0.16),
    0 0 44px rgba(201, 242, 75, 0.105),
    0 0 86px rgba(201, 242, 75, 0.05);
  animation: brandGlow 5.8s ease-in-out infinite alternate;
}

.brand-echo-main {
  top: 20%;
  transform: translateX(-50%) scaleX(1.22);
  font-size: clamp(150px, 28vw, 420px);
}

.brand-echo-word {
  top: 58%;
  transform: translateX(-50%) scaleX(1.04);
  font-family: var(--mono);
  font-size: clamp(42px, 8vw, 128px);
  letter-spacing: 0;
  color: rgba(5, 10, 12, 0.045);
  -webkit-text-fill-color: rgba(5, 10, 12, 0.035);
  -webkit-text-stroke-color: rgba(201, 242, 75, 0.42);
  text-shadow:
    0 0 2px rgba(246, 255, 216, 0.55),
    0 0 8px rgba(201, 242, 75, 0.28),
    0 0 22px rgba(201, 242, 75, 0.17),
    0 0 58px rgba(201, 242, 75, 0.055);
}

.brand-echo-ghost {
  top: 43%;
  transform: translateX(-50%) rotate(-6deg) scaleX(1.16);
  font-size: clamp(62px, 10vw, 180px);
  color: rgba(244, 241, 233, 0.018);
  -webkit-text-stroke-color: rgba(201, 242, 75, 0.1);
}

@keyframes lensFloat {
  from { translate: -1.8% -1.2%; }
  to { translate: 1.4% 1.6%; }
}

@keyframes brandGlow {
  from {
    opacity: 0.72;
    text-shadow:
      0 0 2px rgba(244, 255, 207, 0.38),
      0 0 6px rgba(201, 242, 75, 0.18),
      0 0 16px rgba(201, 242, 75, 0.13),
      0 0 38px rgba(201, 242, 75, 0.08),
      0 0 72px rgba(201, 242, 75, 0.04);
  }
  to {
    opacity: 0.9;
    text-shadow:
      0 0 3px rgba(246, 255, 216, 0.52),
      0 0 9px rgba(201, 242, 75, 0.25),
      0 0 22px rgba(201, 242, 75, 0.17),
      0 0 52px rgba(201, 242, 75, 0.105),
      0 0 94px rgba(201, 242, 75, 0.055);
  }
}

/* ---------- Mono labels ---------- */
.eyebrow, .section-tag, .nav-link, .logo-word, .reel-label,
.reel-rec, .m-item, .m-sep, .card-num, .work-cat, .work-drop,
.btn, .ci-label, .footer-nav a, .footer-bottom, .price-flag,
.field label, .form-status {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
              transform 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(10, 10, 9, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.site-header.hide { transform: translateY(-100%); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo { display: flex; align-items: baseline; gap: 9px; }
.logo-mark {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.logo-word {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.nav { display: flex; gap: 34px; margin-left: auto; margin-right: 34px; }
.nav-link {
  font-size: 11.5px;
  color: var(--muted);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-link:hover { color: var(--fg); }
.nav-link:hover::after { width: 100%; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 500;
  padding: 14px 22px;
  border: 1px solid var(--line);
  cursor: pointer;
  background: transparent;
  color: var(--fg);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

.btn-sm { padding: 10px 18px; }

.btn-solid {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a09;
  font-weight: 700;
}
.btn-solid:hover {
  background: #d7ff5c;
  border-color: #d7ff5c;
  box-shadow: 0 0 30px rgba(201, 242, 75, 0.35);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-block { width: 100%; justify-content: center; }

/* ---------- Mobile nav ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--fg);
  transition: 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 24px var(--gutter) 32px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu.open { display: flex; }
.mobile-link { font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.14em; font-size: 13px; color: var(--muted); }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: 150px; padding-bottom: 40px; }

.eyebrow {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 38px;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.hero-title em { color: var(--accent); font-style: italic; }

.hero-sub {
  max-width: 460px;
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   SHOWREEL
   ============================================================ */
/* Scroll-pinned showreel theater */
.reel-scene {
  position: relative;
  height: 250vh;             /* scroll distance the reel stays pinned for */
}
.reel-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.reel-stage {
  width: min(1120px, 88vw);
  will-change: transform, opacity;
  transform-origin: center center;
}
.reel-cue {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 7;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  color: var(--muted);
  transition: opacity 0.4s var(--ease);
}

.reel-frame {
  position: relative;
  aspect-ratio: 21 / 9;
  width: 100%;
  background: var(--bg-2);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.7);
}
.reel-stripes {
  position: absolute;
  inset: -10%;
  will-change: transform;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(201, 242, 75, 0.05) 0px,
    rgba(201, 242, 75, 0.05) 1px,
    transparent 1px,
    transparent 11px
  );
}

/* corner brackets */
.bracket {
  position: absolute;
  width: 26px; height: 26px;
  border-color: var(--accent);
  border-style: solid;
  border-width: 0;
  z-index: 2;
}
.bracket.tl { top: 18px; left: 18px; border-top-width: 1.5px; border-left-width: 1.5px; }
.bracket.tr { top: 18px; right: 18px; border-top-width: 1.5px; border-right-width: 1.5px; }
.bracket.bl { bottom: 18px; left: 18px; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.bracket.br { bottom: 18px; right: 18px; border-bottom-width: 1.5px; border-right-width: 1.5px; }

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: rgba(10, 10, 9, 0.35);
  color: var(--accent);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s var(--ease);
}
.play-btn svg { margin-left: 3px; }
.reel-frame:hover .play-btn {
  background: var(--accent);
  color: #0a0a09;
  box-shadow: 0 0 40px rgba(201, 242, 75, 0.45);
}

.reel-label {
  position: absolute;
  bottom: 46px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: var(--muted-2);
  z-index: 2;
}
.reel-rec {
  position: absolute;
  bottom: 22px; left: 24px;
  font-size: 10px;
  color: var(--accent-dim);
  display: flex; align-items: center; gap: 7px;
  z-index: 2;
}
.rec-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #ff4b3e;
  animation: pulse 1.4s infinite;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding-block: 22px;
  overflow: hidden;
}
.marquee { width: 100%; overflow: hidden; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.m-item { font-size: 12px; color: var(--muted); white-space: nowrap; }
.m-item.accent { color: var(--accent); }
.m-sep { color: var(--muted-2); font-size: 12px; }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding-block: 90px; }

.section-tag {
  font-size: 11px;
  color: var(--muted-2);
  margin-bottom: 26px;
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 50px;
}
.section-title em { color: var(--accent); font-style: italic; }

/* ---------- What we do cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  border: 1px solid var(--line);
  padding: 26px 24px 30px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  background: #101010;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), background 0.35s var(--ease);
}
.card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  background: rgba(201, 242, 75, 0.04);
}
.card-num { font-size: 11px; color: var(--accent-dim); margin-bottom: auto; }
.card:hover .card-num { color: var(--accent); }
.card-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.55rem;
  margin: 30px 0 12px;
}
.card-text { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* ---------- Selected work ---------- */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: clamp(240px, 28vw, 400px);
  gap: 18px;
}
.work-item {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  display: block;
}
.work-tall  { }
.work-short { }
.work-stripes {
  position: absolute; inset: -10%;
  will-change: transform;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(245,241,233,0.04) 0px,
    rgba(245,241,233,0.04) 1px,
    transparent 1px, transparent 11px
  );
  transition: scale 0.6s var(--ease);
}
.work-item:hover .work-stripes { scale: 1.06; }
.work-drop {
  position: absolute; top: 16px; left: 16px;
  font-size: 9.5px; color: var(--muted-2);
}
.work-meta {
  position: absolute;
  left: 22px; bottom: 22px;
  z-index: 2;
}
.work-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.45rem;
  margin-bottom: 6px;
}
.work-cat { font-size: 10px; color: var(--accent); }
.work-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,9,0.7));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.work-item:hover::after { opacity: 1; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.price-card {
  position: relative;
  border: 1px solid var(--line);
  padding: 32px 28px 34px;
  display: flex;
  flex-direction: column;
  background: #101010;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.price-card:hover { transform: translateY(-5px); border-color: var(--line); }
.price-card.featured {
  border-color: var(--accent);
  background: #14160c;
}
.price-flag {
  position: absolute;
  top: -1px; right: 22px;
  transform: translateY(-50%);
  background: var(--accent);
  color: #0a0a09;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 9px;
  font-weight: 700;
  padding: 5px 10px;
}
.price-card .card-num { color: var(--accent-dim); margin-bottom: 22px; }
.price-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.price-amount {
  font-family: var(--serif);
  font-size: 2.6rem;
  margin-bottom: 26px;
  line-height: 1;
}
.price-amount span { color: var(--accent); font-size: 1.4rem; }
.price-list { list-style: none; margin-bottom: 30px; display: grid; gap: 12px; }
.price-list li {
  font-size: 13.5px;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}
.price-list li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 7px; height: 7px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}
.price-card .btn { margin-top: auto; }

/* 4-up row (packages + custom "Other") */
.pricing-grid.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) {
  .pricing-grid.grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* "Other / Custom" build-your-own card */
.price-card.custom {
  border-style: dashed;
  background: #0d0d0c;
}
.price-card.custom .card-num,
.price-card.custom .price-amount { color: var(--accent); }
.price-card.custom:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}

/* ---------- Pricing sales flow ---------- */
.sales-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: -30px;
  margin-bottom: 48px;
  border: 1px solid var(--line-soft);
  background: var(--line-soft);
}
.flow-step {
  background: rgba(16, 16, 16, 0.92);
  padding: 24px;
  min-height: 150px;
}
.flow-num {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--accent);
  margin-bottom: 26px;
}
.flow-step h2 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.flow-step p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

/* ---------- Checkout page ---------- */
.checkout-hero { padding-bottom: 40px; }
.checkout-section { padding-top: 30px; }
.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: start;
}
.checkout-summary,
.checkout-form {
  border: 1px solid var(--line);
  background: rgba(16, 16, 16, 0.96);
  padding: clamp(24px, 4vw, 38px);
}
.checkout-summary {
  position: sticky;
  top: 110px;
}
.checkout-category,
.payment-label {
  display: inline-flex;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--accent);
  margin-bottom: 16px;
}
.checkout-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  margin-bottom: 12px;
}
.checkout-price {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.95;
  margin-bottom: 20px;
}
.checkout-desc {
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: 28px;
}
.checkout-includes {
  padding-block: 6px 12px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.checkout-total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  color: var(--muted);
}
.checkout-total strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--fg);
  text-transform: none;
}
.checkout-note {
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted-2);
}
.payment-box {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.payment-box h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.55rem;
  margin-bottom: 8px;
}
.payment-box p {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 18px;
}

/* ---------- Pricing teaser (home page) ---------- */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.teaser-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: #101010;
  padding: 28px 26px 30px;
  min-height: 200px;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), background 0.35s var(--ease);
}
.teaser-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  background: rgba(201, 242, 75, 0.04);
}
.teaser-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent-dim);
}
.teaser-card:hover .teaser-num { color: var(--accent); }
.teaser-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.55rem;
  margin: 24px 0 12px;
}
.teaser-text { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin-bottom: auto; }
.teaser-from {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--accent);
  margin-top: 22px;
}
.teaser-cta { margin-top: 40px; }

/* ---------- Pricing page extras ---------- */
.page-hero {
  padding-top: 150px;
  padding-bottom: 30px;
}
.page-hero .hero-title { margin-bottom: 22px; }
.price-category { padding-block: 56px 32px; }
.price-note {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  color: var(--muted-2);
  border: 1px dashed var(--line);
  padding: 12px 16px;
  margin-top: 10px;
  display: inline-block;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-intro .section-title { margin-bottom: 22px; }
.contact-text { color: var(--muted); max-width: 380px; margin-bottom: 20px; }
.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(201, 242, 75, 0.07);
  border: 1px solid rgba(201, 242, 75, 0.25);
  border-radius: 40px;
  padding: 7px 16px;
  margin-bottom: 32px;
  box-shadow: 0 0 18px rgba(201, 242, 75, 0.1);
}
.contact-info { list-style: none; display: grid; gap: 16px; }
.contact-info li {
  display: flex; align-items: baseline; gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
}
.ci-label { font-size: 10px; color: var(--muted-2); width: 70px; flex-shrink: 0; }

.contact-form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 10px; color: var(--muted); }
.field input,
.field select,
.field textarea {
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 15px;
  padding: 14px 16px;
  width: 100%;
  transition: border-color 0.25s var(--ease);
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted-2); }
.field select { appearance: none; cursor: pointer; }
.form-status { font-size: 11px; color: var(--accent); min-height: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--line-soft);
  padding-top: 60px;
  margin-top: 40px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 50px;
}
.footer-brand { display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap; }
.footer-tag {
  flex-basis: 100%;
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  margin-top: 10px;
}
.footer-nav { display: flex; gap: 28px; }
.footer-nav a { font-size: 11px; color: var(--muted); transition: color 0.25s var(--ease); }
.footer-nav a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-block: 26px;
  border-top: 1px solid var(--line-soft);
  font-size: 10px;
  color: var(--muted-2);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease),
              filter 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* Rack focus — blur in then "pull focus" sharp */
.reveal.rack { filter: blur(14px); }
.reveal.rack.in { filter: blur(0); }

/* ============================================================
   CURVING 35MM FILM STRIPS (background motif)
   ============================================================ */
.film-ribbons {
  position: fixed;
  inset: 0;
  z-index: -1;            /* above page bg, behind all content */
  overflow: hidden;
  pointer-events: none;
}
.ribbon {
  position: absolute;
  perspective: 1400px;
  will-change: transform;
}
.ribbon-1 { top: 6%;  left: -18%; opacity: 0.34; }
.ribbon-2 { top: 56%; left: -2%;  opacity: 0.22; }

.filmstrip {
  width: 2700px;
  height: 168px;
  background-color: #0c0c0b;
  /* 3 layers: top sprocket rail · bottom sprocket rail · frame windows */
  background-image:
    repeating-linear-gradient(90deg,
      transparent 0 9px, rgba(216,216,205,0.92) 9px 19px, transparent 19px 22px),
    repeating-linear-gradient(90deg,
      transparent 0 9px, rgba(216,216,205,0.92) 9px 19px, transparent 19px 22px),
    repeating-linear-gradient(90deg,
      #0c0c0b 0 12px, rgba(255,255,255,0.06) 12px 166px, #0c0c0b 166px 176px);
  background-repeat: no-repeat;
  background-size: 100% 17px, 100% 17px, 100% calc(100% - 50px);
  background-position: left top, left bottom, left center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  animation: filmroll 4.5s linear infinite;
}
.ribbon-1 .filmstrip { transform: rotateX(52deg) rotateZ(-21deg) rotateY(6deg); }
.ribbon-2 .filmstrip { transform: rotateX(-46deg) rotateZ(17deg) rotateY(-8deg); }

@keyframes filmroll {
  from { background-position: left top, left bottom, left center; }
  to   { background-position: -176px top, -176px bottom, -176px center; }
}

@media (max-width: 900px) {
  .film-ribbons { display: none; }
  .brand-backdrop { opacity: 0.42; }
  .brand-lens {
    width: 138vw; top: 43%;
    filter: none;           /* kill feTurbulence recomputation on scroll */
    animation: none;
  }
  .grain { display: none; } /* grain animation is GPU-heavy on mobile */
  .brand-echo {
    -webkit-text-stroke-width: 0.75px;
    -webkit-text-stroke-color: rgba(201, 242, 75, 0.28);
    text-shadow:
      0 0 2px rgba(246, 255, 216, 0.34),
      0 0 14px rgba(201, 242, 75, 0.095),
      0 0 34px rgba(201, 242, 75, 0.055);
  }
}

/* ============================================================
   CINEMATIC FILM OVERLAY
   ============================================================ */
.film-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
}
.film-overlay > div { position: absolute; inset: 0; }

.grain {
  inset: -150%;
  width: 400%;
  height: 400%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  animation: grain 0.55s steps(5) infinite;
}
@keyframes grain {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-4%, 3%); }
  40%  { transform: translate(3%, -4%); }
  60%  { transform: translate(-3%, 2%); }
  80%  { transform: translate(4%, -2%); }
  100% { transform: translate(0, 0); }
}

.scanlines {
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0px,
    rgba(0, 0, 0, 0) 2px,
    rgba(0, 0, 0, 0.22) 3px,
    rgba(0, 0, 0, 0) 4px
  );
  opacity: 0.35;
  mix-blend-mode: multiply;
}

.vignette {
  background: radial-gradient(
    ellipse at center,
    transparent 52%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

/* ============================================================
   CAMERA VIEWFINDER HUD
   ============================================================ */
.viewfinder {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 90;
  opacity: 0;
  animation: vf-in 1.2s 0.4s var(--ease) forwards;
}
@keyframes vf-in { to { opacity: 1; } }

.vf-corner {
  position: absolute;
  width: 28px; height: 28px;
  border: 0 solid rgba(201, 242, 75, 0.5);
}
.vf-corner.tl { top: 20px; left: 20px; border-top-width: 1px; border-left-width: 1px; }
.vf-corner.tr { top: 20px; right: 20px; border-top-width: 1px; border-right-width: 1px; }
.vf-corner.bl { bottom: 20px; left: 20px; border-bottom-width: 1px; border-left-width: 1px; }
.vf-corner.br { bottom: 20px; right: 20px; border-bottom-width: 1px; border-right-width: 1px; }

.vf-cross {
  position: absolute;
  top: 50%; left: 50%;
  width: 18px; height: 18px;
  transform: translate(-50%, -50%);
  opacity: 0.4;
}
.vf-cross::before,
.vf-cross::after {
  content: "";
  position: absolute;
  background: rgba(201, 242, 75, 0.6);
}
.vf-cross::before { top: 50%; left: 0; width: 100%; height: 1px; transform: translateY(-50%); }
.vf-cross::after  { left: 50%; top: 0; height: 100%; width: 1px; transform: translateX(-50%); }

.vf-hud {
  position: absolute;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 9.5px;
  color: rgba(201, 242, 75, 0.62);
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.vf-tl { top: 92px; left: 30px; }
.vf-tr { top: 92px; right: 30px; }
.vf-bl { bottom: 30px; left: 30px; }
.vf-br { bottom: 30px; right: 30px; }

.vf-recdot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ff4b3e;
  margin-right: 8px;
  box-shadow: 0 0 8px #ff4b3e;
  animation: pulse 1.4s infinite;
}

@media (max-width: 680px) {
  .vf-tr, .vf-bl { display: none; }
  .vf-hud { font-size: 8.5px; }
  .scanlines { opacity: 0.2; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .reveal.rack { filter: none; }
  .marquee-track, .dot, .rec-dot, .grain, .vf-recdot, .brand-lens, .brand-echo { animation: none; }
  .viewfinder { opacity: 1; animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid,
  .pricing-grid.grid-4 { grid-template-columns: 1fr; }
  .sales-flow,
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .teaser-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 680px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding-top: 130px; padding-bottom: 60px; }
  .hero-sub { font-size: 15px; margin-bottom: 32px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .section { padding-block: 86px; }
  .section-title { margin-bottom: 36px; }

  .cards-grid { grid-template-columns: 1fr; gap: 14px; }
  .card { min-height: 180px; padding: 24px 20px 28px; }

  .reel-scene { height: 170vh; }
  .reel-rec { left: 16px; }

  .work-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: clamp(200px, 58vw, 300px);
  }

  .contact-grid { gap: 36px; }
  .response-badge { font-size: 10px; }
}
