/* DP1 DESIGN - inline CSS moved verbatim from the original insights page. One file per template; not concatenated. */
/* ============================================================
   DP1 DESIGN - Design System (v2)
   WordPress dev notes:
   - All colors are CSS custom properties below - re-theme in one place.
   - Class naming is BEM-lite: .block, .block__element, .block--modifier
   - Every major section has an ID and a  comment.
   ============================================================ */
:root{
  /* Core palette */
  --bg: #0A0A0B;
  --bg-soft: #0E1114;
  --surface: #131316;
  --surface-hover: #191C21;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --text: #F5F5F7;
  --text-muted: #C6CBD3;
  --text-faint: #9298A3;
  /* Brand accents */
  --brand-blue: #3AB0FF;
  --accent: var(--brand-blue);
  --accent-dim: rgba(58,176,255,0.12);
  --purple: #7A5FFF;
  --cyan: #00E5D1;
  --magenta: #FF3D9C;
  --yellow: #F5C518;
  --gold: #B94FFF;
  /* Type */
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --grotesk: "Space Grotesk", "Inter", sans-serif;
  /* Layout */
  --section-gap: clamp(88px, 10vw, 150px);
  --container: 1440px;
  --radius: 14px;
  --radius-sm: 10px;
}

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

html{ scroll-behavior:smooth; }

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

::selection{ background: rgba(58,176,255,0.28); color: #fff; }

a{ color: inherit; text-decoration: none; }
ul{ list-style: none; }
button{ font-family: inherit; }
img, svg{ display: block; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Logo (SVG sprite instances) ----------
   Client request: nav logo MUCH bigger so "DP1 DESIGN" wordmark is readable.
   56px tall lockup (mark above, wordmark below). Utility bar stays compact
   so total header height stays ~110px. */
.logo{ display: inline-flex; align-items: center; color: var(--text); }
.logo__svg{ height: 56px; width: auto; fill: currentColor; }
.logo--footer .logo__svg{ height: 60px; }

/* ---------- Typography ---------- */
.eyebrow{
  font-family: var(--grotesk);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.eyebrow::before{
  content:"";
  display:block;
  width: 22px; height: 12px;
  background: var(--accent);
  transform: skewX(-18deg);
  opacity: .85;
  border-radius: 2px;
}
.eyebrow--center{ justify-content: center; }
h1, h2, h3{ font-weight: 600; letter-spacing: -0.02em; }
.h-display{
  font-size: clamp(2.6rem, 6vw, 4.9rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.h-section{
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 600;
  max-width: 20ch;
}
.h-section .serif, .h-display .serif{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.section-sub{
  color: var(--text-muted);
  font-size: 17px;
  max-width: 56ch;
  margin-top: 18px;
}
.section-head{ margin-bottom: clamp(40px, 5vw, 64px); }

/* ---------- Reveal on scroll ---------- */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
}
.reveal.in{ opacity: 1; transform: none; }
.reveal.d1{ transition-delay: .08s; }
.reveal.d2{ transition-delay: .16s; }
.reveal.d3{ transition-delay: .24s; }
.reveal.d4{ transition-delay: .32s; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: var(--accent); color: #06121C; }
.btn-primary:hover{ background: #5FBEFF; }
.btn-ghost{
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover{ border-color: rgba(255,255,255,0.28); }
.link-arrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  transition: color .2s ease, gap .2s ease;
}
.link-arrow:hover{ color: var(--accent); gap: 12px; }
.arrow{ transition: transform .2s ease; }

/* ============================================================
   UTILITY BAR (phone left · very subtle social icons far right)
   ============================================================ */
.utility-bar{
  background: #08090C;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}
.utility-bar__inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 32px; /* compact - keeps total header ~110px with the 56px logo */
}
.utility-bar__phone{ transition: color .2s ease; }
.utility-bar__phone:hover{ color: var(--text); }
.utility-bar__phone strong{ color: var(--text); font-weight: 500; }
/* Social icons: intentionally very subtle - 12px, monochrome gray,
   no fill change on hover, only brightness to white. */
.utility-bar__social{ display: flex; gap: 14px; align-items: center; }
.utility-bar__social a{ display: flex; }
.utility-bar__social svg{
  width: 12px; height: 12px;
  fill: #ffffff;
  transition: fill .2s ease;
}
.utility-bar__social a:hover svg{ fill: #ffffff; }

/* ============================================================
   NAVIGATION - 8 items + CTA on one line at 1280px
   Home | AI Services ▾ | SEO ▾ | Services ▾ | Work | Insights | About | Contact | [Let's Talk →]
   Sizing tuned so everything fits without wrapping:
   13.5px links · 0 letter-spacing · ~24px effective gap · compact CTA
   ============================================================ */
.nav{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,11,0.45);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.nav.scrolled{
  background: rgba(10,10,11,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 16px;
}
.nav__logo{ flex-shrink: 0; }
.nav__links{
  display: flex;
  gap: 2px;
  align-items: center;
}
.nav__links > li{ position: relative; }
.nav__links a{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--text-muted);
  padding: 9px 11px; /* 11+11+2px gap = ~24px between items */
  border-radius: 8px;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}
.nav__links > li > a:hover{ color: var(--text); background: rgba(255,255,255,0.05); }
/* Tiny 7px chevron (CSS-drawn, no "▾" glyph) - rotates open on hover */
.nav__caret{
  width: 7px; height: 7px;
  margin-top: -3px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.nav__item--dropdown:hover .nav__caret,
.nav__item--dropdown:focus-within .nav__caret,
.nav__item--dropdown.is-open .nav__caret{ transform: rotate(225deg) translateY(2px); }
/* Dropdown panel - pure CSS hover/focus; dev can add JS toggling .is-open for touch */
.nav__dropdown{
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: #101216;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown,
.nav__item--dropdown.is-open .nav__dropdown{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown a{
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.nav__dropdown a:hover{ color: var(--text); background: rgba(255,255,255,0.05); }
.nav__cta{ flex-shrink: 0; }
.nav__cta .btn{ padding: 9px 16px; font-size: 14px; }
.nav__toggle{
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
}
.nav__toggle span{
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  margin: 4px 0;
  border-radius: 2px;
}
.mobile-menu{
  display: none;
  flex-direction: column;
  padding: 8px 32px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,11,0.96);
  backdrop-filter: blur(16px);
}
.mobile-menu a{
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-of-type{ border-bottom: none; }
.mobile-menu a:hover{ color: var(--text); }
.mobile-menu .mobile-menu__sub{ padding-left: 18px; font-size: 14px; }
.mobile-menu.open{ display: flex; }

/* ============================================================
   HERO - nuvo-style prism band over a dimmed starfield
   Layering (bottom → top):
   1. dark base (.hero background, #0A0A0B)
   2. giant DP1 logo watermark - perfectly straight, no rotation, opacity .055
   3. canvas flow field particles - DIMMED to ambient "moving stars"
   4. prism rainbow band canvas - the wow layer (nuvo.com reference)
   5. vignette overlay - darkens corners so centered text stays readable
   6. text content (badge → h1 → sub → CTAs → social proof line)
   The trust logo strip now lives OUTSIDE the hero in .trust-marquee.
   ============================================================ */
.hero{
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(44px, 5vw, 72px) 0 clamp(36px, 4vw, 56px);
  overflow: hidden;
  background: var(--bg);
}
/* Layer 1 - hero background video (edge-to-edge, primary background).
   The canvas layers below act as fallback while the video loads / if it fails / when reduced-motion. */
.hero__video{
  position: absolute;
  inset: 0;                   /* stretches to all four edges of .hero = full viewport width */
  width: 100%;
  height: 100%;
  z-index: 0;                 /* bottom-most visual layer */
  pointer-events: none;
  overflow: hidden;
}
.hero__video video{
  width: 100%;
  height: 100%;
  object-fit: cover;          /* fills the entire hero, crops top/bottom to preserve aspect */
  object-position: center;    /* centered - adjust to shift focal point */
  display: block;
}
/* Once the video is playing, dim the canvas layers so we're not double-rendering */
.hero.has-video .hero__prism{ opacity: 0; transition: opacity .8s ease; }
.hero.has-video .hero__flow{ opacity: 0.10; transition: opacity .8s ease; }
/* Layer 2 - watermark: full DP1 lockup, straight, ambient */
.hero__watermark{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);   /* NO rotation - client request */
  width: min(72vw, 1320px);
  color: var(--text);
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
}
.hero__watermark svg{ width: 100%; height: auto; fill: currentColor; }
/* Layer 3 - flow field canvas (dimmed: ambient background stars) */
.hero__flow{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero__flow canvas{
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.28;        /* dimmed - the prism band is the star now */
  filter: blur(0.6px);  /* very slight bloom on the brightest trails */
}
/* Layer 4 - neon warp-tunnel canvas (the wow layer) */
.hero__prism{
  position: absolute;
  inset: 0;
  z-index: 1;           /* same stacking level, later in DOM = above particles */
  pointer-events: none;
  overflow: hidden;
}
.hero__prism canvas{
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.95;          /* bright, but leaves headroom for vignette + text */
  filter: blur(3px);      /* light softening only - streaks must stay sharp/neon */
  mix-blend-mode: screen; /* blends additively with the particle field below */
}
/* Layer 5 - vignette: darkens corners, keeps the text zone readable */
.hero__vignette{
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at center, transparent 30%, rgba(10,10,11,0.4) 100%);
  pointer-events: none;
  z-index: 2;
}
/* Layer 6 - content, with a soft gradient pool sitting behind the text/CTA block */
.hero__content{
  position: relative;
  z-index: 2;
  max-width: 900px;
}
/* Soft readability gradient - sits behind the text, fades to transparent at the edges.
   Uses ::before so it doesn't affect layout, just paints softly behind content. */
.hero__content::before{
  content: '';
  position: absolute;
  z-index: -1;
  /* Extend beyond the content bounds so the fade is generous and doesn't cut hard */
  top: -40px;
  bottom: -40px;
  left: -60px;
  right: -60px;
  background: radial-gradient(ellipse 65% 75% at 35% 55%,
    rgba(10,10,11,0.65) 0%,
    rgba(10,10,11,0.45) 35%,
    rgba(10,10,11,0.15) 65%,
    transparent 90%);
  pointer-events: none;
  filter: blur(20px);
}
.hero__badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--grotesk);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 26px;
  background: rgba(10,10,11,0.4);
}
.hero__badge .dot{
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.hero__title{ margin-bottom: 24px; }
.hero__title .serif{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.hero__sub{
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 58ch;
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero__sub strong{ color: var(--text); font-weight: 500; }
.hero__ctas{
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Hero social proof line - last element in .hero__content, subtle */
.hero__trust{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--text-muted);
  font-family: var(--grotesk);
  letter-spacing: 0.02em;
}
.hero__trust .star{ color: var(--gold); }
.hero__trust .sep{ color: var(--text-faint); }

/* ============================================================
   TRUST MARQUEE - full-width auto-scrolling logo ticker
   Sits directly BELOW the hero (nuvo.com pattern, per client).
   Track = two identical rows; keyframes shift the track -50%
   (exactly one row width) for a seamless infinite loop.
   Logos: big (50px), grayscale by default, full color on hover.
   ============================================================ */
.trust-marquee{
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: var(--bg);
  padding: 50px 0;
  overflow: hidden;
}
.trust-marquee__eyebrow{
  font-family: var(--grotesk);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: center;
  margin-bottom: 36px;
}
.trust-marquee__track{
  display: flex;
  width: max-content;
  animation: marquee 45s linear infinite;  /* right-to-left, slow + readable */
  will-change: transform;
}
.trust-marquee__track:hover{ animation-play-state: paused; }
.trust-marquee__row{
  display: flex;
  align-items: center;
  gap: 100px;
  padding: 0 0 0 100px; /* leading gap = item gap, so the loop join is seamless */
  margin: 0;
  list-style: none;
  flex: none;
}
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
.trust-logo{
  display: block;
  height: 50px;
  opacity: 0.85;
  /* Pure white overlay - knocks all logos to monochrome white regardless of source color */
  filter: brightness(0) invert(1);
  transition: opacity .3s ease, filter .3s ease, transform .3s ease;
}
.trust-logo:hover{
  opacity: 1;
  filter: none;                /* Full original color on hover */
  transform: translateY(-1px);
}
.trust-logo svg{ height: 100%; width: auto; }
@media (max-width: 900px){
  .trust-marquee{ padding: 40px 0; }
  .trust-logo{ height: 40px; }
}
@media (max-width: 600px){
  .trust-marquee{ padding: 32px 0; }
  .trust-logo{ height: 32px; }
  .trust-marquee__row{ gap: 56px; padding-left: 56px; }
  .trust-marquee__track{ animation-duration: 30s; } /* faster on mobile */
}
@media (prefers-reduced-motion: reduce){
  .trust-marquee__track{ animation: none; }
}

/* ---------- Accessible (screen-reader + AI-crawler) hidden text ----------
   NOT display:none / not spam - standard a11y clip pattern. */
.visually-hidden{
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section{ padding: var(--section-gap) 0 0; }

/* ============================================================
   ACRONYM EXPLAINER (kept from v1)
   ============================================================ */
.acro-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.acro-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.acro-card:hover{
  transform: translateY(-2px);
  border-color: var(--border-strong);
  background: var(--surface-hover);
}
.acro-card__tag{
  font-family: var(--grotesk);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.02em;
}
.acro-card__full{
  font-size: 12px;
  font-family: var(--grotesk);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: -8px;
}
.acro-card p{
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}
.acro-card--featured{
  border-color: rgba(58,176,255,0.35);
  background: linear-gradient(180deg, rgba(58,176,255,0.06) 0%, var(--surface) 60%);
}
.acro-card--featured .acro-card__tag{ color: var(--accent); }

/* ============================================================
   SERVICES BENTO GRID (kept from v1; .tile → .service-card)
   ============================================================ */
.bento{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.service-card{
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.service-card:hover{
  transform: translateY(-2px);
  border-color: var(--border-strong);
  background: var(--surface-hover);
}
.service-card h3{
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  padding-right: 36px;
}
.service-card p{
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 46ch;
}
.service-card__arrow{
  position: absolute;
  top: 26px;
  right: 26px;
  color: var(--text-faint);
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: opacity .25s ease, transform .25s ease, color .25s ease;
}
.service-card:hover .service-card__arrow{ opacity: 1; transform: translate(0,0); color: var(--text); }
.service-card__label{
  font-family: var(--grotesk);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 14px;
}
.span-7{ grid-column: span 7; }
.span-5{ grid-column: span 5; }
.span-4{ grid-column: span 4; }
.service-card--flagship{
  min-height: 340px;
  background: linear-gradient(135deg, rgba(58,176,255,0.09) 0%, var(--surface) 55%);
  border-color: rgba(58,176,255,0.25);
}
.service-card--flagship:hover{ border-color: rgba(58,176,255,0.45); }
.service-card--flagship h3{ font-size: 26px; max-width: 20ch; }
.service-card--flagship p{ font-size: 15px; }
.service-card__kpi{
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 22px;
  font-family: var(--grotesk);
}
.service-card__kpi .num{
  font-size: 30px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.service-card__kpi .cap{ font-size: 13px; color: var(--text-muted); }
.service-card__gridmap{
  position: absolute;
  top: 20px; right: 20px;
  display: grid;
  grid-template-columns: repeat(5, 10px);
  gap: 7px;
  opacity: .9;
  pointer-events: none;
}
.service-card__gridmap i{
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
}
.service-card__gridmap i.on{ background: rgba(58,176,255,0.75); }
.service-card__gridmap i.mid{ background: rgba(58,176,255,0.32); }
.service-card__para{
  position: absolute;
  top: 28px; right: 28px;
  display: flex;
  gap: 7px;
  pointer-events: none;
}
.service-card__para b{
  display: block;
  width: 22px; height: 46px;
  transform: skewX(-18deg);
  border-radius: 4px;
  background: rgba(58,176,255,0.5);
}
.service-card__para b:last-child{ background: rgba(255,255,255,0.14); }
.service-card--moat{ border-color: rgba(185,79,255,0.28); }
.service-card--moat:hover{ border-color: rgba(185,79,255,0.5); }
.service-card--moat .service-card__label{ color: var(--gold); }

/* ============================================================
   NOLA GRAFFITI SECTION - brand heritage moment
   Deliberately breaks the design system: layered type, tilt,
   spray-paint glows, noise texture. This is the personality.
   ============================================================ */
.nola{
  position: relative;
  margin-top: var(--section-gap);
  padding: clamp(80px, 9vw, 130px) 0;
  background:
    radial-gradient(ellipse 60% 50% at 18% 20%, rgba(255,61,156,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 85% 80%, rgba(0,229,209,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 70% 15%, rgba(245,197,24,0.05) 0%, transparent 55%),
    #0B0A0C;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
/* SVG noise overlay sits above color washes, below content */
.nola__noise{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.nola__inner{
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
/* --- Left: the graffiti wall --- */
.nola__wall{
  position: relative;
  min-height: 480px;
}
.nola__tag-dp1{
  position: absolute;
  top: 4%;
  left: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(120px, 14vw, 190px);
  line-height: 0.9;
  color: var(--magenta);
  transform: rotate(-5deg);
  text-shadow:
    4px 4px 0 rgba(0,229,209,0.85),
    8px 8px 0 rgba(10,10,11,0.9),
    0 0 42px rgba(255,61,156,0.4);
  filter: drop-shadow(0 0 22px rgba(255,61,156,0.35));
  user-select: none;
}
.nola__tag-nola{
  position: absolute;
  top: 47%;
  left: 8%;
  font-family: var(--grotesk);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: 0.16em;
  color: var(--yellow);
  border: 3px solid var(--yellow);
  border-radius: 4px;
  padding: 8px 18px;
  transform: rotate(3deg);
  box-shadow: 5px 5px 0 rgba(58,176,255,0.55);
  filter: drop-shadow(0 0 14px rgba(245,197,24,0.3));
  background: rgba(10,10,11,0.55);
  white-space: nowrap;
}
.nola__tag-since{
  position: absolute;
  top: 66%;
  left: 3%;
  font-family: var(--grotesk);
  font-weight: 600;
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: 0.3em;
  color: var(--cyan);
  transform: rotate(-2deg);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
  text-decoration-color: var(--magenta);
  filter: drop-shadow(0 0 10px rgba(0,229,209,0.45));
}
/* DP1 mark, spray-painted */
.nola__spray-mark{
  position: absolute;
  right: -4%;
  bottom: 2%;
  width: clamp(160px, 18vw, 250px);
  color: var(--brand-blue);
  opacity: 0.55;
  transform: rotate(6deg);
  filter: blur(0.6px) drop-shadow(0 0 18px rgba(58,176,255,0.65)) drop-shadow(0 0 40px rgba(58,176,255,0.3));
  pointer-events: none;
}
.nola__spray-mark svg{ width: 100%; height: auto; fill: currentColor; }
/* Trumpet */
.nola__trumpet{
  position: absolute;
  top: 40%;
  right: 2%;
  width: clamp(150px, 16vw, 220px);
  color: var(--yellow);
  transform: rotate(-8deg);
  filter: drop-shadow(2px 2px 0 rgba(255,61,156,0.6)) drop-shadow(0 0 14px rgba(245,197,24,0.35));
}
.nola__trumpet svg{ width: 100%; height: auto; }
/* Scattered music notes */
.nola__note{
  position: absolute;
  color: var(--off-white, #EDEDF0);
  opacity: 0.85;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.25));
}
.nola__note svg{ width: 100%; height: auto; }
.nola__note--1{ top: 2%; right: 16%; width: 34px; color: var(--cyan); transform: rotate(8deg); }
.nola__note--2{ top: 26%; right: 34%; width: 26px; color: #EDEDF0; transform: rotate(-6deg); }
.nola__note--3{ bottom: 12%; left: 34%; width: 30px; color: var(--magenta); transform: rotate(4deg); }
/* --- Right: the editorial copy (calmer) --- */
.nola__copy h2{
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
}
.nola__copy h2 .line-serif{
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--magenta);
}
.nola__copy h2 .line-grotesk{
  display: block;
  font-family: var(--grotesk);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
}
.nola__copy p{
  color: var(--text-muted);
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 52ch;
}
.nola__signature{
  margin-top: 34px;
  font-family: var(--grotesk);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--yellow);
  transform: rotate(-1.5deg);
  display: inline-block;
  filter: drop-shadow(0 0 8px rgba(245,197,24,0.3));
}

/* ============================================================
   MOAT (kept, expanded copy)
   ============================================================ */
.moat{ position: relative; }
.moat__head .h-section{ max-width: 26ch; }
.moat__subhead{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 2.4vw, 26px);
  color: var(--gold);
  margin-top: 20px;
  max-width: 40ch;
}
.moat__intro{
  color: var(--text-muted);
  font-size: 16.5px;
  max-width: 66ch;
  margin-top: 18px;
  line-height: 1.7;
}
.moat__list{
  margin-top: clamp(40px, 5vw, 72px);
  border-top: 1px solid var(--border);
}
.moat__item{
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  padding: 38px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.moat__num{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--text-faint);
  transition: color .3s ease;
}
.moat__item:hover .moat__num{ color: var(--accent); }
.moat__body h3{
  font-size: clamp(19px, 2.2vw, 24px);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.moat__body p{
  color: var(--text-muted);
  font-size: 16px;
  max-width: 62ch;
}

/* ============================================================
   RESULTS (kept from v1)
   ============================================================ */
.stat-row{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.stat{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  background: var(--bg-soft);
}
.stat__n{
  font-family: var(--grotesk);
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.stat__n em{ font-style: normal; color: var(--accent); }
.stat__l{
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  font-family: var(--grotesk);
  letter-spacing: 0.04em;
}
.case-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.case-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .25s ease, border-color .25s ease;
}
.case-card:hover{ transform: translateY(-2px); border-color: var(--border-strong); }
.case-card__tag{
  align-self: flex-start;
  font-family: var(--grotesk);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(58,176,255,0.3);
  border-radius: 100px;
  padding: 5px 12px;
}
.case-card h3{ font-size: 20px; letter-spacing: -0.015em; }
.case-card > p{ font-size: 14px; color: var(--text-muted); flex-grow: 1; }
.case-card__kpis{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.case-card__kpis div{
  background: var(--bg-soft);
  padding: 14px 16px;
}
.case-card__kpis .kn{
  font-family: var(--grotesk);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.case-card__kpis .kl{
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================================
   PACKAGES - no pricing; taglines + "Get a Custom Quote"
   ============================================================ */
.pkg-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.pkg{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease;
  position: relative;
}
.pkg:hover{ transform: translateY(-2px); border-color: var(--border-strong); }
.pkg__name{
  font-family: var(--grotesk);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
/* Tagline replaces the old price element */
.pkg__tagline{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 25px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
  min-height: 3.9em;
}
.pkg__desc{
  font-size: 14px;
  color: var(--text-muted);
  margin: 18px 0 22px;
}
.pkg ul{
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 30px;
  flex-grow: 1;
}
.pkg ul li{
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
}
.pkg ul li::before{
  content:"";
  position: absolute;
  left: 0; top: 7px;
  width: 9px; height: 7px;
  background: var(--text-faint);
  transform: skewX(-18deg);
  border-radius: 1.5px;
}
.pkg ul li strong{ color: var(--text); font-weight: 500; }
.pkg .btn{ justify-content: center; }
.pkg--featured{
  border-color: rgba(58,176,255,0.45);
  background: linear-gradient(180deg, rgba(58,176,255,0.05) 0%, var(--surface) 45%);
}
.pkg--featured:hover{ border-color: rgba(58,176,255,0.65); }
.pkg--featured ul li::before{ background: var(--accent); }
.pkg__pop{
  position: absolute;
  top: -12px;
  left: 30px;
  background: var(--accent);
  color: #06121C;
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.pkg--custom{
  margin-top: 16px;
  border: 1px solid rgba(185,79,255,0.3);
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(185,79,255,0.05) 0%, var(--surface) 50%);
  padding: 34px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  transition: border-color .25s ease;
}
.pkg--custom:hover{ border-color: rgba(185,79,255,0.5); }
.pkg--custom h3{
  font-size: 22px;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.pkg--custom h3 span{ color: var(--gold); font-family: var(--serif); font-style: italic; font-weight: 400; }
.pkg--custom .pkg__tagline{ min-height: 0; font-size: 18px; color: var(--gold); margin-bottom: 8px; }
.pkg--custom p{ font-size: 14.5px; color: var(--text-muted); max-width: 60ch; }
.pkg-note{
  text-align: center;
  font-size: 13px;
  color: var(--text-faint);
  margin-top: 28px;
}

/* ============================================================
   TESTIMONIALS (kept from v1)
   ============================================================ */
.testi-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testi{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease;
}
.testi:hover{ transform: translateY(-2px); border-color: var(--border-strong); }
.testi__quote-mark{
  font-family: var(--serif);
  font-style: italic;
  font-size: 64px;
  line-height: 0.6;
  color: var(--accent);
  opacity: .7;
  margin-bottom: 22px;
}
.testi p{
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text);
  flex-grow: 1;
}
.testi__attr{
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testi__attr .name{ font-weight: 600; font-size: 14.5px; }
.testi__attr .org{ font-size: 13px; color: var(--text-muted); }
.testi__stars{ color: var(--gold); font-size: 12px; letter-spacing: 3px; margin-bottom: 4px; }

/* ============================================================
   WORK - client logo grid (replaces v1 scrolling text strip)
   ============================================================ */
.client-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.client-card{ display: flex; flex-direction: column; gap: 14px; }
.client-tile{
  aspect-ratio: 3 / 2;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12%;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.client-card:hover .client-tile{
  transform: translateY(-4px);
  border-color: rgba(58,176,255,0.55);
  background: var(--surface-hover);
  box-shadow: 0 18px 44px rgba(0,0,0,0.4), 0 0 0 1px rgba(58,176,255,0.12);
}
/* Placeholder logos: muted off-white, warm slightly on hover */
.client-tile__logo{
  width: 100%;
  max-width: 260px;
  color: #C9C9CF;
  transition: color .25s ease;
}
.client-card:hover .client-tile__logo{ color: #F5F5F7; }
.client-tile__logo svg{ width: 100%; height: auto; }
.client-card__meta{ padding: 0 4px; }
.client-card__name{ font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }
.client-card__cat{
  font-family: var(--grotesk);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 3px;
}

/* ============================================================
   INSIGHTS (kept from v1)
   ============================================================ */
.insight-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.insight{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease;
}
.insight:hover{ transform: translateY(-2px); border-color: var(--border-strong); }
.insight__visual{
  height: 150px;
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.insight__visual--v1{ background: linear-gradient(130deg, #10161D 0%, #0D1F30 60%, rgba(58,176,255,0.18) 100%); }
.insight__visual--v2{ background: linear-gradient(210deg, #10161D 0%, #131A22 55%, rgba(122,95,255,0.12) 100%); }
.insight__visual--v3{ background: linear-gradient(160deg, #141318 0%, #1A1610 65%, rgba(185,79,255,0.14) 100%); }
.insight__visual::after{
  content:"";
  position: absolute;
  right: 24px; bottom: -14px;
  width: 34px; height: 68px;
  transform: skewX(-18deg);
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
}
.insight__body{ padding: 26px; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.insight__meta{
  font-family: var(--grotesk);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.insight h3{ font-size: 18px; letter-spacing: -0.015em; line-height: 1.35; }
.insight p{ font-size: 14px; color: var(--text-muted); flex-grow: 1; }
.insight .link-arrow{ font-size: 13.5px; margin-top: 8px; }

/* ============================================================
   FINAL CTA (kept structure; mark-only logo above headline)
   ============================================================ */
.final-cta{
  position: relative;
  text-align: center;
  padding: var(--section-gap) 0;
  margin-top: var(--section-gap);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.final-cta__orb{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 1000px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(58,176,255,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.final-cta__mark{
  position: relative;
  z-index: 1;
  width: 140px;
  margin: 0 auto 36px;
  color: var(--text);
  opacity: 1;
}
.final-cta__mark svg{ width: 100%; height: auto; fill: currentColor; }
.final-cta .container{ position: relative; z-index: 1; }
.final-cta h2{
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 18ch;
  margin: 0 auto 24px;
}
.final-cta h2 .serif{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.final-cta p{
  color: var(--text-muted);
  max-width: 62ch;
  margin: 0 auto 40px;
  font-size: 17px;
}
.final-cta__fineprint{
  margin: 22px auto 0;
  font-size: 13px;
  color: var(--text-faint);
  font-family: var(--grotesk);
  letter-spacing: 0.04em;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact{
  padding: var(--section-gap) 0;
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
}
.contact__grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact__headline{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.contact__body{
  color: var(--text-muted);
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 48ch;
  margin-bottom: 40px;
}
.contact__info{
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact__info-item{
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contact__info-label{
  font-family: var(--grotesk);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.contact__info-value{ font-size: 16px; color: var(--text); }
.contact__info-value a{ transition: color .2s ease; }
.contact__info-value a:hover{ color: var(--accent); }
/* Form */
.contact-form{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form .form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form label{
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--grotesk);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-form input,
.contact-form select,
.contact-form textarea{
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  background: #131316;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
}
.contact-form select{
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8A93' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.contact-form textarea{ resize: vertical; min-height: 110px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{ border-color: var(--accent); }
.contact-form input::placeholder,
.contact-form textarea::placeholder{ color: var(--text-faint); }
.contact-form .btn{ justify-content: center; margin-top: 4px; }
.cf-turnstile{
  min-height: 66px;
  border: 1px dashed rgba(255,255,255,0.14);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--grotesk);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.cf-turnstile::before{ content:"Cloudflare Turnstile - spam protection"; }
.form-fineprint{
  font-size: 12.5px;
  color: var(--text-faint);
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer{
  border-top: 1px solid var(--border);
  background: #08090C;
  padding: 72px 0 0;
}
.footer__grid{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.9fr;
  gap: 48px;
  padding-bottom: 64px;
}
.footer__brand .tag{
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--text-muted);
  margin: 24px 0 26px;
  max-width: 34ch;
}
.footer__brand address{
  font-style: normal;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.9;
}
.footer__brand address a{ color: var(--text); transition: color .2s ease; }
.footer__brand address a:hover{ color: var(--accent); }
.footer__col h4{
  font-family: var(--grotesk);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer__col ul{ display: flex; flex-direction: column; gap: 12px; }
.footer__col a{
  font-size: 14.5px;
  color: var(--text-muted);
  transition: color .2s ease;
}
.footer__col a:hover{ color: var(--text); }
.footer__bottom{
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.footer__bottom-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-faint);
}
.footer__social{ display: flex; gap: 16px; align-items: center; }
.footer__social a{ display: flex; opacity: .55; transition: opacity .2s ease; }
.footer__social a:hover{ opacity: 1; }
.footer__social svg{ width: 15px; height: 15px; fill: var(--text); }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
  /* Flow field JS also checks prefers-reduced-motion and renders a single
     static frame instead of animating. */
  .btn, .service-card, .pkg, .case-card, .testi, .insight, .client-tile{ transition: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px){
  /* 8-item nav needs ~1100px+; collapse to hamburger below 1024 */
  .nav__links{ display: none; }
  .nav__toggle{ display: block; }
  .acro-grid{ grid-template-columns: repeat(2, 1fr); }
  .acro-card--featured{ grid-column: span 2; }
  .span-7, .span-5, .span-4{ grid-column: span 6; }
  .service-card--flagship{ grid-column: span 12; }
  .stat-row{ grid-template-columns: repeat(2, 1fr); }
  .case-grid, .testi-grid, .insight-grid, .pkg-grid{ grid-template-columns: 1fr 1fr; }
  .client-grid{ grid-template-columns: 1fr 1fr; }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
  .nola__inner{ grid-template-columns: 1fr; }
  .nola__wall{ min-height: 420px; }
  .contact__grid{ grid-template-columns: 1fr; }
}
@media (max-width: 768px){
  .container{ padding: 0 20px; }
  .utility-bar__phone{ font-size: 12px; }
  .hero__ctas{ gap: 18px; margin-bottom: 36px; }
  .hero__watermark{ width: 130%; opacity: 0.04; }
  .logo__svg{ height: 46px; }
  .acro-grid{ grid-template-columns: 1fr; }
  .acro-card--featured{ grid-column: span 1; }
  .span-7, .span-5, .span-4, .service-card--flagship{ grid-column: span 12; }
  .stat-row{ grid-template-columns: 1fr 1fr; }
  .case-grid, .testi-grid, .insight-grid, .pkg-grid{ grid-template-columns: 1fr; }
  .client-grid{ grid-template-columns: 1fr; }
  .moat__item{ grid-template-columns: 1fr; gap: 8px; padding: 30px 0; }
  .moat__num{ font-size: 34px; }
  .footer__grid{ grid-template-columns: 1fr; gap: 40px; }
  .pkg--custom{ flex-direction: column; align-items: flex-start; }
  .hero__trust{ font-size: 12.5px; gap: 10px; }
  .nav__cta{ display: none; }
  .nola__wall{ min-height: 360px; }
  .nola__tag-dp1{ font-size: 96px; }
  .contact-form .form-row{ grid-template-columns: 1fr; }
}

/* ==== DP1 COMPONENT LIBRARY v2 (do not edit between markers by hand) ==== */

/* ---------- Section eyebrow kicker ---------- */
.section-eyebrow{
  font-family:var(--grotesk); font-size:11px; font-weight:600;
  letter-spacing:.2em; text-transform:uppercase; color:var(--text-muted);
  display:inline-block; margin-bottom:14px; padding-bottom:7px;
  border-bottom:2px solid var(--accent);
}

/* ---------- Key takeaways ---------- */
.key-takeaways{
  background:linear-gradient(135deg, rgba(58,176,255,.07), var(--surface) 55%);
  border:1px solid rgba(58,176,255,.28); border-radius:var(--radius);
  padding:26px 30px; margin:0 0 clamp(40px,5vw,60px);
}
.key-takeaways .kt-head{
  font-family:var(--grotesk); font-size:11.5px; font-weight:600;
  letter-spacing:.18em; text-transform:uppercase; color:var(--accent); margin-bottom:14px;
}
.key-takeaways ol{ list-style:none; counter-reset:kt; display:flex; flex-direction:column; gap:12px; margin:0; }
.key-takeaways li{ counter-increment:kt; position:relative; padding-left:46px; color:var(--text); font-size:15.5px; line-height:1.6; }
.key-takeaways li::before{
  content:counter(kt,decimal-leading-zero); position:absolute; left:0; top:-2px;
  font-family:var(--serif); font-style:italic; font-size:25px; color:var(--accent);
}

/* ---------- Stat blocks ---------- */
.stat-grid{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:1px; background:var(--border); border:1px solid var(--border);
  border-radius:var(--radius); overflow:hidden; margin:24px 0;
}
.stat-block{ background:var(--surface); padding:34px 28px; }
.stat-block__num{
  font-family:var(--grotesk); font-weight:600; font-size:clamp(42px,4.4vw,64px);
  line-height:1; letter-spacing:-.03em; color:var(--accent);
}
.stat-block--gold .stat-block__num{ color:var(--gold); }
.stat-block__label{
  font-family:var(--grotesk); font-size:11px; font-weight:600; letter-spacing:.16em;
  text-transform:uppercase; color:var(--text); margin-top:12px;
}
.stat-block__ctx{ font-size:13px; color:var(--text-muted); line-height:1.55; margin-top:8px; max-width:32ch; }

/* ---------- Stat bar (compact) ---------- */
.stat-bar{
  display:flex; flex-wrap:wrap; border:1px solid var(--border);
  border-radius:var(--radius); overflow:hidden; margin:18px 0 26px; background:var(--surface);
}
.stat-bar__item{ flex:1 1 130px; padding:16px 20px; border-right:1px solid var(--border); display:flex; flex-direction:column; gap:2px; }
.stat-bar__item:last-child{ border-right:0; }
.stat-bar__item b{ font-family:var(--grotesk); font-size:22px; font-weight:600; color:var(--text); letter-spacing:-.02em; }
.stat-bar__item span{ font-family:var(--grotesk); font-size:10.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--text-faint); }

/* ---------- Pullquote ---------- */
.pullquote{ position:relative; margin:clamp(38px,5vw,58px) 0; padding:50px 0 6px 30px; border-left:3px solid var(--accent); }
.pullquote::before{
  content:"\201C"; position:absolute; left:22px; top:-8px;
  font-family:var(--serif); font-size:6rem; line-height:1; color:var(--accent);
  opacity:.85; pointer-events:none;
}
.pullquote--gold{ border-left-color:var(--gold); }
.pullquote--gold::before{ color:var(--gold); }
.pullquote blockquote{ margin:0; }
.pullquote blockquote p{
  font-family:var(--serif); font-style:italic; font-size:clamp(20px,2.6vw,27px);
  line-height:1.45; color:var(--text); max-width:34ch; margin:0 0 14px;
}
.pullquote figcaption{ font-family:var(--grotesk); font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--text-muted); }

/* ---------- Callouts ---------- */
.callout{
  display:grid; grid-template-columns:44px 1fr; gap:16px;
  background:var(--surface); border:1px solid var(--border); border-left-width:3px;
  border-radius:var(--radius); padding:22px 26px; margin:26px 0;
}
.callout__icon{ width:44px; height:44px; border-radius:10px; display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,.05); }
.callout__icon svg{ width:22px; height:22px; stroke:currentColor; fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.callout__body h4{ font-size:15px; margin:2px 0 6px; letter-spacing:.01em; }
.callout__body p{ font-size:14.5px; color:var(--text-muted); margin:0; line-height:1.65; max-width:64ch; }
.callout--tip{ border-left-color:var(--accent); }
.callout--tip .callout__icon{ color:var(--accent); background:rgba(58,176,255,.1); }
.callout--warning{ border-left-color:var(--gold); }
.callout--warning .callout__icon{ color:var(--gold); background:rgba(185,79,255,.1); }
.callout--critical{ border-left-color:#FF5C5C; }
.callout--critical .callout__icon{ color:#FF5C5C; background:rgba(255,92,92,.1); }
.callout--note{ border-left-color:var(--border-strong); }
.callout--note .callout__icon{ color:var(--text-muted); }
@media(max-width:560px){ .callout{ grid-template-columns:1fr; } .callout__icon{ display:none; } }

/* ---------- Icon list (checkmarks) ---------- */
ul.icon-list{ display:flex; flex-direction:column; gap:14px; margin:0 0 20px; list-style:none; padding:0; }
ul.icon-list li{ position:relative; padding-left:34px; color:var(--text-muted); font-size:16px; line-height:1.65; }
ul.icon-list li::before{
  content:""; position:absolute; left:0; top:4px; width:19px; height:19px;
  background-color:var(--accent);
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round' d='M3.5 12.5l5.5 5.5L20.5 6'/%3E%3C/svg%3E") center/contain no-repeat;
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round' d='M3.5 12.5l5.5 5.5L20.5 6'/%3E%3C/svg%3E") center/contain no-repeat;
}
ul.icon-list li strong{ color:var(--text); }

/* ---------- Compare table ---------- */
.compare-table{ border:1px solid var(--border); border-radius:var(--radius); overflow:auto; margin:24px 0; }
.compare-table table{ width:100%; border-collapse:collapse; min-width:560px; font-size:14.5px; }
.compare-table thead th{
  font-family:var(--grotesk); font-size:11.5px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--text-muted); text-align:left; padding:16px 20px;
  background:rgba(255,255,255,.03); border-bottom:1px solid var(--border-strong);
}
.compare-table thead th.ct-new{ color:var(--accent); }
.compare-table tbody th{
  font-family:var(--grotesk); font-size:12px; letter-spacing:.06em; text-transform:uppercase;
  color:var(--text); text-align:left; padding:16px 20px; font-weight:600; vertical-align:top;
}
.compare-table td{ padding:16px 20px; color:var(--text-muted); vertical-align:top; line-height:1.55; }
.compare-table tbody tr{ border-top:1px solid var(--border); }
.compare-table tbody tr:nth-child(odd){ background:rgba(255,255,255,.02); }
.compare-table td.ct-x::before{ content:"\2715"; color:#FF5C5C; font-weight:700; margin-right:10px; font-size:12px; }
.compare-table td.ct-check{ color:var(--text); }
.compare-table td.ct-check::before{ content:"\2713"; color:var(--accent); font-weight:700; margin-right:10px; }

/* ---------- Process timeline ---------- */
ol.process-timeline{ list-style:none; margin:28px 0; padding:0; }
.process-timeline li{ position:relative; padding:0 0 36px 128px; }
.process-timeline li::before{ content:""; position:absolute; left:99px; top:16px; bottom:0; width:1px; background:var(--border-strong); }
.process-timeline li:last-child{ padding-bottom:6px; }
.process-timeline li:last-child::before{ display:none; }
.process-timeline li::after{
  content:""; position:absolute; left:95px; top:8px; width:9px; height:9px;
  border-radius:50%; background:var(--accent); box-shadow:0 0 0 4px rgba(58,176,255,.14);
}
.pt-num{
  position:absolute; left:0; top:-8px; width:80px; text-align:right;
  font-family:var(--serif); font-style:italic; font-size:34px; color:var(--accent); line-height:1.2;
}
.pt-num--yr{ font-size:25px; color:var(--gold); top:0; }
.pt-body h3{ margin:0 0 6px !important; font-size:17.5px; }
.pt-body p{ font-size:15px; margin:0; color:var(--text-muted); max-width:60ch; }
@media(max-width:560px){
  .process-timeline li{ padding-left:76px; }
  .pt-num{ width:52px; font-size:22px; top:-4px; }
  .pt-num--yr{ font-size:17px; top:0; }
  .process-timeline li::before{ left:62px; }
  .process-timeline li::after{ left:58px; }
}

/* ---------- Split block ---------- */
.split-block{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(28px,4vw,56px); align-items:center; margin:30px 0; }
.split-block--rev > :first-child{ order:2; }
@media(max-width:860px){ .split-block{ grid-template-columns:1fr; } .split-block--rev > :first-child{ order:0; } }

/* ---------- Section dividers ---------- */
.section-divider{ display:flex; justify-content:center; align-items:center; height:44px; margin:clamp(8px,1.5vw,16px) 0 clamp(40px,5vw,60px); }
.section-divider::before{
  content:""; width:150px; height:26px; background-color:rgba(255,255,255,.22);
  -webkit-mask:var(--divider-shape) center/contain no-repeat;
  mask:var(--divider-shape) center/contain no-repeat;
}
.section-divider--fleur{ --divider-shape:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c-1.8 2.2-2.6 4-2.6 5.6 0 1.4.6 2.6 1.6 3.9-2-.9-3.3-2-4-3.5-.5 2 .1 3.7 1.8 4.9H7c-2 0-3.4-.8-4.2-2.3-.4 2.8 1 4.6 3.9 4.9h3.6c-.1 1.2-.5 2-1.3 2.7h6c-.8-.7-1.2-1.5-1.3-2.7h3.6c2.9-.3 4.3-2.1 3.9-4.9-.8 1.5-2.2 2.3-4.2 2.3h-1.8c1.7-1.2 2.3-2.9 1.8-4.9-.7 1.5-2 2.6-4 3.5 1-1.3 1.6-2.5 1.6-3.9C14.6 6 13.8 4.2 12 2z'/%3E%3C/svg%3E"); }
.section-divider--sparkle{ --divider-shape:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 24'%3E%3Cpath d='M30 1l2.6 7.4L40 11l-7.4 2.6L30 21l-2.6-7.4L20 11l7.4-2.6z'/%3E%3Ccircle cx='7' cy='11' r='2'/%3E%3Ccircle cx='53' cy='11' r='2'/%3E%3C/svg%3E"); }
.section-divider--chevron{ --divider-shape:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M6 9l7 7 7-7M23 9l7 7 7-7M40 9l7 7 7-7'/%3E%3C/svg%3E"); }
.section-divider--dots{ --divider-shape:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 84 24'%3E%3Ccircle cx='6' cy='12' r='2.4'/%3E%3Ccircle cx='24' cy='12' r='2.8'/%3E%3Ccircle cx='42' cy='12' r='4'/%3E%3Ccircle cx='60' cy='12' r='2.8'/%3E%3Ccircle cx='78' cy='12' r='2.4'/%3E%3C/svg%3E"); }

/* ---------- Badge chips ---------- */
.badge-chip{
  display:inline-flex; align-items:center; gap:6px; padding:5px 12px;
  border:1px solid var(--border-strong); border-radius:999px;
  font-family:var(--grotesk); font-size:11px; font-weight:600; letter-spacing:.08em;
  text-transform:uppercase; color:var(--text-muted); background:rgba(255,255,255,.03);
  margin:0 6px 6px 0; white-space:nowrap;
}
.badge-chip--accent{ color:var(--accent); border-color:rgba(58,176,255,.4); background:rgba(58,176,255,.08); }
.badge-chip--gold{ color:var(--gold); border-color:rgba(185,79,255,.4); background:rgba(185,79,255,.08); }

/* ---------- Testimonial card ---------- */
.testimonial-card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius);
  padding:clamp(26px,3.5vw,40px); margin:26px 0; position:relative;
}
.testimonial-card::before{
  content:"\201C"; position:absolute; top:8px; right:28px;
  font-family:var(--serif); font-size:5rem; color:var(--gold); opacity:.45; line-height:1; pointer-events:none;
}
.testimonial-card blockquote{ margin:0; }
.testimonial-card blockquote p{
  font-family:var(--serif); font-style:italic; font-size:clamp(18px,2.2vw,23px);
  line-height:1.5; color:var(--text); margin:0 0 18px; max-width:52ch;
}
.testimonial-card figcaption{ display:flex; flex-wrap:wrap; align-items:center; gap:8px 14px; font-size:13.5px; color:var(--text-muted); }
.testimonial-card figcaption strong{ color:var(--text); font-size:15px; }
.testimonial-card .stars{ color:var(--gold); letter-spacing:3px; font-size:13px; }
.testimonial-card figcaption .badge-chip{ margin:0; }

/* ---------- Mid-page CTA band ---------- */
.cta-band{
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
  margin:clamp(40px,5vw,64px) 0; padding:clamp(26px,3.5vw,40px);
  border:1px solid rgba(58,176,255,.3); border-radius:var(--radius);
  background:linear-gradient(100deg,#0E1114 0%, rgba(58,176,255,.13) 100%);
}
.cta-band__text h3{ font-size:clamp(19px,2.4vw,25px); margin:0 0 6px !important; letter-spacing:-.01em; }
.cta-band__text h3 .serif{ font-family:var(--serif); font-style:italic; font-weight:400; color:var(--accent); }
.cta-band__text p{ font-size:14.5px; color:var(--text-muted); margin:0; max-width:54ch; }
.cta-band .btn{ flex-shrink:0; }

/* ---------- Related card enhancements ---------- */
.related-card{ position:relative; }
.related-card::after{
  content:"\2192"; position:absolute; right:22px; top:20px;
  color:var(--text-faint); font-size:18px; transition:transform .25s ease, color .25s ease;
}
.related-card:hover::after{ color:var(--accent); transform:translateX(4px); }
.related-grid--3{ grid-template-columns:repeat(3,1fr); }
@media(max-width:860px){ .related-grid--3{ grid-template-columns:1fr; } }

/* ---------- FAQ accordion ---------- */
.faq-acc{ border-top:1px solid var(--border); }
.faq-acc__item{ border-bottom:1px solid var(--border); }
.faq-acc__item summary{
  cursor:pointer; list-style:none; display:flex; justify-content:space-between; align-items:center;
  gap:18px; padding:22px 4px; font-size:16.5px; font-weight:600; color:var(--text);
  transition:color .2s ease;
}
.faq-acc__item summary::-webkit-details-marker{ display:none; }
.faq-acc__item summary:hover{ color:var(--accent); }
.faq-acc__item summary::after{
  content:""; flex-shrink:0; width:9px; height:9px; margin-right:8px;
  border-right:1.6px solid var(--text-muted); border-bottom:1.6px solid var(--text-muted);
  transform:rotate(45deg); transition:transform .25s ease;
}
.faq-acc__item[open] summary::after{ transform:rotate(225deg); }
.faq-acc__a{ padding:0 4px 24px; }
.faq-acc__a p{ font-size:15.5px; color:var(--text-muted); margin:0 0 8px; max-width:70ch; line-height:1.7; }

/* ---------- Tag cloud ---------- */
.tag-cloud{ display:flex; flex-wrap:wrap; gap:8px; margin:20px 0; }
.tag-cloud a{
  display:inline-block; padding:7px 14px; border:1px solid var(--border); border-radius:999px;
  font-family:var(--grotesk); font-size:12.5px; color:var(--text-muted);
  text-decoration:none !important; transition:all .2s ease; background:rgba(255,255,255,.02);
}
.tag-cloud a:hover{ color:var(--accent); border-color:rgba(58,176,255,.45); background:rgba(58,176,255,.06); }

/* ---------- Image / screenshot placeholder ---------- */
.image-caption-block{ margin:26px 0; border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; background:var(--surface); }
.icb-art{
  height:var(--icb-h,300px); display:flex; align-items:center; justify-content:center; position:relative;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(58,176,255,.16), transparent 55%),
    radial-gradient(ellipse at 80% 85%, rgba(122,95,255,.14), transparent 55%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.025) 0 2px, transparent 2px 14px),
    #0E1114;
}
.icb-art span{ font-family:var(--serif); font-style:italic; font-size:clamp(56px,7vw,96px); color:rgba(245,245,247,.22); letter-spacing:.04em; }
.image-caption-block figcaption{
  padding:14px 20px; font-size:12.5px; color:var(--text-muted);
  border-top:1px solid var(--border); font-family:var(--grotesk); letter-spacing:.02em;
}

/* ---------- Glossary ---------- */
.glossary-az{
  position:sticky; top:76px; z-index:40; display:flex; flex-wrap:wrap; gap:4px;
  padding:12px 14px; margin:0 0 clamp(36px,4vw,54px);
  background:rgba(10,10,11,.9); -webkit-backdrop-filter:blur(12px); backdrop-filter:blur(12px);
  border:1px solid var(--border); border-radius:22px;
}
.glossary-az a{
  min-width:32px; height:32px; padding:0 8px; display:flex; align-items:center; justify-content:center;
  border-radius:16px; font-family:var(--grotesk); font-size:12.5px; font-weight:600;
  color:var(--text-muted); transition:all .2s ease; text-decoration:none !important;
}
.glossary-az a:hover{ color:#0A0A0B; background:var(--accent); }
.glossary-intro{ max-width:70ch; }
.glossary-group{ margin-bottom:clamp(40px,5vw,64px); }
.glossary-letter{
  font-family:var(--serif) !important; font-style:italic; font-weight:400 !important;
  font-size:clamp(40px,5vw,60px) !important; color:var(--accent);
  border-bottom:1px solid var(--border); padding-bottom:8px; margin-bottom:8px !important;
}
.glossary-entry{ padding:22px 0 10px; border-bottom:1px solid var(--border); scroll-margin-top:150px; }
.glossary-entry h3{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin:0 0 10px !important; font-size:18px; }
.glossary-entry h3 .badge-chip{ margin:0; }
.glossary-why{ font-size:14px !important; }
.glossary-rel{ font-size:13.5px !important; font-family:var(--grotesk); }

/* ---------- Leadership / team ---------- */
.founder-card{ display:grid; grid-template-columns:minmax(220px,320px) 1fr; gap:clamp(28px,4vw,56px); margin:10px 0 30px; align-items:start; }
.portrait-ph{
  aspect-ratio:4/5; border:1px solid var(--border-strong); border-radius:var(--radius);
  display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden;
  background:
    radial-gradient(ellipse at 25% 20%, rgba(58,176,255,.2), transparent 60%),
    radial-gradient(ellipse at 80% 90%, rgba(185,79,255,.12), transparent 55%),
    #0E1114;
}
.portrait-ph span{ font-family:var(--serif); font-style:italic; font-size:64px; color:rgba(245,245,247,.3); }
.portrait-ph::after{ content:""; position:absolute; inset:14px; border:1px solid rgba(255,255,255,.12); border-radius:8px; pointer-events:none; }
.founder-name{ font-size:clamp(30px,4vw,44px) !important; letter-spacing:-.02em; margin:0 0 4px !important; }
.founder-role{ font-family:var(--grotesk); font-size:12px; letter-spacing:.16em; text-transform:uppercase; color:var(--accent); margin-bottom:18px; }
.skill-list{ display:grid; grid-template-columns:1fr 1fr; gap:12px 26px; margin:20px 0; }
.skill-list .sk{ display:flex; flex-direction:column; gap:7px; font-family:var(--grotesk); font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--text-muted); }
.skill-list .sk i{ display:block; height:3px; background:var(--border); border-radius:2px; position:relative; font-style:normal; }
.skill-list .sk i::before{ content:""; position:absolute; inset:0; width:var(--sk,100%); background:var(--accent); border-radius:2px; }
.team-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin:24px 0; }
.team-card{ background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; transition:border-color .25s ease; }
.team-card:hover{ border-color:var(--border-strong); }
.team-card summary{ list-style:none; cursor:pointer; padding:24px; transition:background .2s ease; }
.team-card summary::-webkit-details-marker{ display:none; }
.team-card summary:hover{ background:var(--surface-hover); }
.team-photo{
  width:76px; height:76px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-family:var(--serif); font-style:italic; font-size:26px; color:rgba(245,245,247,.5);
  border:1px solid var(--border-strong); background:linear-gradient(135deg, rgba(58,176,255,.16), #0E1114);
  margin-bottom:14px;
}
.team-card h3{ font-size:17px; margin:0 0 3px !important; }
.team-card .t-role{ font-family:var(--grotesk); font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:var(--accent); margin-bottom:10px; }
.team-card .t-teaser{ font-size:13.5px; color:var(--text-muted); margin:0 0 12px; line-height:1.6; }
.team-card .t-more{ font-family:var(--grotesk); font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:var(--text-faint); }
.team-card[open] .t-more{ display:none; }
.team-card .t-full{ padding:18px 24px 24px; border-top:1px solid var(--border); }
.team-card .t-full p{ font-size:14px; }
.assoc-grid{ display:flex; flex-wrap:wrap; gap:10px; margin:20px 0; }
.assoc-grid .badge-chip{ margin:0; padding:11px 18px; font-size:12px; }
@media(max-width:960px){ .team-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:640px){ .team-grid{ grid-template-columns:1fr; } .founder-card{ grid-template-columns:1fr; } .portrait-ph{ max-width:320px; } }

/* ---------- Work bento ---------- */
.work-filters{ display:flex; flex-wrap:wrap; gap:8px; margin:0 0 26px; }
.work-filters button{
  font-family:var(--grotesk); font-size:12.5px; font-weight:600; letter-spacing:.08em; text-transform:uppercase;
  padding:9px 18px; border-radius:999px; border:1px solid var(--border-strong);
  background:transparent; color:var(--text-muted); cursor:pointer; transition:all .2s ease;
}
.work-filters button:hover{ color:var(--text); border-color:var(--text-faint); }
.work-filters button.active{ background:var(--accent); border-color:var(--accent); color:#0A0A0B; }
.bento{ display:grid; grid-template-columns:repeat(12,1fr); gap:14px; grid-auto-rows:92px; grid-auto-flow:dense; }
.bento__cell{
  grid-column:span 4; grid-row:span 2; position:relative; display:flex; flex-direction:column;
  border:1px solid var(--border); border-radius:var(--radius); overflow:hidden;
  background:var(--surface); text-decoration:none !important;
  transition:transform .3s ease, border-color .3s ease;
}
a.bento__cell:hover{ transform:translateY(-4px) rotate(-.4deg); border-color:rgba(58,176,255,.55); }
.b-span-6{ grid-column:span 6; } .b-span-8{ grid-column:span 8; } .b-span-12{ grid-column:span 12; }
.b-row-3{ grid-row:span 3; } .b-row-4{ grid-row:span 4; }
.bento__art{
  flex:1; min-height:0; display:flex; align-items:center; justify-content:center;
  background:
    radial-gradient(ellipse at 20% 15%, var(--g1, rgba(58,176,255,.32)), transparent 62%),
    radial-gradient(ellipse at 85% 90%, var(--g2, rgba(122,95,255,.26)), transparent 62%),
    #0E1114;
}
.bento__art span{ font-family:var(--serif); font-style:italic; font-size:clamp(34px,4.5vw,72px); color:rgba(245,245,247,.3); letter-spacing:.02em; }
.bento__meta{ padding:14px 18px 16px; border-top:1px solid var(--border); }
.bento__meta h3{ font-size:16px; margin:0 0 6px !important; color:var(--text); }
.bento__meta .b-serv{ font-family:var(--grotesk); font-size:10.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--text-faint); margin:6px 0 0; display:block; }
.bento__cell.hide{ display:none; }
@media(max-width:900px){
  .bento{ grid-template-columns:repeat(2,1fr); grid-auto-rows:auto; }
  .bento__cell{ grid-column:auto !important; grid-row:auto !important; }
  .bento__art{ min-height:150px; }
}
@media(max-width:600px){ .bento{ grid-template-columns:1fr; } }

/* ---------- NOLA sticker-sheet collage ---------- */
.nola-collage{
  position:relative; padding:var(--section-gap) 0; background:#0A0A0B;
  border-top:1px solid var(--border); border-bottom:1px solid var(--border); overflow:hidden;
}
.nola-collage__noise{ position:absolute; inset:0; width:100%; height:100%; pointer-events:none; opacity:.5; }
.nola-collage__head{ position:relative; text-align:center; margin-bottom:clamp(30px,4vw,50px); padding:0 20px; }
.nola-collage__head .eyebrow{ justify-content:center; display:flex; }
.nola-collage__head h2{ font-size:clamp(1.9rem,4.5vw,3.4rem); letter-spacing:-.02em; line-height:1.12; }
.nola-collage__head h2 .serif{ font-family:var(--serif); font-style:italic; font-weight:400; color:var(--gold); }
.nola-collage__head p{ color:var(--text-muted); max-width:62ch; margin:16px auto 0; font-size:15.5px; line-height:1.7; }
.nola-collage__art{ position:relative; display:block; width:100%; height:auto; }
.nola-collage .nc-el{ transition:opacity .25s ease; cursor:crosshair; }
.nola-collage .nc-el:hover{ opacity:1 !important; }
.nola-collage__sig{
  position:relative; text-align:center; font-family:var(--grotesk); letter-spacing:.3em;
  font-size:11px; color:var(--text-faint); text-transform:uppercase; margin-top:28px;
}
.nola-collage--embed{
  border:1px solid var(--border); border-radius:var(--radius);
  padding:clamp(28px,4vw,48px) clamp(14px,2.5vw,36px);
}

/* ==== END DP1 COMPONENT LIBRARY v2 ==== */

/* ============================================================
   V6 ADDITIONS: grid mapping, AI search test, floating audit,
   4-column footer, testimonial extras
   ============================================================ */
.gridmap__split{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.gridmap__sub{ color: var(--text-muted); font-size: clamp(16px, 1.9vw, 18.5px); line-height: 1.65; margin: 18px 0 24px; max-width: 54ch; }
.gridmap__list{ margin-bottom: 28px; }
.gridmap__list li{ margin-bottom: 12px; }
.gridmap__ctas{ display: flex; gap: 14px; flex-wrap: wrap; }
.gridmap-card{
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
}
.gridmap-card__top{
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
  margin-bottom: 16px;
}
.gridmap__live{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--grotesk); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
}
.pulse-dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: #22C55E; position: relative; display: inline-block;
}
.pulse-dot::after{
  content:""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1.5px solid #22C55E; opacity: 0.7;
  animation: gm-pulse 1.8s ease-out infinite;
}
@keyframes gm-pulse{ 0%{ transform: scale(0.5); opacity: 0.8; } 100%{ transform: scale(1.6); opacity: 0; } }
.gridmap__kw{
  font-family: var(--grotesk); font-size: 12px; color: var(--accent);
  background: rgba(58,176,255,0.1); border: 1px solid rgba(58,176,255,0.3);
  border-radius: 999px; padding: 4px 12px;
}
.gridmap__svg{ width: 100%; height: auto; display: block; border-radius: 14px; }
.gridmap__legend{
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  padding: 16px 2px 6px;
}
.gridmap__key{
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--grotesk); font-size: 11.5px; color: var(--text-muted);
}
.gridmap__key i{ width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.gridmap__watermark{
  font-family: var(--grotesk); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-faint); padding-top: 8px; border-top: 1px solid var(--border); margin-top: 6px;
}
@media (max-width: 1024px){ .gridmap__split{ grid-template-columns: 1fr; } }
/* AI search test */
.ai-test__box{
  background: linear-gradient(135deg, rgba(122,95,255,0.1) 0%, var(--surface) 55%);
  border: 1px solid rgba(122,95,255,0.35);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  max-width: 860px; margin: 0 auto;
}
.ai-test__box > p{ color: var(--text-muted); font-size: 16px; line-height: 1.7; margin: 12px 0 22px; max-width: 62ch; }
.ai-test__queries{ display: flex; flex-direction: column; gap: 10px; }
.ai-test__q{
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  background: rgba(10,10,11,0.6); border: 1px solid var(--border);
  border-radius: 12px; padding: 13px 16px;
  font-size: 14.5px; color: var(--text);
  text-align: left; width: 100%; cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.ai-test__q:hover{ border-color: rgba(58,176,255,0.5); background: rgba(58,176,255,0.06); }
.ai-test__q .copy{
  font-family: var(--grotesk); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); white-space: nowrap;
}
.ai-test__note{ font-size: 12.5px; color: var(--text-faint); margin-top: 16px; }
/* Floating Free AI Audit widget */
.float-audit{
  position: fixed; right: 18px; bottom: 18px; z-index: 900; max-width: 300px;
  background: linear-gradient(135deg, rgba(58,176,255,0.12), var(--surface) 55%);
  border: 1px solid rgba(58,176,255,0.4); border-radius: 14px;
  padding: 16px 18px; box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  opacity: 0; transform: translateY(12px);
  transition: opacity .35s ease, transform .35s ease; pointer-events: none;
}
.float-audit.on{ opacity: 1; transform: none; pointer-events: auto; }
.float-audit__close{ position: absolute; top: 6px; right: 8px; background: none; border: 0; color: var(--text-faint); font-size: 18px; line-height: 1; cursor: pointer; padding: 4px; }
.float-audit__close:hover{ color: var(--text); }
.float-audit h5{ font-family: var(--grotesk); font-size: 13.5px; font-weight: 600; color: var(--text); margin: 0 0 4px; }
.float-audit p{ font-size: 12.5px; color: var(--text-muted); margin: 0 0 10px; line-height: 1.5; }
.float-audit .btn{ font-size: 12.5px; padding: 8px 14px; }
@media (max-width: 680px){ .float-audit{ display: none; } }
/* Testimonials: link row under grid */
.testi-more{ text-align: center; margin-top: 28px; }

/* ---------- v7: Services mega menu ---------- */
.nav__item--mega{ position: static !important; }
.nav__mega{
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: min(780px, calc(100vw - 32px));
  transform: translateX(-50%) translateY(8px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 20px;
  background: #101216;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 22px 24px 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  z-index: 200;
}
.nav__item--mega:hover .nav__mega,
.nav__item--mega:focus-within .nav__mega,
.nav__item--mega.is-open .nav__mega{
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__mega-col{ min-width: 0; }
.nav__mega-head{
  font-family: var(--grotesk);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding: 4px 10px 9px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 7px;
}
.nav__mega a{
  display: block;
  padding: 7px 10px;
  border-radius: 7px;
  font-size: 13px;
  color: var(--text-muted);
  white-space: normal;
}
.nav__mega a:hover{ color: var(--text); background: rgba(255,255,255,0.05); }
.nav__mega a.nav__mega-cta{ color: var(--accent); font-weight: 600; }
@media (max-width: 1024px){ .nav__mega{ display: none; } }

/* ============================================================
   SUBPAGE ADDITIONS (shared by all /pages templates)
   WordPress dev: append to the same theme stylesheet as above.
   ============================================================ */
.subhero{
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  padding: clamp(44px, 5.5vw, 80px) 0 clamp(38px, 4.5vw, 60px);
  background: linear-gradient(180deg, #0A0A0B 0%, #0E1114 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.subhero::before{
  content:"";
  position: absolute;
  right: -12%; top: -55%;
  width: 55%; height: 160%;
  background: radial-gradient(ellipse at center, rgba(58,176,255,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.subhero::after{
  content:"";
  position: absolute;
  left: -10%; bottom: -70%;
  width: 45%; height: 140%;
  background: radial-gradient(ellipse at center, rgba(122,95,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.subhero > .container{ position: relative; z-index: 1; }
.subhero__title{
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  line-height: 1.07;
  letter-spacing: -0.025em;
  max-width: 26ch;
  margin: 12px 0 20px;
}
.subhero__title .serif{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.subhero__sub{
  color: var(--text-muted);
  font-size: clamp(16px, 1.9vw, 19px);
  line-height: 1.65;
  max-width: 64ch;
  margin-bottom: 30px;
}
.subhero__sub strong{ color: var(--text); font-weight: 500; }
.subhero__ctas{ display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.subhero--big{ padding: clamp(64px, 8vw, 120px) 0 clamp(52px, 6vw, 84px); }
.subhero--big .subhero__title{ font-size: clamp(2.4rem, 5.2vw, 4.2rem); }
/* Breadcrumbs */
.breadcrumbs ol{
  display: flex; flex-wrap: wrap; gap: 8px;
  list-style: none;
  font-family: var(--grotesk);
  font-size: 12.5px;
  letter-spacing: 0.05em;
  color: var(--text-faint);
  margin-bottom: 22px;
}
.breadcrumbs li + li::before{ content: "/"; margin-right: 8px; color: var(--text-faint); }
.breadcrumbs a{ color: var(--text-muted); transition: color .2s ease; }
.breadcrumbs a:hover{ color: var(--text); }
.breadcrumbs [aria-current="page"]{ color: var(--text); }
/* Current-page nav state */
.nav__links a.nav__link--current,
.nav__dropdown a.nav__link--current,
.mobile-menu a.nav__link--current{
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
/* Page shell: content + sticky aside */
.page-shell{ padding-top: clamp(52px, 6vw, 84px); }
.page-layout{
  display: grid;
  grid-template-columns: 272px minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.page-aside{
  position: sticky;
  top: 104px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.toc, .aside-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 18px 16px;
}
.toc summary{
  cursor: pointer;
  font-family: var(--grotesk);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 0 10px;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
}
.toc summary::-webkit-details-marker{ display: none; }
.toc summary::after{
  content:"";
  width: 7px; height: 7px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.toc[open] summary::after{ transform: rotate(225deg); }
.toc ul{ border-top: 1px solid var(--border); padding-top: 10px; display: flex; flex-direction: column; gap: 2px; }
.toc a{
  display: block;
  font-size: 13.5px;
  color: var(--text-muted);
  padding: 6px 10px;
  border-left: 2px solid transparent;
  border-radius: 0 7px 7px 0;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.toc a:hover{ color: var(--text); border-left-color: var(--accent); background: rgba(255,255,255,0.04); }
.aside-card h4{
  font-family: var(--grotesk);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 0 10px;
}
.aside-card ul{ border-top: 1px solid var(--border); padding-top: 10px; display: flex; flex-direction: column; gap: 2px; }
.aside-card a{ display: block; font-size: 13.5px; color: var(--text-muted); padding: 6px 10px; border-radius: 7px; transition: color .2s ease, background .2s ease; }
.aside-card a:hover{ color: var(--text); background: rgba(255,255,255,0.04); }
/* Single-column shells (audit / contact) */
.page-single{ max-width: 860px; margin: 0 auto; }
.jumpbar{
  display: flex; flex-wrap: wrap; gap: 6px 22px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: clamp(36px, 4vw, 52px);
  font-family: var(--grotesk);
  font-size: 13px;
}
.jumpbar span{ color: var(--text-faint); letter-spacing: 0.12em; text-transform: uppercase; font-size: 11px; align-self: center; }
.jumpbar a{ color: var(--text-muted); transition: color .2s ease; }
.jumpbar a:hover{ color: var(--accent); }
/* Long-form article typography */
.page-article{ min-width: 0; }
.page-article > section, .page-single > section{ margin-bottom: clamp(46px, 5.5vw, 72px); }
section[id]{ scroll-margin-top: 130px; }
.article-byline{
  display: flex; flex-wrap: wrap; gap: 6px 10px; align-items: center;
  font-family: var(--grotesk);
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 18px;
  margin-bottom: clamp(32px, 4vw, 44px);
}
.article-byline a{ color: var(--text); font-weight: 500; transition: color .2s ease; }
.article-byline a:hover{ color: var(--accent); }
.article-byline .sep{ color: var(--text-faint); }
.page-article h2, .page-single h2{
  font-size: clamp(1.55rem, 2.9vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.page-article h2 .serif, .page-single h2 .serif{
  font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent);
}
.page-article h3, .page-single h3{ font-size: 19px; letter-spacing: -0.015em; margin: 26px 0 10px; }
.page-article p, .page-single p{
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 70ch;
}
.page-article p strong, .page-single p strong,
.page-article li strong, .page-single li strong{ color: var(--text); font-weight: 600; }
.page-article a:not(.btn), .page-single a:not(.btn){
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(58,176,255,0.5);
  text-underline-offset: 3px;
  transition: color .2s ease, text-decoration-color .2s ease;
}
.page-article a:not(.btn):hover, .page-single a:not(.btn):hover{ color: var(--accent); text-decoration-color: var(--accent); }
ul.list{ display: flex; flex-direction: column; gap: 10px; margin: 0 0 18px; }
ul.list li{
  position: relative;
  padding-left: 24px;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.65;
}
ul.list li::before{
  content:"";
  position: absolute;
  left: 0; top: 9px;
  width: 9px; height: 7px;
  background: var(--accent);
  transform: skewX(-18deg);
  border-radius: 1.5px;
}
ol.steps{ counter-reset: step; display: flex; flex-direction: column; gap: 20px; margin: 0 0 18px; list-style: none; }
ol.steps li{ position: relative; padding-left: 58px; color: var(--text-muted); font-size: 15.5px; line-height: 1.65; counter-increment: step; }
ol.steps li::before{
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: -2px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--accent);
}
ol.steps li strong{ display: block; color: var(--text); font-size: 16.5px; margin-bottom: 4px; }
/* Definition block (snippet bait) */
.definition{
  border-left: 3px solid var(--accent);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 26px;
  margin: 0 0 22px;
}
.definition p{ margin: 0; color: var(--text); font-size: 16.5px; line-height: 1.7; }
/* FAQ */
.faq-list{ border-top: 1px solid var(--border); }
.faq-item{ border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq-item h3{ font-size: 17.5px; margin: 0 0 10px; }
.faq-answer p{ margin-bottom: 8px; font-size: 15.5px; }
.faq-answer p:last-child{ margin-bottom: 0; }
/* Original data callout */
.data-callout{
  background: linear-gradient(135deg, rgba(58,176,255,0.08) 0%, var(--surface) 60%);
  border: 1px solid rgba(58,176,255,0.3);
  border-radius: var(--radius);
  padding: 30px 32px;
  margin: 0 0 clamp(46px, 5.5vw, 72px);
}
.data-callout .num{
  font-family: var(--grotesk);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 10px;
}
.data-callout p{ max-width: 62ch; }
.data-callout .src{ font-size: 12.5px; color: var(--text-faint); margin: 0; }
/* Author bio box */
.author-box{
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.author-box__avatar{
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(58,176,255,0.16), var(--surface-hover));
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.author-box__avatar svg{ width: 46px; height: auto; fill: currentColor; }
.author-box h3{ margin: 0 0 2px; font-size: 19px; }
.author-box .role{
  font-family: var(--grotesk);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.author-box p{ font-size: 14.5px; margin: 0; }
/* Related pages cross-link grid */
.related-grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.related-card{
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none !important;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.related-card:hover{ transform: translateY(-2px); border-color: rgba(58,176,255,0.45); background: var(--surface-hover); }
.related-card h3{ font-size: 16.5px; margin: 0 0 6px; color: var(--text); }
.related-card p{ font-size: 13.5px; color: var(--text-muted); margin: 0; }
.related-card .tagline{
  font-family: var(--grotesk);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: block;
  margin-bottom: 10px;
}
/* Offer tiles (audit landing) */
.tile-grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.tile{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.tile .tile__num{
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--accent);
  margin-bottom: 10px;
  line-height: 1;
}
.tile h3{ font-size: 17px; margin: 0 0 8px; }
.tile p{ font-size: 14px; margin: 0; }
/* Map placeholder (contact) */
.map-placeholder{
  height: 340px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--grotesk);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: center;
  padding: 20px;
}
/* Subpage responsive */
@media (max-width: 1024px){
  .page-layout{ grid-template-columns: 1fr; }
  .page-aside{ position: static; }
  .aside-card{ display: none; } /* related links repeat in the article cross-link block */
}
@media (max-width: 680px){
  .related-grid, .tile-grid{ grid-template-columns: 1fr; }
  .author-box{ grid-template-columns: 1fr; }
  .subhero__ctas .btn{ width: 100%; justify-content: center; }
}
/* Floating Free AI Audit widget (dismissible, sessionStorage) */
.float-audit{
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 900;
  max-width: 300px;
  background: linear-gradient(135deg, rgba(58,176,255,0.12), var(--surface) 55%);
  border: 1px solid rgba(58,176,255,0.4);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  opacity: 0; transform: translateY(12px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.float-audit.on{ opacity: 1; transform: none; pointer-events: auto; }
.float-audit__close{
  position: absolute; top: 6px; right: 8px;
  background: none; border: 0; color: var(--text-faint);
  font-size: 18px; line-height: 1; cursor: pointer; padding: 4px;
}
.float-audit__close:hover{ color: var(--text); }
.float-audit h5{
  font-family: var(--grotesk); font-size: 13.5px; font-weight: 600;
  color: var(--text); margin: 0 0 4px; letter-spacing: 0.01em;
}
.float-audit p{ font-size: 12.5px; color: var(--text-muted); margin: 0 0 10px; line-height: 1.5; }
.float-audit .btn{ font-size: 12.5px; padding: 8px 14px; }
@media (max-width: 680px){ .float-audit{ display: none; } }

/* ---------- Package cross-linking (service pages <-> packages) ---------- */
.pkg-included{
  display:flex; flex-wrap:wrap; align-items:center; gap:4px;
  margin: 0 0 26px; padding: 14px 18px;
  border:1px solid var(--border); border-radius: 12px;
  background: rgba(255,255,255,0.02);
}
.pkg-included__label{
  font-family: var(--grotesk); font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint);
  margin-right: 8px;
}
a.badge-chip{ text-decoration: none; transition: border-color .18s ease, color .18s ease; }
a.badge-chip:hover{ border-color: var(--accent); color: var(--accent); }
a.badge-chip.badge-chip--gold:hover{ border-color: var(--gold); color: var(--gold); }
.pkg-cta-inline{
  margin: 34px 0; padding: 20px 24px;
  border: 1px solid rgba(58,176,255,.25); border-radius: 12px;
  background: rgba(58,176,255,.05);
  font-size: 15.5px; line-height: 1.55;
}
.pkg-cta-inline a{ font-weight: 600; white-space: nowrap; }

/* ---------- v7: full-bleed case study imagery (client request) ---------- */
/* Case pages use the centered "wide" shell, so the 50vw breakout centers on
   the viewport. overflow-x:clip (not hidden) preserves the sticky nav. */
html, body{ overflow-x: clip; }
.case-bleed{
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.case-bleed img{ width: 100%; display: block; border-radius: 0 !important; border: 0 !important; }
.case-bleed .icb-art{ border-radius: 0; min-height: clamp(260px, 42vw, 560px); }
.image-caption-block.case-bleed figcaption{
  max-width: 72ch; margin: 14px auto 0; padding: 0 22px;
}
.case-hero-band{ border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.case-hero-band img{ width: 100%; display: block; }

/* ---------- v7: industry client-work strip (replaces trust marquee) ------ */
.client-strip{
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: var(--bg);
  padding: 46px 0 50px;
  overflow: hidden;
}
.client-strip__eyebrow{
  font-family: var(--grotesk);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--text-faint);
  text-align: center;
  margin-bottom: 30px;
}
.client-strip__track{
  display: flex; width: max-content;
  animation: clientstrip 70s linear infinite; /* slower than the trust marquee */
  will-change: transform;
}
.client-strip__track:hover{ animation-play-state: paused; }
.client-strip__row{
  display: flex; align-items: stretch; gap: 22px;
  padding: 0 0 0 22px; margin: 0; list-style: none; flex: none;
}
@keyframes clientstrip{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
.client-card{
  position: relative;
  width: 360px; flex: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.client-card:hover{ transform: translateY(-3px); border-color: rgba(58,176,255,0.45); }
.client-card__art{
  height: 240px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--g1, rgba(58,176,255,.28)), rgba(255,255,255,0.03) 55%, var(--g2, rgba(122,95,255,.22)));
  overflow: hidden;
}
.client-card__art img{ width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.client-card:hover .client-card__art img{ transform: scale(1.05); }
.client-card__art span{
  font-family: var(--grotesk);
  font-size: 56px; font-weight: 700; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
  transition: transform .45s ease;
}
.client-card:hover .client-card__art span{ transform: scale(1.08); }
.client-card__meta{ padding: 14px 18px 16px; }
.client-card__meta h3{ font-size: 15.5px; margin: 0 0 3px; }
.client-card__meta p{
  font-family: var(--grotesk);
  font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-faint); margin: 0;
}
a.client-card{ display: block; text-decoration: none !important; color: inherit; }

/* ---------- v7: grid map + SERP mockup figures on service pages --------- */
.viz-figure{ margin: 0 0 26px; }
.viz-figure .gridmap-card{ max-width: 640px; margin: 0 auto; }
.viz-figure figcaption{
  font-size: 13px; color: var(--text-faint);
  text-align: center; margin-top: 12px;
}
.viz-svg{ width: 100%; height: auto; display: block; border-radius: 14px; border: 1px solid var(--border); }

/* BLOG-VISUAL-IMG */
        .insight__visual--img{
          background: #0A0A0B !important;
          padding: 0 !important;
          overflow: hidden;
          position: relative;
        }
        .insight__visual--img img{
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform .5s cubic-bezier(.22,.61,.36,1);
        }
        .insight:hover .insight__visual--img img{ transform: scale(1.04); }
        .insight__visual--img::after{ display: none !important; }

/* ---------- Google-review styling for testimonial cards ---------- */
.testi, .testimonial-card { position: relative; }
.testi .testi__stars,
.testimonial-card .stars,
.testi-grid .stars {
  color: #FBBC04 !important;
  font-size: 14px;
  letter-spacing: 2px;
}
.google-mark {
  position: absolute;
  top: 16px;
  right: 18px;
  opacity: 0.9;
  pointer-events: none;
  z-index: 2;
}

/* ---------- Footer acronym strip ---------- */
.footer__acronyms{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
  padding: 18px 0;
  margin-bottom: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: var(--text-muted, #A6ADB8);
  line-height: 1.4;
}
.footer__acronyms-eyebrow{
  font-family: var(--grotesk, 'Space Grotesk', sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent, #3AB0FF);
  margin-right: 4px;
}
.footer__acronym{ display: inline-flex; align-items: baseline; gap: 6px; }
.footer__acronym strong{
  font-family: var(--grotesk, 'Space Grotesk', sans-serif);
  font-weight: 700;
  color: var(--text, #ECEEF1);
  letter-spacing: 0.02em;
}
.footer__acronym-full{
  font-size: 11px;
  color: var(--text-muted, #A6ADB8);
  font-style: italic;
}
.footer__acronym-sep{ color: var(--text-faint, #6B7280); opacity: 0.6; }
.footer__acronym a{color:inherit;text-decoration:none;transition:color .2s ease;}
.footer__acronym a:hover{color:var(--accent);}

@media (max-width: 720px){
  .footer__acronyms{ font-size: 11.5px; }
  .footer__acronym-full{ display: none; }
  .footer__acronyms-eyebrow{ display: block; width: 100%; }
}

/* ---------- Galaxy gradient hero background on sub-pages ---------- */
.subhero{
  position: relative;
  background:
    radial-gradient(ellipse 95% 75% at top left, rgba(58, 176, 255, 0.55) 0%, rgba(58, 176, 255, 0) 55%),
    radial-gradient(ellipse 95% 75% at bottom right, rgba(185, 79, 255, 0.55) 0%, rgba(185, 79, 255, 0) 55%),
    linear-gradient(135deg, rgba(15, 25, 60, 0.55) 0%, rgba(45, 20, 80, 0.55) 100%),
    linear-gradient(rgba(10, 10, 11, 0.55), rgba(10, 10, 11, 0.62)),
    url('../../backgrounds/nola-map.jpg') center / cover no-repeat;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.subhero > .container{ position: relative; z-index: 1; }

/* ---------- Trust marquee: even visual spacing ---------- */
.trust-marquee__row li{
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  flex-shrink: 0;
}
.trust-logo{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  min-width: 130px;
  opacity: 0.85;
  filter: brightness(0) invert(1);
  transition: opacity .3s ease, filter .3s ease, transform .3s ease;
}
.trust-logo:hover{
  opacity: 1;
  filter: none;
  transform: translateY(-1px);
}
.trust-logo svg{
  height: 100%;
  width: auto;
  max-width: 180px;
  display: block;
}

/* ---------- Footer brand social row (under email in <address>) ---------- */
.footer__brand-name{
  display: inline-block;
  font-family: var(--grotesk);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 4px;
}
.footer__brand-social{
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.footer__brand-social a{
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.footer__brand-social a:hover{
  background: rgba(58,176,255,0.15);
  border-color: rgba(58,176,255,0.4);
  transform: translateY(-1px);
}
.footer__brand-social svg{ width: 20px; height: 20px; fill: currentColor; }
