/* =====================================================================
   Wolf of Conversions — Global Stylesheet
   Brand system is defined once here. Never hardcode brand hex values
   in markup or other files — always reference the CSS variables below.
   ===================================================================== */

:root {
  /* ---- Brand colors (single source of truth) ---- */
  --charcoal: #1a1a1a;
  --orange: #F4500A;
  --white: #FFFFFF;
  --border: #2a2a2a;

  /* ---- Derived neutrals (tints of the base palette, not new brand colors) ---- */
  --charcoal-800: #212121;
  --charcoal-700: #242424;
  --muted: #9a9a9a;
  --muted-dim: #6f6f6f;

  /* ---- Type ---- */
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* ---- Layout ---- */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --nav-h: 76px;
  --radius: 4px;
  --radius-pill: 999px;

  /* ---- Motion ---- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------------------------------------------------------------- Reset */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button { font-family: inherit; cursor: pointer; }

/* ---------------------------------------------------------------- Type */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.01em;
  margin: 0;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.accent { color: var(--orange); }

p { margin: 0 0 1rem; color: #d8d8d8; }

.lead { font-size: 1.15rem; color: #e2e2e2; max-width: 60ch; }

/* ---------------------------------------------------------------- Layout helpers */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(64px, 10vw, 128px); }

.section--tight { padding-block: clamp(48px, 7vw, 88px); }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }

.section-head h2 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  margin-top: 12px;
}

.section-head p { margin-top: 18px; }

.divider { height: 1px; background: var(--border); border: 0; margin: 0; }

/* ---------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--orange); color: var(--white); }
.btn--primary:hover { background: #ff5b16; }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--border);
}
.btn--ghost:hover { border-color: var(--orange); }

.btn--lg { padding: 18px 38px; font-size: 1.05rem; }

.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------------------------------------------------------------- Nav */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.nav.is-scrolled {
  background: rgba(20, 20, 20, 0.92);
  border-bottom-color: var(--border);
}

.nav__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo img { height: 30px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #eaeaea;
  position: relative;
  padding-block: 6px;
  transition: color 0.2s var(--ease);
}

.nav__links a:hover,
.nav__links a[aria-current="page"] { color: var(--white); }

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 16px; }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  background: #161616;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-menu a {
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.92rem;
  color: #cfcfcf;
}
.nav__dropdown-menu a::after { display: none; }
.nav__dropdown-menu a:hover { background: var(--charcoal-800); color: var(--white); }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 0;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
  margin-inline: auto;
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------- Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: clamp(56px, 8vw, 96px);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Placeholder gradient sits under the poster/video so there is always a
   cinematic dark backdrop even before any media loads. Drop-in the final
   MP4 by pointing the <source> in index.html at the new file — one line. */
.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1200px 700px at 15% 10%, rgba(244, 80, 10, 0.16), transparent 60%),
    linear-gradient(160deg, #202020 0%, #141414 55%, #0e0e0e 100%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.82) 0%, rgba(15, 15, 15, 0.55) 42%, rgba(15, 15, 15, 0.25) 100%),
    linear-gradient(0deg, rgba(15, 15, 15, 0.9) 0%, rgba(15, 15, 15, 0.2) 45%);
}

.hero__inner { position: relative; z-index: 2; width: 100%; }

.hero__eyebrow { margin-bottom: 22px; }

.hero h1 {
  font-size: clamp(3.3rem, 10vw, 8rem);
  max-width: 15ch;
}
.hero h1 .line { display: block; }

.hero__sub {
  margin-top: 26px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  max-width: 56ch;
  color: #e4e4e4;
}

.hero__cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 16px; }

.hero__stats {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(18px, 4vw, 48px);
}
.hero__stat { display: flex; flex-direction: column; }
.hero__stat b {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3rem);
  color: var(--orange);
  line-height: 1;
  font-weight: 400;
}
.hero__stat span {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-top: 6px;
}
.hero__stat-sep {
  width: 1px;
  height: 44px;
  background: var(--border);
}

/* Hero accent line — decorative chart-trace graphic, sits above the video/overlay
   but behind the copy. Hidden on small screens where there's no room to breathe. */
.hero__accent-line {
  position: absolute;
  z-index: 1;
  right: -40px;
  bottom: 6%;
  width: clamp(280px, 32vw, 480px);
  height: auto;
  opacity: 0.32;
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero__accent-line { display: none; }
}

/* Scarcity pill */
.scarcity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.35);
  font-size: 0.85rem;
  font-weight: 500;
  color: #eaeaea;
  margin-bottom: 26px;
}
.scarcity .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #35d07f;
  box-shadow: 0 0 0 0 rgba(53, 208, 127, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(53, 208, 127, 0.6); }
  70% { box-shadow: 0 0 0 9px rgba(53, 208, 127, 0); }
  100% { box-shadow: 0 0 0 0 rgba(53, 208, 127, 0); }
}

/* ---------------------------------------------------------------- Credibility strip */
.cred { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cred__label { text-align: center; }
.cred__label .eyebrow { display: block; }
.cred__sub {
  font-style: italic;
  color: var(--muted-dim);
  font-size: 0.92rem;
  margin-top: 8px;
}
.cred__row {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.cred__logo {
  height: 74px;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-dim);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  background: var(--charcoal-800);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.cred__logo:hover { color: #cfcfcf; border-color: #3a3a3a; }

/* ---------------------------------------------------------------- HUNT framework */
.hunt__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hunt__card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px 26px 32px;
  background: linear-gradient(180deg, var(--charcoal-800), var(--charcoal));
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.hunt__card:hover { transform: translateY(-6px); border-color: #3a3a3a; }
.hunt__letter {
  font-family: var(--font-display);
  font-size: 4.6rem;
  line-height: 0.8;
  color: var(--orange);
}
.hunt__phase {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin-top: 16px;
  letter-spacing: 0.02em;
}
.hunt__desc { font-size: 0.98rem; color: #cccccc; margin-top: 12px; flex: 1; }
.hunt__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--orange);
  border: 1px solid rgba(244, 80, 10, 0.4);
  border-radius: var(--radius-pill);
  padding: 5px 11px;
  white-space: nowrap;
}

/* ---------------------------------------------------------------- Services bar */
.svc-bar { display: flex; flex-wrap: wrap; gap: 14px; }
.svc-pill {
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 13px 26px;
  font-weight: 500;
  font-size: 1rem;
  color: #e6e6e6;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.svc-pill:hover { border-color: var(--orange); transform: translateY(-2px); }

/* ---------------------------------------------------------------- Generic cards / grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--charcoal-800);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: #3a3a3a; }
.card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 26px 26px 30px; }
.card__body h3 { font-size: 1.7rem; }
.card__kicker {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* Metric row inside case study cards */
.metrics { display: flex; gap: 28px; margin-top: 20px; flex-wrap: wrap; }
.metric b {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--orange);
  display: block;
  line-height: 1;
}
.metric span { font-size: 0.78rem; color: var(--muted); }

/* ---------------------------------------------------------------- Service sections (services.html) */
.svc-block { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.svc-block:nth-child(even) .svc-block__media { order: 2; }
.svc-block__media { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4 / 3; }
.svc-block__media img { width: 100%; height: 100%; object-fit: cover; }
.svc-block__num { font-family: var(--font-display); font-size: 1.2rem; color: var(--orange); letter-spacing: 0.1em; }
.svc-block h3 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 8px; }
.svc-block ul { margin: 18px 0 0; padding: 0; list-style: none; }
.svc-block li { padding: 9px 0; border-bottom: 1px solid var(--border); color: #d0d0d0; font-size: 0.98rem; }
.svc-block li::before { content: "→"; color: var(--orange); margin-right: 12px; }

/* ---------------------------------------------------------------- HUNT detail page */
.phase {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: clamp(20px, 4vw, 56px);
  padding-block: clamp(40px, 6vw, 64px);
  border-top: 1px solid var(--border);
  align-items: start;
}
.phase__mark { font-family: var(--font-display); font-size: clamp(5rem, 12vw, 9rem); color: var(--orange); line-height: 0.8; }
.phase h3 { font-size: clamp(2rem, 4vw, 3rem); }
.phase__phaseName { color: var(--muted); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.8rem; }

/* ---------------------------------------------------------------- About / team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: var(--charcoal-800); }
.team-card__photo { aspect-ratio: 1 / 1; overflow: hidden; background: var(--charcoal-700); }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team-card__ph {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  color: var(--muted-dim); font-size: 0.85rem; letter-spacing: 0.06em;
}
.team-card__body { padding: 24px; }
.team-card__body h3 { font-size: 1.55rem; }
.team-card__role { color: var(--orange); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.04em; margin: 6px 0 14px; }
.team-card__body p { font-size: 0.94rem; color: #c8c8c8; margin: 0; }
/* Anonymous, role-based team cards (no photo) */
.team-card--role .team-card__body { padding: 28px 26px; }
.team-card--role .team-card__role { margin: 0 0 10px; text-transform: uppercase; }
.team-card--role .team-card__body h3 { font-size: 1.4rem; line-height: 1.15; }

/* ---------------------------------------------------------------- Page hero (interior pages) */
.page-hero { padding-top: calc(var(--nav-h) + clamp(60px, 10vw, 120px)); padding-bottom: clamp(40px, 6vw, 72px); position: relative; }
.page-hero .eyebrow { margin-bottom: 18px; display: block; }
.page-hero h1 { font-size: clamp(3rem, 9vw, 6.5rem); max-width: 16ch; }
.page-hero p { margin-top: 20px; }

/* ---------------------------------------------------------------- Contact / form */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.field input,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  background: var(--charcoal-800);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  transition: border-color 0.2s var(--ease);
}
.field input:focus,
.field textarea:focus { outline: none; border-color: var(--orange); }
.field textarea { resize: vertical; min-height: 140px; }
.form__note { font-size: 0.82rem; color: var(--muted-dim); }
.form__status { font-size: 0.95rem; font-weight: 500; min-height: 1.4em; }
.form__status.is-ok { color: #35d07f; }
.form__status.is-err { color: var(--orange); }
.contact-detail { padding: 14px 0; border-bottom: 1px solid var(--border); }
.contact-detail .eyebrow { display: block; margin-bottom: 4px; }

/* ---------------------------------------------------------------- CTA band */
.cta-band { text-align: center; border-top: 1px solid var(--border); }
.cta-band h2 { font-size: clamp(2.6rem, 7vw, 5.2rem); max-width: 18ch; margin-inline: auto; }
.cta-band p { margin: 18px auto 30px; max-width: 52ch; }

/* ---------------------------------------------------------------- Footer */
.footer { border-top: 1px solid var(--border); padding-block: 64px 40px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.5fr; gap: 40px; }
.footer__brand img { height: 30px; margin-bottom: 18px; }
.footer__brand p { color: var(--muted); font-size: 0.95rem; max-width: 34ch; }
.footer__col h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 16px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer__col a { color: #cfcfcf; font-size: 0.95rem; transition: color 0.2s var(--ease); }
.footer__col a:hover { color: var(--orange); }
.footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted-dim);
  font-size: 0.85rem;
}

/* ---------------------------------------------------------------- Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* ---------------------------------------------------------------- Mobile menu panel (shared) */
.nav__panel { display: contents; }

/* ================================================================ Responsive */
@media (max-width: 1024px) {
  .cred__row { grid-template-columns: repeat(3, 1fr); }
  .hunt__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav__toggle { display: flex; }

  .nav__panel {
    display: flex;
    /* The .nav header uses backdrop-filter, which makes it the containing
       block for this fixed child. So size by viewport height explicitly
       rather than relying on bottom:0 (which would resolve to the 76px nav). */
    position: fixed;
    top: var(--nav-h);
    right: 0;
    left: 0;
    height: calc(100dvh - var(--nav-h));
    z-index: 90;
    flex-direction: column;
    background: rgba(16, 16, 16, 0.98);
    backdrop-filter: blur(10px);
    padding: 32px var(--gutter) 48px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
  }
  .nav.is-open .nav__panel { transform: translateX(0); }

  .nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
  }
  .nav__links > li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav__links a { display: block; padding: 16px 0; font-size: 1.3rem; font-family: var(--font-display); letter-spacing: 0.02em; }
  .nav__links a::after { display: none; }

  .nav__dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0 0 12px 4px;
    min-width: 0;
  }
  .nav__dropdown-menu a { font-family: var(--font-body); font-size: 0.98rem; padding: 8px 0; }

  .nav__actions { margin-top: 28px; width: 100%; }
  .nav__actions .btn { width: 100%; justify-content: center; }

  .contact-grid { grid-template-columns: 1fr; }
  .svc-block { grid-template-columns: 1fr; }
  .svc-block:nth-child(even) .svc-block__media { order: 0; }
  .phase { grid-template-columns: 1fr; gap: 12px; }
  .phase__mark { font-size: 5.5rem; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .team-grid { grid-template-columns: 1fr; }
  .hunt__grid { grid-template-columns: 1fr; }
  .cred__row { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }

  .hero { align-items: flex-end; }
  .hero__stats { flex-wrap: nowrap; justify-content: center; align-items: flex-start; gap: clamp(12px, 5vw, 30px); }
  .hero__stat { flex: 1 1 0; min-width: 0; align-items: center; text-align: center; }
  .hero__stat b { font-size: clamp(1.5rem, 6.4vw, 2.2rem); }
  .hero__stat span { text-align: center; }
  .hero__stat-sep { display: none; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
}

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

/* ================================================================
   NEW SECTIONS (re-sync to live site)
   ================================================================ */

/* Section index label e.g. [01] */
.sec-index { color: var(--orange); font-family: var(--font-body); font-weight: 700; letter-spacing: 0.12em; font-size: 0.82rem; }

/* ---- Built on Vision ---- */
.vision { position: relative; overflow: hidden; }
.vision__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.vision__media { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 3; }
.vision__media img { width: 100%; height: 100%; object-fit: cover; }
.vision h2 { font-size: clamp(2.6rem, 7vw, 5rem); margin-top: 12px; }
.vision__body { font-size: clamp(1.05rem, 2vw, 1.3rem); color: #e2e2e2; margin-top: 22px; max-width: 52ch; }
.vision__body b { color: var(--white); font-weight: 600; }

/* ---- What We Do (4 category cards) ---- */
.wwd__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.wwd__card { border: 1px solid var(--border); border-radius: 12px; padding: 30px 28px; background: var(--charcoal-800); transition: border-color 0.35s var(--ease), transform 0.35s var(--ease); }
.wwd__card:hover { border-color: #3a3a3a; transform: translateY(-4px); }
.wwd__card h3 { font-size: 1.9rem; }
.wwd__num { font-family: var(--font-display); font-size: 1.1rem; color: var(--orange); letter-spacing: 0.08em; }
.wwd__card ul { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 9px; }
.wwd__card li { font-size: 0.96rem; color: #cfcfcf; padding-left: 20px; position: relative; }
.wwd__card li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }

/* ---- The Run (creative pipeline) ---- */
.run { position: relative; }
.run__intro { max-width: 60ch; }
.run__track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: clamp(36px, 5vw, 56px); position: relative; }
.run__step { border: 1px solid var(--border); border-radius: 12px; padding: 26px 22px 28px; background: linear-gradient(180deg, var(--charcoal-800), var(--charcoal)); transition: border-color 0.35s var(--ease), transform 0.35s var(--ease); }
.run__step:hover { border-color: var(--orange); transform: translateY(-6px); }
.run__num { font-family: var(--font-display); font-size: 2.6rem; line-height: 0.8; color: var(--orange); }
.run__name { font-family: var(--font-display); font-size: 1.5rem; margin-top: 14px; letter-spacing: 0.02em; }
.run__desc { font-size: 0.9rem; color: #c4c4c4; margin-top: 10px; }

/* ---- What Sets Us Apart (5 points) ---- */
.wsua__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.wsua__card { border: 1px solid var(--border); border-radius: 12px; padding: 28px 26px; background: var(--charcoal-800); }
.wsua__card:nth-child(4), .wsua__card:nth-child(5) { grid-column: span 1; }
.wsua__idx { font-family: var(--font-display); font-size: 2rem; color: var(--orange); line-height: 0.9; }
.wsua__card h3 { font-size: 1.4rem; margin-top: 12px; }
.wsua__card p { font-size: 0.96rem; color: #c8c8c8; margin: 10px 0 0; }

/* ---- Proof case studies (homepage) ---- */
.proof__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.proof__card { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: var(--charcoal-800); display: flex; flex-direction: column; transition: transform 0.35s var(--ease), border-color 0.35s var(--ease); }
.proof__card:hover { transform: translateY(-6px); border-color: #3a3a3a; }
.proof__media { aspect-ratio: 16 / 10; overflow: hidden; }
.proof__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.proof__card:hover .proof__media img { transform: scale(1.05); }
.proof__body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.proof__cat { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.proof__result { font-family: var(--font-display); font-size: 1.7rem; line-height: 1; color: var(--orange); margin: 12px 0 12px; }
.proof__desc { font-size: 0.94rem; color: #c8c8c8; margin: 0; }

/* ---- Pricing (4 tiers) ---- */
.pricing__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.tier { border: 1px solid var(--border); border-radius: 14px; padding: 30px 26px 32px; background: var(--charcoal-800); display: flex; flex-direction: column; position: relative; }
.tier--featured { border-color: var(--orange); background: linear-gradient(180deg, rgba(244,80,10,0.08), var(--charcoal-800)); }
.tier__flag { position: absolute; top: -11px; left: 26px; background: var(--orange); color: var(--white); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: var(--radius-pill); }
.tier__name { font-family: var(--font-display); font-size: 1.9rem; letter-spacing: 0.02em; }
.tier__for { font-size: 0.86rem; color: var(--muted); margin-top: 6px; min-height: 2.6em; }
.tier__price { font-family: var(--font-display); font-size: 2.4rem; color: var(--orange); margin: 16px 0 4px; line-height: 1; }
.tier__price small { font-family: var(--font-body); font-size: 0.8rem; color: var(--muted); letter-spacing: 0; display: block; margin-top: 4px; }
.tier__list { list-style: none; margin: 18px 0 24px; padding: 18px 0 0; border-top: 1px solid var(--border); display: grid; gap: 11px; flex: 1; }
.tier__list li { font-size: 0.9rem; color: #cfcfcf; padding-left: 24px; position: relative; }
.tier__list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--orange); font-weight: 700; }
.tier .btn { width: 100%; justify-content: center; }
.pricing__note { margin-top: 34px; font-size: 0.9rem; color: var(--muted); max-width: 80ch; }

/* ---- Footer socials + newsletter ---- */
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a { width: 38px; height: 38px; border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #cfcfcf; transition: border-color 0.25s var(--ease), color 0.25s var(--ease); }
.footer__social a:hover { border-color: var(--orange); color: var(--orange); }
.footer__social svg { width: 18px; height: 18px; }
.newsletter { display: flex; gap: 8px; margin-top: 4px; }
.newsletter input { flex: 1; min-width: 0; background: var(--charcoal-800); border: 1px solid var(--border); border-radius: 8px; padding: 11px 14px; color: var(--white); font-family: var(--font-body); font-size: 0.9rem; }
.newsletter input:focus { outline: none; border-color: var(--orange); }
.newsletter button { background: var(--orange); color: var(--white); border: 0; border-radius: 8px; padding: 0 16px; font-weight: 600; font-size: 0.9rem; }
.newsletter__status { font-size: 0.8rem; margin-top: 8px; min-height: 1.2em; color: var(--muted); }
.newsletter__status.is-ok { color: #35d07f; }

/* Secondary hero subhead */
.hero__cfo { margin-top: 14px; font-size: 0.98rem; color: #f2f2f2; font-weight: 600; letter-spacing: 0.01em; }

/* ---- Responsive for new sections ---- */
@media (max-width: 1024px) {
  .wsua__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .run__track { grid-template-columns: repeat(3, 1fr); }
  .proof__grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .vision__grid { grid-template-columns: 1fr; }
  .vision__media { order: -1; }
}
@media (max-width: 720px) {
  .wwd__grid { grid-template-columns: 1fr; }
  .wsua__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .run__track { grid-template-columns: 1fr; }
  .newsletter { flex-wrap: wrap; }
}

/* ---------------------------------------------------------------- Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ================================================================
   WEBFLOW-MATCH OVERRIDES (faithful port of wolf-of-conversions.webflow.io)
   Appended last so these rules win on order. 2026-07-07.
   ================================================================ */

/* ---- Nav: minimal bar (logo | Get a Free Audit | MENU) ---- */
.nav__menu-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); letter-spacing: 0.06em; font-size: 1rem;
  color: var(--white); background: transparent;
  border: 1px solid var(--white); border-radius: 6px;
  padding: 9px 18px; text-transform: uppercase; line-height: 1;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav__menu-btn:hover { background: var(--white); color: var(--charcoal); }
.nav__actions .btn { font-family: var(--font-display); letter-spacing: 0.05em; text-transform: uppercase; }

/* ---- MENU overlay ---- */
.menu { position: fixed; inset: 0; z-index: 200; visibility: hidden; opacity: 0; transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease); }
.menu.is-open { visibility: visible; opacity: 1; }
.menu__backdrop { position: absolute; inset: 0; background: rgba(8,8,8,0.72); backdrop-filter: blur(4px); }
.menu__box {
  position: absolute; top: 84px; right: clamp(16px, 4vw, 40px);
  display: grid; grid-template-columns: 320px 300px; gap: 0;
  background: #141414; border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transform: translateY(-10px); transition: transform 0.3s var(--ease);
}
.menu.is-open .menu__box { transform: translateY(0); }
.menu__links { padding: 30px 30px 24px; display: flex; flex-direction: column; }
.menu__links a { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 0.03em; text-transform: uppercase; color: #eaeaea; padding: 11px 0; display: flex; align-items: center; justify-content: space-between; transition: color 0.2s var(--ease); }
.menu__links a:hover { color: var(--orange); }
.menu__links .menu__rule { height: 1px; background: var(--border); margin: 14px 0; }
.menu__links .menu__legal { font-family: var(--font-body); font-size: 0.9rem; text-transform: none; letter-spacing: 0; color: var(--muted); }
.menu__media { position: relative; background: #000; }
.menu__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.menu__close { position: absolute; top: 24px; right: clamp(16px, 4vw, 40px); z-index: 1; }

/* ---- Hero: centered, video background ---- */
.hero { align-items: center; text-align: center; }
.hero__inner { max-width: 1040px; margin-inline: auto; }
.hero h1 { max-width: none; margin-inline: auto; }
.hero__eyebrow { color: var(--muted); }
.hero__sub { margin-inline: auto; }
.hero__cfo { display: inline-flex; align-items: center; gap: 9px; margin-top: 18px; justify-content: center; color: #f2f2f2; }
.hero__cfo::before { content: "\2713"; color: var(--orange); font-weight: 700; font-size: 0.95em; display: inline-block; line-height: 1; }
.hero__cta { justify-content: center; }
.hero__stats { justify-content: center; margin-top: 44px; }
.hero .scarcity { margin: 40px auto 0; }

/* ---- Section index bar: [01] ————— TITLE ---- */
.sec-bar { display: flex; align-items: center; gap: clamp(16px, 3vw, 30px); padding-block: 22px; }
.sec-bar__num { font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.08em; color: #fff; }
.sec-bar__line { flex: 1; height: 1px; background: var(--border); }
.sec-bar__title { font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; }

/* ---- HUNT framework: borderless columns w/ dividers ---- */
.section--hunt { padding-block: clamp(40px, 6vw, 72px); }
.hunt__grid { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); gap: 0; }
.hunt__card { border: 0 !important; background: transparent !important; border-radius: 0; padding: 40px 30px; }
.hunt__card + .hunt__card { border-left: 1px solid var(--border) !important; }
.hunt__card:hover { transform: none; }

/* ---- Services pills strip (home) ---- */
.svc-strip { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; padding-block: 26px; border-bottom: 1px solid var(--border); }
.svc-strip__label { font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-right: 8px; }

/* ---- [01] Built on Vision: full-bleed background ---- */
/* The image now lives on the OUTER .vision wrapper (bar + stage together) instead of
   just .vision__stage, so the "Built on Vision" label bar bleeds into the same image
   as the heading below it instead of sitting on a flat charcoal strip with a visible
   seam against the HUNT section above. */
.vision {
  padding: 0; overflow: hidden; position: relative;
  background-image: linear-gradient(180deg, rgba(15,15,15,0.62), rgba(15,15,15,0.55) 18%, rgba(15,15,15,0.75)), url(../img/bg-vision.jpg);
  background-size: cover; background-position: center; background-color: var(--charcoal);
}
.vision__bar { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); position: relative; }
.vision__stage {
  position: relative; min-height: 78vh; display: flex; align-items: center; justify-content: center;
}
.vision__copy { position: relative; max-width: 900px; text-align: center; padding: clamp(40px,8vw,90px) var(--gutter); }
.vision__copy .sec-index { display: block; margin-bottom: 16px; }
.vision__copy h2 { font-size: clamp(2.6rem, 7vw, 5rem); margin-bottom: 22px; }
.vision__copy p { font-size: clamp(1.05rem, 2vw, 1.28rem); color: #eaeaea; margin: 0 auto; max-width: 62ch; }
.vision__copy b { color: #fff; }

/* ---- [02] What We Do: interactive list + preview ---- */
.wwd2 { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(30px, 5vw, 70px); align-items: start; margin-top: 20px; }
.wwd2__list { display: flex; flex-direction: column; }
.wwd2__item { display: flex; align-items: baseline; gap: 20px; padding: 14px 0; cursor: pointer; border: 0; background: none; text-align: left; width: 100%; }
.wwd2__idx { font-family: var(--font-body); font-size: 0.9rem; color: var(--muted); font-weight: 600; flex-shrink: 0; }
.wwd2__name { font-family: var(--font-display); font-size: clamp(1.8rem, 4.2vw, 3.4rem); line-height: 0.98; letter-spacing: 0.01em; color: #4a4a4a; text-transform: uppercase; transition: color 0.25s var(--ease); }
.wwd2__item:hover .wwd2__name, .wwd2__item.is-active .wwd2__name { color: #fff; }
.wwd2__cta { margin-top: 30px; }
.wwd2__preview { position: sticky; top: 100px; }
.wwd2__media { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--charcoal-800); }
.wwd2__media img { width: 100%; height: 100%; object-fit: cover; }
.wwd2__inc-label { font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin: 22px 0 12px; }
.wwd2__inc { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.wwd2__inc li { font-size: 0.98rem; color: #d4d4d4; padding-left: 20px; position: relative; }
.wwd2__inc li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

/* ---- [03] Track Record ---- */
/* Light chips + grayscale so both transparent-mark and opaque-background brand
   logos read cleanly (a universal-white filter turned opaque logos into blocks). */
.cred__row--logos .cred__logo { background: #f2f2f2; border-color: #e4e4e4; padding: 10px; }
.cred__row--logos .cred__logo img {
  max-height: 26px; max-width: 78%; width: auto; object-fit: contain;
  filter: grayscale(1); opacity: 0.78;
  transition: filter 0.25s var(--ease), opacity 0.25s var(--ease);
}
.cred__row--logos .cred__logo:hover img { filter: none; opacity: 1; }
.track__head { max-width: 760px; }
.track__note { font-style: italic; color: var(--muted-dim); margin-top: 10px; }
.track__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* ---- [04] What Sets Us Apart: mosaic + wolf-eye video ---- */
.wsua-title { text-align: center; font-size: clamp(2.8rem, 9vw, 6.5rem); margin: 10px 0 clamp(30px,5vw,54px); }
.wsua2 { display: grid; grid-template-columns: 1fr 1fr 1.05fr; gap: 16px; align-items: stretch; }
.wsua2__media { position: relative; border-radius: 14px; overflow: hidden; min-height: 560px; border: 1px solid var(--border); }
.wsua2__media img, .wsua2__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wsua2__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(10,10,10,0.85)); }
.wsua2__label { position: absolute; left: 24px; right: 24px; bottom: 22px; z-index: 1; }
.wsua2__label h3 { font-size: 1.5rem; }
.wsua2__label p { font-size: 0.92rem; color: #d0d0d0; margin: 8px 0 0; }
.wsua2__cards { display: grid; grid-template-rows: repeat(3, 1fr); gap: 16px; }
.wsua2__card { border: 1px solid var(--border); border-radius: 14px; padding: 26px 24px; background: var(--charcoal-800); display: flex; flex-direction: column; justify-content: center; }
.wsua2__card svg { width: 30px; height: 30px; color: var(--orange); margin-bottom: 14px; }
.wsua2__card h3 { font-size: 1.25rem; }
.wsua2__card p { font-size: 0.94rem; color: #c8c8c8; margin: 8px 0 0; }

/* ---- The Run tweaks ---- */
.run__foot { color: var(--muted); font-size: 0.92rem; margin-top: 24px; }

/* ---- Proof: number-forward cards (no images) ---- */
.proofn__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.proofn { border: 1px solid var(--border); border-radius: 14px; background: var(--charcoal-800); padding: 34px 30px 32px; display: flex; flex-direction: column; }
.proofn__num { font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 0.9; color: var(--orange); }
.proofn__sub { font-size: 0.92rem; color: #d6d6d6; margin: 12px 0 18px; }
.proofn__cat { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.proofn__desc { font-size: 0.94rem; color: #c4c4c4; margin: 10px 0 0; }

/* ---- Pricing: 2x2 large cards ---- */
.pricing__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
.tier { padding: 34px 32px 34px; }
.tier__name { font-size: 2.2rem; }
.tier .btn { margin-top: auto; }

/* ---- Services page: full-bleed service blocks ---- */
.svc-line { padding-block: clamp(40px, 6vw, 72px); border-top: 1px solid var(--border); }
.svc-line__title { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 26px; }
.svc-line__title span { color: var(--orange); }
.svc-line__media { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); aspect-ratio: 16 / 7; margin-bottom: 26px; }
.svc-line__media img { width: 100%; height: 100%; object-fit: cover; }
.svc-line__desc { font-size: 1.1rem; color: #e2e2e2; max-width: 82ch; }
.svc-line__inc-label { font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin: 22px 0 12px; }
.svc-line__inc { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 10px 30px; max-width: 900px; }
.svc-line__inc li { font-size: 0.98rem; color: #d4d4d4; padding-left: 22px; position: relative; }
.svc-line__inc li::before { content: "\2192"; position: absolute; left: 0; color: var(--orange); }

/* ---- How We Work (services) ---- */
.howwork__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; border-top: 1px solid var(--border); }
.howwork__card { padding: 34px 24px; border-left: 1px solid var(--border); }
.howwork__card:first-child { border-left: 0; }
.howwork__mark { font-family: var(--font-display); font-size: 1.7rem; color: var(--orange); }
.howwork__card p { font-size: 0.95rem; color: #cbcbcb; margin: 12px 0 0; }

/* ---- FAQ (services) ---- */
.faq { border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq__q { font-family: var(--font-display); font-size: clamp(1.2rem, 2.6vw, 1.7rem); letter-spacing: 0.02em; color: #fff; display: flex; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; text-transform: uppercase; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: "+"; color: var(--orange); font-family: var(--font-body); font-weight: 400; }
details[open] .faq__q::after { content: "\2013"; }
.faq__a { color: #cccccc; margin: 14px 0 0; max-width: 90ch; }

/* ---- Responsive: Webflow-match ---- */
@media (max-width: 1024px) {
  .hunt__grid { grid-template-columns: repeat(2, 1fr); }
  .hunt__card:nth-child(3) { border-left: 0 !important; }
  .wsua2 { grid-template-columns: 1fr 1fr; }
  .wsua2__cards { grid-column: 1 / -1; grid-template-rows: none; grid-template-columns: repeat(3,1fr); }
  .menu__box { grid-template-columns: 300px; }
  .menu__media { display: none; }
  .howwork__grid { grid-template-columns: repeat(2,1fr); }
  .howwork__card:nth-child(3) { border-left: 0; }
}
@media (max-width: 860px) {
  .wwd2 { grid-template-columns: 1fr; }
  .wwd2__preview { position: static; }
  .proofn__grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hunt__grid { grid-template-columns: 1fr; }
  .hunt__card + .hunt__card { border-left: 0 !important; border-top: 1px solid var(--border) !important; }
  .wsua2 { grid-template-columns: 1fr; }
  .wsua2__cards { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .svc-line__inc { grid-template-columns: 1fr; }
  .howwork__grid { grid-template-columns: 1fr; }
  .howwork__card { border-left: 0; border-top: 1px solid var(--border); }
  .howwork__card:first-child { border-top: 0; }
}

/* ================================================================
   ROUND 2 REFINEMENTS — 2026-07-07
   ================================================================ */

/* ---- Bigger brand logos ---- */
.nav__logo img { height: 44px; }
.footer__brand img { height: 54px; margin-bottom: 20px; }

/* ---- Hero: two lines, orange only on "Revenue Engine" ---- */
.hero h1 { font-size: clamp(2.3rem, 5.6vw, 4.9rem); max-width: none; }
.hero h1 .line { display: block; white-space: nowrap; }
@media (max-width: 640px) {
  .hero h1 { font-size: clamp(1.85rem, 8vw, 2.7rem); }
  .hero h1 .line { white-space: normal; }
}

/* ---- Section background images (graceful: gradient shows if file absent) ---- */
.has-bg { background-color: var(--charcoal); background-size: cover; background-position: center; background-repeat: no-repeat; }
.bg-hunt    { background-image: linear-gradient(rgba(20,20,20,0.50), rgba(20,20,20,0.66)), url(../img/bg-hunt-v2.jpg); }
.bg-run     { background-image: linear-gradient(rgba(20,20,20,0.84), rgba(20,20,20,0.9)),  url(../img/bg-run.jpg); }
.bg-proof   { background-image: linear-gradient(rgba(20,20,20,0.85), rgba(20,20,20,0.9)),  url(../img/bg-proof.jpg); }
.bg-pricing { background-image: linear-gradient(rgba(20,20,20,0.86), rgba(20,20,20,0.93)), url(../img/bg-pricing.jpg); }
.bg-hunt-hero { background-image: linear-gradient(rgba(18,18,18,0.8) 30%, rgba(18,18,18,0.55)), url(../img/bg-hunt-hero.jpg); }
.bg-track   { background-image: linear-gradient(rgba(20,20,20,0.55), rgba(20,20,20,0.7)), url(../img/bg-track.jpg); }

/* ---- Logo marquee (two rows, opposite directions) ---- */
.logo-marquee {
  display: grid; gap: 16px; margin-top: 30px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.logo-row { display: flex; gap: 16px; width: max-content; will-change: transform; }
.logo-row--left  { animation: marquee-left 38s linear infinite; }
.logo-row--right { animation: marquee-right 38s linear infinite; }
/* Held paused until main.js confirms every logo has loaded (adds .is-loaded to the
   marquee) -- starting before images finish reflows the row mid-scroll and looks like
   a skip/stutter. This selector's higher specificity overrides the animation-shorthand
   rules above regardless of source order. */
.logo-marquee .logo-row { animation-play-state: paused; }
.logo-marquee.is-loaded .logo-row { animation-play-state: running; }
.logo-marquee:hover .logo-row { animation-play-state: paused; }
@keyframes marquee-left  { from { transform: translateX(0); }     to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); }  to { transform: translateX(0); } }
.logo-cell {
  flex: 0 0 auto; width: 172px; height: 74px; background: #f2f2f2;
  border: 1px solid #e4e4e4; border-radius: 8px; display: flex;
  align-items: center; justify-content: center; padding: 12px;
}
.logo-cell img { max-height: 30px; max-width: 80%; width: auto; object-fit: contain; filter: grayscale(1); opacity: 0.82; transition: filter 0.25s var(--ease), opacity 0.25s var(--ease); }
.logo-cell:hover img { filter: none; opacity: 1; }
@media (prefers-reduced-motion: reduce) { .logo-row { animation: none; } }
@media (max-width: 640px) { .logo-cell { width: 140px; height: 64px; } }

/* ---- Proof card themed icons ---- */
.proofn__icon { width: 44px; height: 44px; color: var(--orange); margin-bottom: 16px; }
.proofn__icon svg { width: 100%; height: 100%; }

/* ---- Case studies: themed icon cards + horizontal scroll ---- */
.cs-scroll {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(290px, 340px);
  gap: 22px; overflow-x: auto; padding: 4px 4px 20px; scroll-snap-type: x mandatory;
  scrollbar-width: thin; scrollbar-color: var(--orange) var(--charcoal-800);
}
.cs-scroll::-webkit-scrollbar { height: 8px; }
.cs-scroll::-webkit-scrollbar-track { background: var(--charcoal-800); border-radius: 99px; }
.cs-scroll::-webkit-scrollbar-thumb { background: #3a3a3a; border-radius: 99px; }
.cs-scroll::-webkit-scrollbar-thumb:hover { background: var(--orange); }
.cs-card { scroll-snap-align: start; border: 1px solid var(--border); border-radius: 14px; background: var(--charcoal-800); display: flex; flex-direction: column; overflow: hidden; transition: transform 0.35s var(--ease), border-color 0.35s var(--ease); }
.cs-card:hover { transform: translateY(-6px); border-color: #3a3a3a; }
.cs-card__icon { aspect-ratio: 16 / 9; display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, #242424, #151515); border-bottom: 1px solid var(--border); position: relative; }
.cs-card__icon svg { width: 76px; height: 76px; color: var(--orange); }
.cs-card__badge { position: absolute; top: 14px; left: 14px; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.cs-card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.cs-card__body h3 { font-size: 1.45rem; margin-top: 4px; }
.cs-card__body p { font-size: 0.94rem; color: #c8c8c8; margin: 12px 0 0; }
.cs-card__metrics { display: flex; gap: 22px; margin-top: 20px; flex-wrap: wrap; }
.cs-card__metrics .metric b { font-family: var(--font-display); font-size: 1.7rem; color: var(--orange); display: block; line-height: 1; }
.cs-card__metrics .metric span { font-size: 0.74rem; color: var(--muted); }
.cs-hint { font-size: 0.85rem; color: var(--muted-dim); margin-top: 14px; }

/* ---- Contact: plan callout + ad-spend decline + Calendly ---- */
.plan-callout { display: none; align-items: center; gap: 12px; padding: 14px 18px; border: 1px solid var(--orange); border-radius: 10px; background: rgba(244,80,10,0.08); margin-bottom: 22px; }
.plan-callout.is-shown { display: flex; }
.plan-callout .eyebrow { color: var(--orange); }
.plan-callout b { color: #fff; font-weight: 600; }
.decline { display: none; margin-top: 18px; padding: 20px 22px; border: 1px solid var(--border); border-radius: 12px; background: var(--charcoal-800); }
.decline.is-shown { display: block; }
.decline h4 { font-family: var(--font-display); font-size: 1.5rem; color: #fff; margin-bottom: 10px; }
.decline p { font-size: 0.96rem; color: #c8c8c8; margin: 0 0 14px; }
.form-divider { display: flex; align-items: center; gap: 14px; margin: 26px 0; color: var(--muted-dim); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.form-divider::before, .form-divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.field select { font-family: var(--font-body); font-size: 1rem; color: var(--white); background: var(--charcoal-800); border: 1px solid var(--border); border-radius: 8px; padding: 14px 16px; transition: border-color 0.2s var(--ease); appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239a9a9a' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.field select:focus { outline: none; border-color: var(--orange); }

/* ================================================================
   ROUND 3 — Webflow-fidelity fixes (2026-07-13)
   ================================================================ */

/* ---- Services pill strip: single row like Webflow ---- */
.svc-strip { flex-wrap: nowrap; overflow-x: auto; gap: 12px; scrollbar-width: none; padding-block: 22px; }
.svc-strip::-webkit-scrollbar { display: none; }
.svc-pill { padding: 9px 20px; font-size: 0.92rem; white-space: nowrap; }
@media (max-width: 1024px) { .svc-strip { -webkit-overflow-scrolling: touch; } }

/* ---- HUNT band sits flush under the hero ---- */
.section--hunt { padding-top: clamp(32px, 4.5vw, 58px); padding-bottom: clamp(36px, 5vw, 64px); }
.hunt__intro { text-align: center; max-width: 70ch; margin: 0 auto clamp(28px, 4vw, 44px); }
.hunt__intro h2 { margin: 0.25em 0 0.3em; }
.hunt__intro .lead b { color: var(--white); font-weight: 700; }

/* ================= THE GROWTH DEN (content hub) ================= */
.den-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
.den-card { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 14px; background: var(--charcoal-800); padding: 26px 24px 24px; transition: transform 0.3s var(--ease), border-color 0.3s var(--ease); }
.den-card:hover { transform: translateY(-6px); border-color: var(--orange); }
.den-card__cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); }
.den-card__title { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.01em; margin: 10px 0; line-height: 1.06; }
.den-card__excerpt { font-size: 0.92rem; color: #c8c8c8; margin: 0 0 16px; flex: 1; }
.den-card__meta { font-size: 0.78rem; color: var(--muted); }
.den-card__more { margin-top: 14px; color: var(--orange); font-weight: 600; font-size: 0.9rem; }
@media (max-width: 900px) { .den-grid { grid-template-columns: 1fr; } }

/* Article pages */
.article { max-width: 760px; margin: 0 auto; }
.article__meta { color: var(--muted); font-size: 0.85rem; margin-bottom: 6px; }
.article__cat { color: var(--orange); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.75rem; }
.article__lead { font-size: 1.2rem; color: #eaeaea; line-height: 1.6; }
.article h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 1.5em 0 0.4em; }
.article p, .article li { color: #d4d4d4; font-size: 1.05rem; line-height: 1.7; }
.article p { margin: 0 0 1.1em; }
.article ul { padding-left: 1.2em; margin: 0 0 1.2em; }
.article li { margin-bottom: 8px; }
.article b { color: var(--white); }
.article__cta { margin-top: 40px; padding: 28px; border: 1px solid var(--orange); border-radius: 14px; background: linear-gradient(180deg, rgba(244,80,10,0.08), var(--charcoal-800)); }
.article__cta h3 { font-family: var(--font-display); font-size: 1.5rem; margin: 0 0 6px; }
.article__cta p { margin: 0 0 16px; color: #cfcfcf; }

/* ---- [02] What We Do: ember video background ---- */
.wwd-section { position: relative; overflow: hidden; }
.wwd-section > .container { position: relative; z-index: 2; }
.wwd-video { position: absolute; inset: 0; z-index: 0; }
.wwd-video video { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.wwd-video::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(18,18,18,0.55), rgba(18,18,18,0.78)); }
/* [02] What We Do: swapping service-image section background (set by main.js) */
.wwd-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; opacity: 0.34; transition: opacity 0.45s var(--ease); }
/* Equal-size CTA buttons in What We Do */
/* Single CTA now (the second button was cut for being redundant clutter) -- size it
   naturally instead of the old flex:1 stretch that was built for two side-by-side btns. */
.wwd2__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.wwd2__cta .btn { justify-content: center; margin: 0 !important; }

/* ---- Section index bar: line draws across on scroll ---- */
.sec-bar__line { transform: scaleX(0); transform-origin: left center; transition: transform 0.9s var(--ease); }
.sec-bar.is-drawn .sec-bar__line { transform: scaleX(1); }
.sec-bar__num, .sec-bar__title { opacity: 0; transition: opacity 0.6s var(--ease) 0.2s; }
.sec-bar.is-drawn .sec-bar__num, .sec-bar.is-drawn .sec-bar__title { opacity: 1; }
.vision__bar .sec-bar { padding-bottom: 0; }

/* ---- [03] Track Record: left heading + single-row mono marquee ---- */
.track2 { display: grid; grid-template-columns: 300px 1fr; gap: clamp(24px, 4vw, 52px); align-items: center; margin-top: 30px; }
.track2__head { border-right: 1px solid var(--border); padding-right: clamp(20px, 3vw, 44px); }
.track2__head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.track2__note { font-style: italic; color: var(--muted-dim); margin-top: 12px; font-size: 0.92rem; }
.track2__logos { overflow: hidden; min-width: 0; }

.logo-marquee--mono { display: block; margin-top: 0; }
.logo-marquee--mono .logo-cell { background: transparent; border: 0; border-radius: 0; width: auto; height: 56px; padding: 0 clamp(20px, 2.4vw, 34px); }
.logo-marquee--mono .logo-cell img { filter: brightness(0) invert(1); opacity: 1; height: clamp(20px, 5vw, 28px); width: auto; max-width: none; }
.logo-marquee--mono .logo-cell:hover img { filter: brightness(0) invert(1); opacity: 1; }
.logo-marquee--mono .logo-row--left { animation-duration: 46s; }

@media (max-width: 760px) {
  .track2 { grid-template-columns: 1fr; }
  .track2__head { border-right: 0; border-bottom: 1px solid var(--border); padding: 0 0 20px; }
}

/* ================= CONVERSION LAYER v2 ================= */

/* ---- Built on Vision: founder oversight line ---- */
.vision__oversight { margin-top: 16px; font-size: 1.02rem; }
.vision__oversight b { color: var(--orange); }

/* ---- The Wolf Pact ---- */
.wolfpact__card {
  border: 1px solid var(--orange); border-radius: 16px;
  background: linear-gradient(180deg, rgba(244,80,10,0.10), var(--charcoal-800));
  padding: clamp(28px, 4vw, 48px); text-align: center; max-width: 900px; margin: 0 auto;
}
.wolfpact__head { font-size: clamp(2rem, 5vw, 3.2rem); margin: 0.3em 0; line-height: 1.02; }
.wolfpact__body { font-size: 1.05rem; color: #d6d6d6; max-width: 62ch; margin: 0 auto; }
.wolfpact__link { color: var(--orange); font-weight: 600; white-space: nowrap; }
.wolfpact__link:hover { text-decoration: underline; }

/* ---- Pricing: commitment discount toggle ---- */
.commit { margin-top: 20px; }
.commit__row { display: flex; flex-wrap: wrap; gap: 8px; }
.commit__opt {
  background: var(--charcoal-800); border: 1px solid var(--border); color: #cfcfcf;
  padding: 10px 16px; border-radius: var(--radius-pill); font-size: 0.9rem; font-weight: 600;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.commit__opt:hover { border-color: var(--orange); }
.commit__opt.is-active { background: var(--orange); border-color: var(--orange); color: var(--white); }
.commit__off { opacity: 0.85; font-weight: 700; margin-left: 4px; }
.commit__note { margin-top: 12px; font-size: 0.72rem; line-height: 1.5; color: var(--muted-dim); max-width: 82ch; }

/* ---- Pricing: Foundation spend-based table ---- */
.tier__price-unit { font-family: var(--font-body); font-size: 0.9rem; color: var(--muted); letter-spacing: 0; }
.fee-table { width: 100%; border-collapse: collapse; margin: 6px 0 10px; font-size: 0.82rem; }
.fee-table td { padding: 6px 0; border-bottom: 1px solid var(--border); color: #cfcfcf; }
.fee-table td:last-child { text-align: right; color: var(--white); font-weight: 600; }
.fee-eg { font-size: 0.85rem; color: var(--white); margin: 0 0 4px; font-weight: 600; }
.fee-hint { font-size: 0.78rem; color: var(--muted); margin: 0 0 4px; }

/* ---- Pricing: Sprint HUNT Deep Diagnostic add-on ---- */
.sprint-addon {
  border: 1px dashed var(--border); border-radius: 10px; padding: 14px 16px;
  margin: 4px 0 18px; background: rgba(244,80,10,0.05);
}
.sprint-addon__head {
  font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.02em;
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
}
.sprint-addon__price { color: var(--orange); }
.sprint-addon p { font-size: 0.82rem; color: var(--muted); margin: 6px 0 0; }

/* ---- Contact: inline Calendly embed + form header ---- */
.cal-embed { margin-bottom: clamp(30px, 5vw, 52px); }
.cal-embed__head { text-align: center; max-width: 60ch; margin: 0 auto 20px; }
.cal-embed__head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.cal-embed__widget {
  min-width: 320px; height: 660px; border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; background: var(--charcoal-800);
}
@media (max-width: 600px) { .cal-embed__widget { height: 1000px; } }
.form-head { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 18px; }
.form__alt { margin-top: 14px; font-size: 0.85rem; color: var(--muted); }

/* ---- Exit-intent popup ---- */
.exitpop {
  position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center;
  justify-content: center; padding: 20px; opacity: 0; transition: opacity 0.25s var(--ease);
}
.exitpop.is-open { opacity: 1; }
.exitpop__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.72); }
.exitpop__card {
  position: relative; z-index: 1; width: 100%; max-width: 460px; background: var(--charcoal-800);
  border: 1px solid var(--orange); border-radius: 16px; padding: clamp(26px, 4vw, 40px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5); transform: translateY(12px) scale(0.98);
  transition: transform 0.25s var(--ease);
}
.exitpop.is-open .exitpop__card { transform: none; }
.exitpop__x {
  position: absolute; top: 12px; right: 14px; background: none; border: 0;
  color: var(--muted); font-size: 1.7rem; line-height: 1;
}
.exitpop__x:hover { color: var(--white); }
.exitpop h3 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin: 0.3em 0; line-height: 1.05; }
.exitpop p { color: #cfcfcf; font-size: 0.95rem; margin: 0 0 18px; }
.exitpop__form { display: flex; gap: 10px; flex-wrap: wrap; }
.exitpop__form input {
  flex: 1; min-width: 180px; background: var(--charcoal); border: 1px solid var(--border);
  border-radius: 10px; padding: 13px 15px; color: var(--white); font-family: inherit; font-size: 1rem;
}
.exitpop__form input:focus { outline: none; border-color: var(--orange); }
.exitpop__status { margin: 10px 0 0; font-size: 0.85rem; color: var(--orange); min-height: 1em; }
@media (max-width: 520px) { .exitpop__form .btn { width: 100%; justify-content: center; } }

/* ---- Legal / prose pages (privacy, wolf pact terms) ---- */
.legal { max-width: 820px; }
.legal h2 { font-size: clamp(1.3rem, 3vw, 1.7rem); margin: 1.6em 0 0.5em; }
.legal h2:first-of-type { margin-top: 0.4em; }
.legal p, .legal li { color: #d0d0d0; font-size: 1rem; }
.legal ul, .legal ol { padding-left: 1.2em; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--orange); }
.legal a.btn { color: var(--white); }
.legal__meta { color: var(--muted); font-size: 0.9rem; }
