/*
 * events-and-brand-activations.preview.css · 2026-05-06
 *
 * Per-page LAYOUT PRIMITIVES only · per the locked rule
 * (feedback_layout_primitives_in_brand_css.md / feedback_brand_rules_locked.md).
 *
 * Brand decoration · gradients, colours, borders, typography · lives in
 * brand.preview.css under the EVENTS-AND-BRAND-ACTIVATIONS chrome block.
 * The layout primitives below port the wireframe's grid/flex/sticky shapes
 * so the page renders the right structure without per-page colour drift.
 *
 * Source wireframe: design-previews/wireframes/events-and-brand-activations.html
 */


/* ===== §02 · HERO LIGHT (full-bleed photo + overlay copy block) ===== */

.hero-light .stage {
  height: 520px;
  width: 100%;
}


/* ===== §02b · WOW GALLERY (full-bleed horizontal scroll-snap) ===== */

.wow-gallery .track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.wow-gallery .card {
  flex: 0 0 320px;
  aspect-ratio: 4 / 5;
}


/* ===== §02c · WORKSHOP BAND (split video-left + copy-right) ===== */

.workshop-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}
.workshop-band .video-slot {
  min-height: 380px;
}


/* ===== §02½ · TRUST BAND (3-col cards) ===== */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}


/* ===== §03 · IDEAS GALLERY (4×2 grid) ===== */

.ideas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}


/* ===== §03b · SURVIVE BAND (split copy + visual) ===== */

.survive-band {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: stretch;
}


/* ===== §04 · CASE STUDIES (3-col) ===== */

.case-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}


/* ===== §05 · ICP CARD (split avatar + copy) ===== */

.icp-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items: start;
}


/* ===== §06 · WHY-3DPE (3-col) ===== */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}


/* ===== §07 · PROCESS (4 steps brief-led) ===== */

.steps-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}


/* ===== §10 · OBJECTIONS (2-col) ===== */

.obj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}


/* ===== §11 · RISK BAND (4-col) ===== */

.risk-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}


/* ===== §15 · FOOTER (4-col, same as small-batch / product-dev) ===== */

.footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}


/* ===== Mobile collapse · single column below 860px ===== */

@media (max-width: 860px) {
  .hero-light .stage { height: 380px; }
  .hero-light .overlay { padding: 24px; }
  .workshop-band,
  .trust-grid,
  .why-grid,
  .case-row,
  .obj-grid,
  .risk-band,
  .icp-card,
  .survive-band,
  .steps-4,
  .ideas-grid {
    grid-template-columns: 1fr;
  }
  .ideas-grid { grid-template-columns: 1fr 1fr; }
  .footer { grid-template-columns: 1fr 1fr; }
  .wow-gallery .header,
  .wow-gallery .track,
  .wow-gallery .scroll-hint {
    padding-left: 20px;
    padding-right: 20px;
  }
  .wow-gallery .card { flex: 0 0 260px; }
}


/* === EV2 INLINE-EXTRACTED · 2026-05-28 === */
/* =====================================================
   EV2 — Events & Brand Activations · Apple Redesign
   2026-05-26 · full page rewrite
   ===================================================== */

:root {
  --ev2-dark:   #0c111a;
  --ev2-mid:    #141b27;
  --ev2-purple: #3a2549;
  --ev2-mint:   #0ee7bf;
  --ev2-white:  #ffffff;
  --ev2-light:  #f5f3f8;
  --ev2-font:   -apple-system, 'SF Pro Display', 'Inter', 'Helvetica Neue', sans-serif;
}

html { scroll-behavior: smooth; }

html, body { background: var(--ev2-dark) !important; }
/* WCAG AA contrast lift on footer text against dark bg (was #4a5568 on #0c111a = 2.51:1) */
body:has(.ev2-hero) footer p,
body:has(.ev2-hero) footer .legal-reg,
body:has(.ev2-hero) footer .legal-copy,
body:has(.ev2-hero) footer .legal-links,
body:has(.ev2-hero) footer .legal-links a,
body:has(.ev2-hero) [role="contentinfo"] p {
  color: rgba(255,255,255,0.74) !important;
}
/* When the Apple-cinematic hero is on the page, the WP site header floats over
   the hero instead of pushing it down (eliminates the 198px black strip above) */
body:has(.ev2-hero) {
  position: relative;
}
/* Nav consistency (James 2026-06-05): restore the canonical sticky dark-pill nav
   on EV2 pages (was a transparent absolute overlay that diverged + beat sticky). */
body:has(.ev2-hero) > header.site-header,
body:has(.ev2-hero) > .site-header {
  position: sticky !important;
  top: 0;
  z-index: 50;
  background: transparent !important;
}
body:has(.ev2-hero) > main#main-content {
  /* Pull the hero UP under the sticky 208px header (announce bar 51 + nav pill)
     so the nav floats over the hero image — same mechanism as the homepage
     (.sec-02{margin-top:-200px}). Without this, the in-flow sticky header pushes
     the hero down and the dark page bg shows as a ~208px black strip above the
     hero. (James 2026-06-05) */
  margin-top: -208px !important;
  padding-top: 0 !important;
}
@media (max-width: 782px) {
  /* The announcement bar is hidden on mobile (brand.css), so the header is
     shorter — pull up by the nav-only height to avoid over-cropping the hero. */
  body:has(.ev2-hero) > main#main-content { margin-top: -150px !important; }
}
main#main-content {
  background: var(--ev2-dark);
  overflow-x: hidden;
  position: relative;
  max-width: none !important;
  padding: 0 !important;
}
/* Kill the brand.css default 36px section margin — every page section is meant
   to sit flush against the next one in the Apple-cinematic flow. The default
   margin was showing the body bg as a dark strip between every section. */
main#main-content > section,
main#main-content > div,
main#main-content > .ev2-build,
main#main-content > .ev2-process-wrap {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Fix brand.css content-visibility reserving space for footer */
#sec-11, #sec-legal {
  content-visibility: visible !important;
  contain-intrinsic-size: auto 0 !important;
}

/* Scroll reveal */
.ev2-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ev2-reveal.ev2-visible { opacity: 1; transform: none; }
.ev2-d1 { transition-delay: 0.10s; }
.ev2-d2 { transition-delay: 0.20s; }
.ev2-d3 { transition-delay: 0.30s; }
.ev2-d4 { transition-delay: 0.40s; }

/* ---- NAV WRAPPER ---- */
.ev2-nav-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(12,17,26,0.72) 0%, transparent 100%);
  pointer-events: none;
}
.ev2-nav-wrap .container {
  pointer-events: auto;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ---- HERO ---- */
.ev2-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.ev2-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.ev2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(12,17,26,0.20) 0%,
    rgba(12,17,26,0.45) 40%,
    rgba(12,17,26,0.92) 100%
  );
}
/* Bottom gradient blends hero into the dark statement band */
.ev2-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 240px;
  background: linear-gradient(to bottom, transparent 0%, #0a0e16 100%);
  z-index: 1;
  pointer-events: none;
}
.ev2-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 80px;
  max-width: 920px;
  width: 100%;
}
.ev2-hero-eyebrow {
  font-family: var(--ev2-font);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ev2-mint);
  margin: 0 0 22px;
  font-weight: 500;
}
.ev2-hero h1 {
  font-family: var(--ev2-font);
  font-size: clamp(40px, 6.8vw, 92px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 28px;
}
.ev2-hero-sub {
  font-family: var(--ev2-font);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 0 40px;
  font-weight: 300;
}
.ev2-cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.ev2-btn-mint {
  display: inline-block;
  background: var(--ev2-mint);
  color: #0c111a;
  font-family: var(--ev2-font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.ev2-btn-mint:hover { opacity: 0.82; }
.ev2-btn-ghost {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.88);
  font-family: var(--ev2-font);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.ev2-btn-ghost:hover { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.88); }

/* scroll cue */
.ev2-scroll-cue {
  position: absolute;
  bottom: 36px;
  right: 56px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.ev2-scroll-cue span {
  font-family: var(--ev2-font);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  writing-mode: vertical-lr;
}
.ev2-scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.22);
  animation: ev2-scroll 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes ev2-scroll {
  0%,100% { transform: scaleY(0.4); opacity: 0.3; }
  50%      { transform: scaleY(1);   opacity: 0.9; }
}

/* ---- STATEMENT BAND ---- */
.ev2-statement {
  background: #0a0e16;
  padding: 108px 64px;
  text-align: center;
}
.ev2-statement p {
  font-family: var(--ev2-font);
  font-size: clamp(22px, 4vw, 54px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 920px;
  margin: 0 auto;
}
/* Definition kept in DOM for AI/SEO citation but hidden from sighted users.
   Sticks to the WCAG-accepted visually-hidden pattern — readable by crawlers
   (Google, GPTBot, ClaudeBot, PerplexityBot) and screen readers, invisible
   to sighted visitors. NOT cloaking: content matches the page topic. */
.ev2-statement-def {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: normal !important;
  border: 0 !important;
}

/* ---- SHOWCASE: Category grid (6 tiles) ---- */
.ev2-showcase-a {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: #060a10;
}
.ev2-showcase-a-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.ev2-showcase-a-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ev2-showcase-a-item:hover img { transform: scale(1.05); }
.ev2-showcase-a-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px 22px;
  background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.10) 55%, transparent 100%);
  transition: background 0.3s;
}
.ev2-showcase-a-item:hover .ev2-showcase-a-label {
  background: linear-gradient(to top, rgba(0,0,0,0.90) 0%, rgba(0,0,0,0.20) 55%, transparent 100%);
}
.ev2-showcase-a-cat {
  font-family: var(--ev2-font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ev2-mint);
  margin: 0 0 6px;
}
.ev2-showcase-a-title {
  font-family: var(--ev2-font);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 4px;
}
.ev2-showcase-a-sub {
  font-family: var(--ev2-font);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
  margin: 0;
}

/* ---- MATERIALS SPEC TABLE BAND ---- */
.ev2-materials-band {
  background: var(--ev2-dark);
  padding: 96px 64px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ev2-materials-inner { max-width: 1200px; margin: 0 auto; }
.ev2-materials-h2 {
  font-family: var(--ev2-font);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.08;
  margin: 0 0 18px;
}
.ev2-materials-sub {
  font-family: var(--ev2-font);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.62);
  max-width: 760px;
  margin: 0 0 40px;
}
.ev2-materials-scroll { overflow-x: auto; }
.ev2-materials-table {
  width: 100%;
  border-collapse: collapse;
  background: #111827;
  border-radius: 8px;
  overflow: hidden;
  font-family: var(--ev2-font);
}
.ev2-materials-table thead { background: #0a0e16; }
.ev2-materials-table thead th {
  color: var(--ev2-mint);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  padding: 18px 22px;
  text-align: left;
  border-bottom: 2px solid var(--ev2-mint);
}
.ev2-materials-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ev2-materials-table tbody tr:last-child { border-bottom: none; }
.ev2-materials-table tbody th[scope="row"] {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  padding: 18px 22px;
  text-align: left;
  white-space: nowrap;
}
.ev2-materials-table tbody td {
  font-size: 13.5px;
  color: rgba(255,255,255,0.74);
  padding: 18px 22px;
  line-height: 1.5;
}
.ev2-materials-table tbody td strong { color: var(--ev2-mint); font-weight: 700; }
.ev2-materials-table caption {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.ev2-materials-footnote {
  font-family: var(--ev2-font);
  font-size: 13px;
  color: rgba(255,255,255,0.52);
  margin: 22px 0 0;
  line-height: 1.55;
}

/* ---- COMPARISON TABLE BAND ---- */
.ev2-compare-band {
  background: var(--ev2-light);
  padding: 96px 64px;
}
.ev2-compare-inner { max-width: 1200px; margin: 0 auto; }
.ev2-compare-h2 {
  font-family: var(--ev2-font);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #0c111a;
  line-height: 1.08;
  margin: 0 0 18px;
}
.ev2-compare-sub {
  font-family: var(--ev2-font);
  font-size: 16px;
  line-height: 1.65;
  color: #5a6378;
  max-width: 760px;
  margin: 0 0 26px;
}
.ev2-compare-summary {
  font-family: var(--ev2-font);
  font-size: 16px;
  line-height: 1.65;
  color: #3a2549;
  max-width: 880px;
  margin: 0 0 40px;
  padding: 22px 26px;
  background: rgba(14,231,191,0.06);
  border-left: 3px solid var(--ev2-mint);
  border-radius: 6px;
}
.ev2-compare-summary strong { color: #0c111a; font-weight: 600; }
.ev2-compare-table caption {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.ev2-compare-scroll { overflow-x: auto; }
.ev2-compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  font-family: var(--ev2-font);
}
.ev2-compare-table thead { background: #0c111a; }
.ev2-compare-table thead th {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 18px 22px;
  text-align: left;
  border-bottom: 2px solid var(--ev2-mint);
}
.ev2-compare-table tbody tr {
  border-bottom: 1px solid rgba(58,37,73,0.08);
  transition: background 0.18s;
}
.ev2-compare-table tbody tr:hover { background: rgba(14,231,191,0.04); }
.ev2-compare-table tbody tr:last-child { border-bottom: none; }
.ev2-compare-table tbody th[scope="row"] {
  font-size: 15px;
  font-weight: 700;
  color: #0c111a;
  padding: 20px 22px;
  text-align: left;
  white-space: nowrap;
}
.ev2-compare-table tbody td {
  font-size: 14px;
  color: #4a556a;
  padding: 20px 22px;
  line-height: 1.5;
}
.ev2-compare-table tbody tr:first-child th[scope="row"]::before {
  content: '★ ';
  color: var(--ev2-mint);
  margin-right: 2px;
}
.ev2-compare-footnote {
  font-family: var(--ev2-font);
  font-size: 12px;
  color: #8a7d9a;
  margin: 22px 0 0;
  font-style: italic;
}


/* ---- INLINE CTA · post-CS3 peak-warmth ---- */
.ev2-inline-cta {
  background: var(--ev2-dark);
  padding: 56px 64px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ev2-inline-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.ev2-inline-cta-line {
  font-family: var(--ev2-font);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.ev2-inline-cta-line strong { color: var(--ev2-mint); font-weight: 700; }
.ev2-inline-cta-sub {
  font-family: var(--ev2-font);
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

/* ---- STICKY MOBILE CTA BAR ---- */
.ev2-sticky-cta {
  display: none; /* desktop hidden */
}
@media (max-width: 860px) {
  .ev2-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    background: rgba(12,17,26,0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 10px 14px 10px 18px;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(14,231,191,0.30);
    box-shadow: 0 -6px 20px rgba(0,0,0,0.4);
    transform: translateY(0);
    transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.3s;
  }
  .ev2-sticky-cta-dismissed { transform: translateY(100%); opacity: 0; pointer-events: none; }
  .ev2-sticky-cta-text {
    flex: 1;
    font-family: var(--ev2-font);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.82);
  }
  .ev2-sticky-cta-btn {
    background: var(--ev2-mint);
    color: #0c111a;
    font-family: var(--ev2-font);
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
  }
  .ev2-sticky-cta-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.55);
    font-size: 22px;
    line-height: 1;
    padding: 4px 8px;
    cursor: pointer;
  }
  main#main-content { padding-bottom: 72px !important; }
}

/* ---- FOUNDER QUOTE BAND ---- */
.ev2-quote-band {
  background: #0a0e16;
  padding: 96px 64px;
  display: flex;
  justify-content: center;
}
.ev2-quote-figure {
  max-width: 880px;
  margin: 0;
  text-align: center;
  position: relative;
}
.ev2-quote-mark {
  width: 38px;
  height: 28px;
  color: var(--ev2-mint);
  opacity: 0.85;
  margin: 0 auto 24px;
  display: block;
}
.ev2-quote-text {
  font-family: var(--ev2-font);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 28px;
}
.ev2-quote-attrib {
  font-family: var(--ev2-font);
  font-size: 13px;
  color: rgba(255,255,255,0.68);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ev2-quote-attrib strong { color: var(--ev2-mint); font-weight: 600; letter-spacing: 0.02em; }
.ev2-quote-attrib span { font-size: 12px; color: rgba(255,255,255,0.52); letter-spacing: 0.06em; }

/* ---- STATS ---- */
.ev2-stats {
  background: var(--ev2-light);
  padding: 96px 64px;
}
.ev2-stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: center;
}
.ev2-stat { text-align: center; padding: 0 32px; }
.ev2-stat-num {
  font-family: var(--ev2-font);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ev2-purple);
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 10px;
}
.ev2-stat-label {
  font-family: var(--ev2-font);
  font-size: 12px;
  font-weight: 600;
  color: #6b5a7e;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ev2-stat-divider { width: 1px; height: 72px; background: rgba(58,37,73,0.14); }
.ev2-stat-source {
  font-family: var(--ev2-font);
  font-size: 11px;
  font-weight: 500;
  color: #4a3f5e;
  letter-spacing: 0.04em;
  margin-top: 10px;
  font-style: italic;
}
/* ---- GOOGLE REVIEWS TRUST BAND (between CS2 and CS3) ---- */
.ev2-reviews-band {
  background: linear-gradient(180deg, #0c111a 0%, #131826 100%);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.ev2-reviews-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(66,133,244,0.10) 0%, transparent 40%),
    radial-gradient(circle at 70% 50%, rgba(251,188,4,0.06) 0%, transparent 40%);
  pointer-events: none;
}
.ev2-reviews-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 28px 32px;
}
.ev2-reviews-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ev2-reviews-stars-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.ev2-reviews-rating {
  font-family: var(--ev2-font);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.ev2-reviews-stars {
  display: inline-flex;
  gap: 2px;
}
.ev2-reviews-of {
  font-family: var(--ev2-font);
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  font-weight: 500;
}
.ev2-reviews-meta {
  font-family: var(--ev2-font);
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  margin: 0 0 8px;
  line-height: 1.5;
}
.ev2-reviews-meta strong { color: #fff; font-weight: 600; }
.ev2-reviews-link {
  font-family: var(--ev2-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--ev2-mint);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.ev2-reviews-link:hover { opacity: 0.72; }

/* ---- VENUES INTERSTITIAL (between CS1 and CS2) ---- */
.ev2-venues-band {
  background: linear-gradient(180deg, #0c111a 0%, #131826 100%);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}
.ev2-venues-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 50%, rgba(14,231,191,0.10) 0%, transparent 38%),
    radial-gradient(circle at 88% 50%, rgba(143,94,171,0.10) 0%, transparent 38%);
  pointer-events: none;
}
.ev2-venues-inner {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.ev2-venues-eyebrow {
  font-family: var(--ev2-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ev2-mint);
  margin: 0 0 14px;
}
.ev2-venues-h3 {
  font-family: var(--ev2-font);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 32px;
  line-height: 1.15;
}
.ev2-venues-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
}
.ev2-venues-list li {
  font-family: var(--ev2-font);
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  padding: 10px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  transition: background 0.2s, border-color 0.2s;
}
.ev2-venues-list li:hover {
  background: rgba(14,231,191,0.10);
  border-color: rgba(14,231,191,0.40);
}
.ev2-venues-foot {
  font-family: var(--ev2-font);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin: 0;
  font-style: italic;
}

/* ---- CLIENT LOGOS ---- */
.ev2-clients {
  background: var(--ev2-light);
  padding: 0 64px 80px;
}
.ev2-clients-label {
  font-family: var(--ev2-font);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b5a7e;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 16px;
  border-top: 1px solid rgba(58,37,73,0.16);
}
.ev2-logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 56px;
}
.ev2-logo-strip img {
  height: 40px;
  width: auto;
  opacity: 0.40;
  filter: grayscale(1) brightness(0);
  transition: opacity 0.25s;
}
.ev2-logo-strip img:hover { opacity: 0.70; }

/* ---- BUILD SECTION ---- */
.ev2-build {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 620px;
  background: var(--ev2-dark);
}
.ev2-build-img { overflow: hidden; }
.ev2-build-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ---- CUSTOMER JOURNEY ROADMAP ---- */
.ev2-journey {
  position: relative;
  background: var(--ev2-light);
  overflow: hidden;
  padding: 72px 48px;
  display: flex;
  align-items: center;
}
.ev2-journey-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(58,37,73,0.10) 1px, transparent 0);
  background-size: 22px 22px;
  opacity: 0.55;
  pointer-events: none;
}
.ev2-journey-inner {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}
.ev2-journey-eyebrow {
  font-family: var(--ev2-font);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6b5a7e;
  margin: 0 0 12px;
  font-weight: 700;
  text-align: center;
}
.ev2-journey-title-h3 {
  font-family: var(--ev2-font);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0c111a;
  text-align: center;
  margin: 0 0 40px;
  line-height: 1.15;
}
.ev2-journey-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 200px);
  gap: 0;
  margin-top: 24px;
}
.ev2-journey-road {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
.ev2-road-back {
  fill: none;
  stroke: rgba(58,37,73,0.08);
  stroke-width: 24;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ev2-road-front {
  fill: none;
  stroke: url(#ev2RoadGrad);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 10 9;
  opacity: 0.95;
}
/* Reveal: the mask path "draws" the road from start to finish on scroll-in */
.ev2-road-mask {
  transition: stroke-dashoffset 2.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.ev2-journey-map.ev2-visible .ev2-road-mask {
  stroke-dashoffset: 0;
}
@media (prefers-reduced-motion: reduce) {
  .ev2-road-mask { stroke-dashoffset: 0 !important; transition: none !important; }
}
/* Stops fade up + scale as the road reaches each one */
.ev2-journey-stop {
  opacity: 0;
  transform: translateY(14px) scale(0.92);
  transition:
    opacity 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ev2-journey-map.ev2-visible .ev2-journey-stop { opacity: 1; transform: none; }
/* Stagger so each node lands as the road draws past it */
.ev2-journey-map.ev2-visible .ev2-journey-stop:nth-of-type(1) { transition-delay: 0.10s; }
.ev2-journey-map.ev2-visible .ev2-journey-stop:nth-of-type(2) { transition-delay: 0.55s; }
.ev2-journey-map.ev2-visible .ev2-journey-stop:nth-of-type(3) { transition-delay: 1.05s; }
.ev2-journey-map.ev2-visible .ev2-journey-stop:nth-of-type(4) { transition-delay: 1.45s; }
.ev2-journey-map.ev2-visible .ev2-journey-stop:nth-of-type(5) { transition-delay: 1.85s; }
.ev2-journey-map.ev2-visible .ev2-journey-stop:nth-of-type(6) { transition-delay: 2.25s; }
@media (prefers-reduced-motion: reduce) {
  .ev2-journey-stop { opacity: 1 !important; transform: none !important; transition: none !important; }
}
.ev2-journey-stop {
  grid-column: var(--gx);
  grid-row: var(--gy);
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 10px 14px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ev2-journey-node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--node);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow:
    0 0 0 5px var(--ev2-light),
    0 8px 20px rgba(58,37,73,0.20);
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
}
.ev2-journey-node svg { color: #fff; }
.ev2-journey-step-num {
  font-family: var(--ev2-font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-700, #3a4252);
  display: block;
  margin-bottom: 4px;
}
.ev2-journey-title {
  font-family: var(--ev2-font);
  font-size: 16px;
  font-weight: 700;
  color: #0c111a;
  margin: 0 0 6px;
  line-height: 1.25;
}
.ev2-journey-desc {
  font-family: var(--ev2-font);
  font-size: 13px;
  color: #4a556a;
  margin: 0;
  line-height: 1.5;
  max-width: 220px;
}
.ev2-journey-stop-final .ev2-journey-node {
  background: linear-gradient(135deg, var(--ev2-mint) 0%, #e87cb0 100%);
}

/* ---- PROCESS INFOGRAPHIC ---- */
.ev2-bp-steps { display: flex; flex-direction: column; margin-top: 40px; }
.ev2-bp-item { display: grid; grid-template-columns: 52px 1fr; gap: 20px; align-items: flex-start; }
.ev2-bp-track { display: flex; flex-direction: column; align-items: center; }
.ev2-bp-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(143,94,171,0.15);
  border: 1.5px solid rgba(143,94,171,0.5);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ev2-bp-icon svg { width: 22px; height: 22px; stroke: var(--ev2-mint); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ev2-bp-connector { width: 1.5px; height: 32px; background: linear-gradient(to bottom, rgba(143,94,171,0.5), rgba(0,216,176,0.2)); margin: 5px 0; }
.ev2-bp-item:last-child .ev2-bp-connector { display: none; }
.ev2-bp-body { padding-bottom: 4px; }
.ev2-bp-step-num { font-family: var(--ev2-font); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; color: var(--ev2-mint); text-transform: uppercase; margin: 10px 0 4px; }
.ev2-bp-title { font-family: var(--ev2-font); font-size: 17px; font-weight: 700; color: #fff; margin: 0 0 6px; }
.ev2-bp-desc { font-family: var(--ev2-font); font-size: 14px; color: rgba(255,255,255,0.68); line-height: 1.6; margin: 0; }

.ev2-build-copy {
  padding: 96px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ev2-eyebrow-mint {
  font-family: var(--ev2-font);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--mint-700, #067d68);
  margin: 0 0 18px;
  font-weight: 500;
}
.ev2-build-h2 {
  font-family: var(--ev2-font);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.08;
  margin: 0 0 22px;
}

/* ---- CASE STUDY ---- */
.ev2-casestudy {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 580px;
  background: var(--ev2-dark);
}
.ev2-casestudy.ev2-cs-flip {
  grid-template-columns: 45% 55%;
  background: var(--ev2-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ev2-casestudy-img { overflow: hidden; margin: 0; padding: 0; }
.ev2-fig-sr {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: normal !important;
  border: 0 !important;
}
.ev2-casestudy-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ev2-casestudy-copy {
  background: var(--ev2-dark);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ev2-casestudy-h2 {
  font-family: var(--ev2-font);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 20px;
}
.ev2-casestudy-body {
  font-family: var(--ev2-font);
  font-size: 15px;
  line-height: 1.68;
  color: rgba(255,255,255,0.65);
  margin: 0 0 28px;
  max-width: 400px;
}
.ev2-cs-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
  padding: 28px 0;
  margin-bottom: 28px;
  border-top: 1px solid rgba(255,255,255,0.16);
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.ev2-cs-stat-num {
  font-family: var(--ev2-font);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.ev2-cs-stat-label {
  font-family: var(--ev2-font);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.62);
  text-transform: uppercase;
  letter-spacing: 0.10em;
}
.ev2-link-mint {
  font-family: var(--ev2-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--ev2-mint);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.ev2-link-mint:hover { color: var(--ev2-mint); opacity: 0.72; }

/* ---- FINISH BAND ---- */
.ev2-finish-band {
  background: var(--ev2-dark);
  padding: 88px 64px;
}
.ev2-finish-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.ev2-finish-label {
  font-family: var(--ev2-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin: 0 0 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  display: block;
}
.ev2-finish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
}
.ev2-finish-item {
  background: #111827;
  padding: 40px 36px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.ev2-finish-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 36px;
  width: 28px;
  height: 2px;
  background: var(--ev2-mint);
  border-radius: 1px;
}
.ev2-finish-name {
  font-family: var(--ev2-font);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 20px 0 10px;
}
.ev2-finish-desc {
  font-family: var(--ev2-font);
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  line-height: 1.58;
  margin: 0;
  flex: 1;
}

/* ---- PROCESS ---- */
.ev2-process-wrap {
  background: var(--ev2-light);
  padding: 96px 64px;
}
.ev2-process-inner { max-width: 1160px; margin: 0 auto; }
.ev2-process-h2 {
  font-family: var(--ev2-font);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #0c111a;
  margin: 0 0 56px;
  line-height: 1.05;
}
.ev2-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(58,37,73,0.08);
}
.ev2-step {
  background: #fff;
  padding: 40px 32px 36px;
  position: relative;
}
.ev2-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--ev2-mint), rgba(143,94,171,0.3));
}
.ev2-step-num {
  font-family: var(--ev2-font);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(143,94,171,0.18);
  line-height: 1;
  margin-bottom: 20px;
}
.ev2-step-h4 {
  font-family: var(--ev2-font);
  font-size: 16px;
  font-weight: 700;
  color: #0c111a;
  margin: 0 0 12px;
  line-height: 1.3;
}
.ev2-step-body {
  font-family: var(--ev2-font);
  font-size: 14px;
  line-height: 1.65;
  color: #5a6378;
}

/* ---- MID-PAGE AUDIT CTA BAND ---- */
.ev2-audit-band {
  position: relative;
  background: linear-gradient(135deg, #1a1230 0%, #0c111a 65%);
  padding: 104px 64px;
  overflow: hidden;
}
.ev2-audit-glow {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(14,231,191,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.ev2-audit-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.ev2-audit-h2 {
  font-family: var(--ev2-font);
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.08;
  margin: 0 0 22px;
}
.ev2-audit-sub {
  font-family: var(--ev2-font);
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.74);
  max-width: 520px;
  margin: 0 0 32px;
}
.ev2-audit-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ev2-audit-checklist li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  font-family: var(--ev2-font);
  font-size: 14.5px;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
}
.ev2-audit-checklist strong { color: #fff; font-weight: 600; }
.ev2-audit-tick {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(14,231,191,0.16);
  color: var(--ev2-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.ev2-audit-drop {
  background: rgba(255,255,255,0.04);
  border: 1.5px dashed rgba(14,231,191,0.45);
  border-radius: 14px;
  padding: 44px 32px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}
.ev2-audit-drop:hover {
  border-color: rgba(14,231,191,0.85);
  background: rgba(14,231,191,0.04);
}
.ev2-audit-drop-icon {
  color: var(--ev2-mint);
  margin: 0 auto 14px;
  display: flex;
  justify-content: center;
}
.ev2-audit-drop-head {
  font-family: var(--ev2-font);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}
.ev2-audit-drop-types {
  font-family: var(--ev2-font);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  margin: 0 0 24px;
}
.ev2-audit-btn { margin: 0 auto; display: inline-block; }
.ev2-audit-reply {
  font-family: var(--ev2-font);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin: 18px 0 0;
  font-style: italic;
}

/* ---- FAQ ---- */
.ev2-faq-wrap {
  background: var(--ev2-light);
  padding: 80px 64px;
}
.ev2-faq-inner { max-width: 800px; margin: 0 auto; }
.ev2-faq-h2 {
  font-family: var(--ev2-font);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0c111a;
  margin: 0 0 44px;
}
.ev2-faq-item { border-bottom: 1px solid rgba(58,37,73,0.10); }
.ev2-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
}
.ev2-faq-q-text {
  font-family: var(--ev2-font);
  font-size: 16px;
  font-weight: 600;
  color: #0c111a;
  line-height: 1.35;
  flex: 1;
}
.ev2-faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  margin-top: 2px;
  color: #8f5eab;
}
.ev2-faq-icon::before,
.ev2-faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.ev2-faq-icon::before { width: 12px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.ev2-faq-icon::after  { width: 1.5px; height: 12px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.ev2-faq-q[aria-expanded="true"] .ev2-faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.ev2-faq-answer {
  font-family: var(--ev2-font);
  font-size: 15px;
  line-height: 1.68;
  color: #4a556a;
  padding: 0 0 24px;
  display: none;
  max-width: 680px;
}
.ev2-faq-q[aria-expanded="true"] + .ev2-faq-answer { display: block; }

/* ---- CTA BAND ---- */
.ev2-cta-band {
  background: var(--ev2-purple);
  padding: 112px 64px;
  text-align: center;
}
.ev2-cta-eyebrow {
  font-family: var(--ev2-font);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ev2-mint);
  margin: 0 0 20px;
  font-weight: 500;
}
.ev2-cta-h2 {
  font-family: var(--ev2-font);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.08;
}
.ev2-cta-sub {
  font-family: var(--ev2-font);
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin: 0 0 44px;
  line-height: 1.5;
}
.ev2-btn-mint-lg {
  display: inline-block;
  background: var(--ev2-mint);
  color: #0c111a;
  font-family: var(--ev2-font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 17px 36px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.ev2-btn-mint-lg:hover { opacity: 0.85; transform: translateY(-2px); }

/* ---- MOBILE ---- */
@media (max-width: 860px) {
  .ev2-hero-content { padding: 0 28px 64px; }
  .ev2-scroll-cue { display: none; }
  .ev2-statement { padding: 72px 28px; }
  .ev2-showcase-a { grid-template-columns: 1fr; }
  .ev2-showcase-a-item { aspect-ratio: 4/3; }
  .ev2-showcase-b { grid-template-columns: 1fr; }
  .ev2-showcase-b-item { aspect-ratio: 4/3; }
  .ev2-showcase-c-header { padding: 36px 28px 24px; }
  .ev2-showcase-c-scroll { padding: 0 28px 40px; }
  .ev2-showcase-c-item { width: 240px; height: 340px; }
  .ev2-stats { padding: 72px 28px; }
  .ev2-stats-inner { grid-template-columns: 1fr; gap: 44px; }
  .ev2-stat-divider { width: 56px; height: 1px; margin: 0 auto; }
  .ev2-stat { padding: 0; }
  .ev2-clients { padding: 0 28px 64px; }
  .ev2-logo-strip { gap: 20px 36px; }
  .ev2-logo-strip img { height: 30px; }
  .ev2-build { grid-template-columns: 1fr; }
  .ev2-build-img { min-height: 300px; }
  .ev2-inline-cta { padding: 40px 24px; }
  .ev2-inline-cta-inner { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .ev2-journey { padding: 56px 24px; }
  .ev2-journey-map { grid-template-columns: 1fr; grid-template-rows: repeat(6, auto); gap: 28px; }
  .ev2-journey-stop { grid-column: 1 !important; grid-row: auto !important; }
  .ev2-journey-road { display: none; }
  .ev2-compare-band { padding: 64px 24px; }
  .ev2-materials-band { padding: 64px 24px; }
  .ev2-materials-table thead { display: none; }
  .ev2-materials-table tbody tr { display: block; padding: 18px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .ev2-materials-table tbody th[scope="row"] { display: block; padding: 0 0 10px; font-size: 15px; white-space: normal; }
  .ev2-materials-table tbody td { display: grid; grid-template-columns: 120px 1fr; gap: 12px; padding: 6px 0; font-size: 13.5px; }
  .ev2-materials-table tbody td::before { content: attr(data-label); font-weight: 600; color: var(--ev2-mint); text-transform: uppercase; font-size: 10.5px; letter-spacing: 0.06em; }
  .ev2-compare-table thead { display: none; }
  .ev2-compare-table tbody tr {
    display: block;
    padding: 18px;
    border-bottom: 1px solid rgba(58,37,73,0.10);
  }
  .ev2-compare-table tbody th[scope="row"] {
    display: block;
    padding: 0 0 10px;
    font-size: 16px;
    white-space: normal;
  }
  .ev2-compare-table tbody td {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 12px;
    padding: 6px 0;
    font-size: 13.5px;
  }
  .ev2-compare-table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #6b5a7e;
    text-transform: uppercase;
    font-size: 10.5px;
    letter-spacing: 0.06em;
  }
  .ev2-quote-band { padding: 64px 24px; }
  .ev2-audit-band { padding: 72px 24px; }
  .ev2-audit-inner { grid-template-columns: 1fr; gap: 40px; }
  .ev2-venues-band { padding: 56px 24px; }
  .ev2-reviews-band { padding: 40px 20px; }
  .ev2-reviews-inner { grid-template-columns: 1fr; text-align: center; padding: 24px 20px; gap: 14px; }
  .ev2-reviews-logo { justify-content: center; }
  .ev2-reviews-stars-row { justify-content: center; }
  .ev2-venues-list { gap: 8px 10px; }
  .ev2-venues-list li { font-size: 12px; padding: 8px 14px; }
  .ev2-build-copy { padding: 56px 28px; }
  .ev2-casestudy { grid-template-columns: 1fr; }
  .ev2-casestudy.ev2-cs-flip { grid-template-columns: 1fr; }
  .ev2-casestudy-img { min-height: 320px; }
  .ev2-casestudy-copy { padding: 56px 28px; }
  .ev2-casestudy-body { max-width: none; }
  .ev2-cs-stats { grid-template-columns: 1fr 1fr; }
  .ev2-finish-band { padding: 64px 28px; }
  .ev2-finish-grid { grid-template-columns: 1fr; gap: 2px; }
  .ev2-process-wrap { padding: 72px 28px; }
  .ev2-steps { grid-template-columns: 1fr; gap: 2px; }
  .ev2-faq-wrap { padding: 64px 28px; }
  .ev2-cta-band { padding: 88px 28px; }
}
/* Apple-feel: tactile press feedback on primary CTAs */
.ev2-btn-mint, .ev2-btn-mint-lg, .ev2-sticky-cta-btn {
  transition: opacity 0.2s, transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ev2-btn-mint:active, .ev2-btn-mint-lg:active, .ev2-sticky-cta-btn:active {
  transform: scale(0.97);
  transition-duration: 0.08s;
}
/* Apple-feel: respect prefers-reduced-motion on all transition-heavy effects */
@media (prefers-reduced-motion: reduce) {
  .ev2-reveal { transition: none !important; opacity: 1 !important; transform: none !important; }
  .ev2-road-mask, .ev2-journey-stop, .ev2-sticky-cta { transition: none !important; }
  .ev2-hero-bg { animation: none !important; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
