/* =====================================================================
   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; }


/* ---- Page hero background image (About / HUNT Framework) ---------- */
.page-hero--bg {
  background-image: linear-gradient(rgba(26, 26, 26, 0.3), rgba(26, 26, 26, 0.94)), url("https://cdn.prod.website-files.com/6a1e2b31e1eec70266610bb5/6a489d69d56fec7891238cff_Prompt9_AboutHerovar.png");
  background-size: cover;
  background-position: center;
}
.section-header--bg {
  background-image: linear-gradient(90deg, rgba(26, 26, 26, 0.92) 35%, rgba(26, 26, 26, 0.7)), url("https://cdn.prod.website-files.com/6a1e2b31e1eec70266610bb5/6a489d6bedad43530862fd95_Prompt10_Sectionheadervar.png");
  background-size: cover;
  background-position: center;
}
.page-hero--case-studies {
  background-image: linear-gradient(rgba(26, 26, 26, 0.55), rgba(26, 26, 26, 0.9)), url("https://s3.amazonaws.com/webflow-prod-assets/6a1e2b31e1eec70266610bb5/6a46d4ea8dd5792a89746748_ChatGPT%20Image%20Jul%202%2C%202026%2C%2002_03_37%20PM-p-2000.png");
  background-size: cover;
  background-position: center;
}

/* ---------------------------------------------------------------- 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);
}

/* 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; }

/* ---------------------------------------------------------------- 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);
  background-image: linear-gradient(rgba(17, 17, 17, 0.82), rgba(17, 17, 17, 0.82)), url("https://cdn.prod.website-files.com/6a1e2b31e1eec70266610bb5/6a1e2b33e1eec70266610d58_bg-image-03.jpg");
  background-size: cover;
  background-position: center;
}
.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-direction: column; align-items: flex-start; gap: 20px; }
  .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); }
.wwd__img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 8px; margin-bottom: 18px; }

/* ---- 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; }
.wsua__layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: start; }
.wsua__image { border-radius: 12px; overflow: hidden; position: sticky; top: 100px; }
.wsua__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
  .wsua__layout { grid-template-columns: 1fr; }
  .wsua__image { position: static; max-height: 360px; }
}

/* ---- 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: var(--orange); 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; }
}
