@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --ink: #07111f;
  --ink-2: #0d1b2d;
  --ink-3: #14263e;
  --blue: #318cff;
  --blue-2: #72b4ff;
  --blue-soft: #eaf4ff;
  --paper: #f5f7f9;
  --white: #ffffff;
  --muted: #718096;
  --line: rgba(7,17,31,.12);
  --line-dark: rgba(255,255,255,.14);
  --shadow: 0 24px 70px rgba(7,17,31,.12);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1240px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { padding: 110px 0; }
.section-sm { padding: 76px 0; }
.section-dark { background: var(--ink); color: var(--white); }
.section-white { background: var(--white); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 30px; height: 1px; background: currentColor; opacity: .5; }
.kicker { color: var(--blue); 
}

.brand-logo {
  display: block;
  width: 190px;
  height: auto;
}

@media (max-width: 768px) {
  .brand-logo {
    width: 165px;
  }
}

.display {
  font-size: clamp(44px, 6.2vw, 88px);
  line-height: .98;
  letter-spacing: -.055em;
  margin: 22px 0 28px;
  font-weight: 600;
}
.h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -.045em;
  margin: 18px 0 24px;
  font-weight: 600;
}
.h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin: 18px 0 22px;
  font-weight: 600;
}
.h3 { font-size: clamp(23px, 2.1vw, 32px); letter-spacing: -.025em; line-height: 1.18; margin: 0 0 14px; }
.lead { font-size: clamp(18px, 2vw, 22px); line-height: 1.65; color: #42526a; max-width: 820px; }
.section-dark .lead { color: rgba(255,255,255,.72); }
.small { font-size: 14px; color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: white; }
.btn-primary:hover { background: #1479ef; }
.btn-dark { background: var(--ink); color: white; }
.btn-light { background: white; color: var(--ink); }
.btn-outline { border-color: rgba(7,17,31,.22); background: transparent; }
.section-dark .btn-outline { border-color: rgba(255,255,255,.28); color: white; }
.btn-arrow::after { content: '↗'; font-size: 18px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* Header */
.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto 0;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(7,17,31,.88);
  backdrop-filter: blur(18px);
  border-color: rgba(255,255,255,.1);
}
.nav {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

/* Smaller Eventure molecule */
.brand-symbol {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
}

/* Smaller hero network graphic */
.hero-graphic {
  width: min(43vw, 680px);
  right: 3%;
  top: 14vh;
}

/* Hide both on tablet/mobile */
@media (max-width: 980px) {
  .hero-graphic {
    display: none;
  }

  .brand-symbol {
    display: none;
  }

  .brand {
    gap: 0;
    min-width: auto;
  }
}

.brand-mark { position: relative; width: 42px; height: 42px; }
.brand-mark i { position: absolute; display: block; border-radius: 50%; background: var(--blue); }
.brand-mark i:nth-child(1){ width: 13px; height: 13px; left: 2px; top: 5px; }
.brand-mark i:nth-child(2){ width: 10px; height: 10px; left: 24px; top: 1px; background: var(--blue-2); }
.brand-mark i:nth-child(3){ width: 16px; height: 16px; left: 23px; top: 23px; }
.brand-mark i:nth-child(4){ width: 9px; height: 9px; left: 4px; top: 29px; background: var(--blue-2); }
.brand-mark::before,
.brand-mark::after { content: ''; position: absolute; height: 2px; background: rgba(49,140,255,.62); transform-origin: left center; border-radius: 999px; }
.brand-mark::before { width: 20px; left: 11px; top: 14px; transform: rotate(-14deg); }
.brand-mark::after { width: 22px; left: 11px; top: 22px; transform: rotate(32deg); }
.brand-word { display: grid; line-height: .84; letter-spacing: -.04em; }
.brand-word strong { font-size: 25px; font-weight: 500; }
.brand-word span { font-size: 13px; opacity: .78; letter-spacing: .19em; text-transform: uppercase; margin-top: 5px; }
.nav-links { display: flex; gap: 34px; align-items: center; font-size: 14px; }
.nav-links a:not(.btn) { opacity: .82; transition: opacity .2s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.menu-toggle { display: none; background: transparent; color: white; border: 0; padding: 10px; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: currentColor; margin: 5px 0; }

/* Hero */
.hero {
  min-height: 92vh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 24%, rgba(49,140,255,.22), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(87,174,255,.11), transparent 26%),
    linear-gradient(150deg, #07111f 0%, #0a1728 60%, #0e2138 100%);
  color: white;
  padding: 150px 0 86px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .3;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, transparent, black 30%, black 90%, transparent);
}
.hero-graphic {
  position: absolute;
  width: min(56vw, 900px);
  aspect-ratio: 930 / 740;
  right: 0;
  top: 10vh;
  background: url("../img/hero/eventure-growth-system.svg") center / contain no-repeat;
  opacity: .90;
  pointer-events: none;
  filter: none;
}


@keyframes rotate { to { transform: rotate(360deg); } }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.4fr .6fr; gap: 40px; align-items: end; }
.hero .eyebrow { color: var(--blue-2); }
.hero .display span { color: var(--blue-2); }
.hero-copy { max-width: 840px; }
.hero-copy p { max-width: 720px; color: rgba(255,255,255,.72); font-size: 18px; }
.hero-side { padding: 24px 0 10px; border-top: 1px solid rgba(255,255,255,.24); }
.hero-side strong { font-size: 52px; line-height: 1; font-weight: 500; display: block; letter-spacing: -.045em; }
.hero-side span { color: rgba(255,255,255,.62); font-size: 14px; display: block; margin-top: 8px; }
.hero-actions { margin-top: 34px; }

.performance-strip { background: #0a1626; color: white; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); overflow: hidden; }
.performance-track { display: flex; gap: 0; min-width: max-content; animation: marquee 28s linear infinite; }
.performance-item { display: inline-flex; align-items: center; gap: 24px; padding: 20px 34px; font-weight: 600; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.72); }
.performance-item::after { content: '•'; color: var(--blue); font-size: 20px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Intro */
.intro-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.intro-note { position: sticky; top: 130px; }
.intro-note .stat { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); }
.intro-note .stat strong { font-size: 58px; line-height: 1; letter-spacing: -.05em; font-weight: 500; }
.intro-note .stat span { display: block; color: var(--muted); margin-top: 8px; }
.pill-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 36px; }
.pill { border: 1px solid var(--line); border-radius: 999px; padding: 14px 18px; font-size: 14px; display: flex; align-items: center; gap: 11px; background: rgba(255,255,255,.55); }
.pill::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex: 0 0 auto; }

/* Value cards */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 50px; }
.value-card { background: white; border-radius: var(--radius); padding: 34px; min-height: 270px; position: relative; overflow: hidden; border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.value-card .number { font-size: 12px; letter-spacing: .16em; font-weight: 700; color: var(--blue); }
.value-card h3 { margin-top: 62px; }
.value-card p { color: var(--muted); margin: 0; }
.value-card::after { content: ''; position: absolute; width: 180px; height: 180px; border-radius: 50%; right: -110px; top: -110px; border: 1px solid rgba(49,140,255,.2); box-shadow: 0 0 0 30px rgba(49,140,255,.035), 0 0 0 60px rgba(49,140,255,.02); }

/* Dark statement */
.statement { position: relative; overflow: hidden; }
.statement-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: center; }
.statement .quote { font-size: clamp(32px, 4vw, 58px); line-height: 1.1; letter-spacing: -.045em; font-weight: 500; margin: 0; }
.statement .quote em { font-style: normal; color: var(--blue-2); }
.statement-list { display: grid; gap: 0; border-top: 1px solid var(--line-dark); }
.statement-item { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line-dark); color: rgba(255,255,255,.75); }
.statement-item strong { color: white; font-size: 16px; }
.statement-item span { color: var(--blue-2); }

/* Framework */
.framework { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; align-items: start; }
.framework-copy { position: sticky; top: 130px; }
.steps { border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: 84px 1fr; gap: 24px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.step-num { color: var(--blue); font-weight: 700; font-size: 12px; letter-spacing: .12em; }
.step h3 { font-size: 28px; margin-bottom: 8px; }
.step p { margin: 0; color: var(--muted); }

/* Services */
.services-head { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 52px; }
.services-head p { max-width: 500px; margin: 0; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.service-card { border-radius: 24px; padding: 30px; min-height: 250px; border: 1px solid var(--line); background: white; display: flex; flex-direction: column; justify-content: space-between; transition: background .25s, color .25s, transform .25s; }
.service-card:hover { background: var(--ink); color: white; transform: translateY(-3px); }
.service-card .top { display: flex; align-items: center; justify-content: space-between; }
.service-card .index { color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: .14em; }
.service-card .arrow { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); transition: transform .25s; }
.service-card:hover .arrow { transform: rotate(45deg); border-color: rgba(255,255,255,.25); }
.service-card h3 { font-size: 26px; max-width: 420px; }
.service-card p { color: var(--muted); margin: 0; }
.service-card:hover p { color: rgba(255,255,255,.64); }

/* Regions */
.region-wrap { border-radius: 38px; overflow: hidden; background: linear-gradient(135deg, #0c1a2c, #102b4d); color: white; position: relative; }
.region-wrap::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.18) 1px, transparent 0); background-size: 28px 28px; mask-image: linear-gradient(90deg, transparent 20%, black 70%); opacity: .35; }
.region-inner { position: relative; padding: 70px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; }
.region-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-content: end; }
.region-list div { border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.045); border-radius: 18px; padding: 20px; font-size: 14px; }
.region-list strong { display: block; font-size: 17px; margin-bottom: 4px; }

/* CTA */
.cta-block { background: var(--blue); color: white; border-radius: 38px; padding: 72px; display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: end; overflow: hidden; position: relative; }
.cta-block::after { content: ''; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; position: absolute; right: -140px; top: -180px; box-shadow: 0 0 0 44px rgba(255,255,255,.05),0 0 0 88px rgba(255,255,255,.03); }
.cta-block .h2 { margin-bottom: 0; max-width: 760px; position: relative; z-index: 1; }
.cta-block .btn { position: relative; z-index: 1; }

/* Inner hero */
.inner-hero { padding: 180px 0 92px; background: var(--ink); color: white; position: relative; overflow: hidden; }
.inner-hero::before { content:''; position:absolute; width:620px; height:620px; border-radius:50%; right:-220px; top:-280px; border:1px solid rgba(255,255,255,.08); box-shadow: 0 0 0 70px rgba(49,140,255,.03),0 0 0 140px rgba(49,140,255,.02); }
.inner-hero .container { position: relative; z-index: 1; }
.inner-hero p { max-width: 760px; color: rgba(255,255,255,.68); font-size: 19px; }

.capability-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 44px; }
.capability { background: white; border:1px solid var(--line); border-radius:24px; padding:32px; }
.capability-head { display:flex; justify-content:space-between; gap:20px; align-items:flex-start; margin-bottom:22px; }
.capability .index { color:var(--blue); font-size:12px; font-weight:700; letter-spacing:.14em; }
.capability ul { margin:18px 0 0; padding:0; list-style:none; display:grid; gap:9px; color:var(--muted); }
.capability li { position:relative; padding-left:18px; }
.capability li::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--blue); position:absolute; left:0; top:.62em; }

/* About */
.about-split { display:grid; grid-template-columns:.9fr 1.1fr; gap:80px; align-items:start; }
.about-panel { background:var(--ink); color:white; border-radius:30px; padding:42px; position:sticky; top:120px; }
.about-panel .metric { border-top:1px solid rgba(255,255,255,.15); padding:24px 0; }
.about-panel .metric:first-of-type { margin-top:38px; }
.about-panel strong { display:block; font-size:46px; letter-spacing:-.05em; font-weight:500; }
.about-panel span { color:rgba(255,255,255,.62); font-size:14px; }
.long-copy h2 { font-size:34px; letter-spacing:-.03em; margin:50px 0 16px; }
.long-copy h2:first-child { margin-top:0; }
.long-copy p { color:#4d5c70; font-size:17px; }
.principles { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-top:36px; }
.principle { background:white; border:1px solid var(--line); border-radius:18px; padding:22px; }
.principle strong { display:block; margin-bottom:6px; }
.principle span { color:var(--muted); font-size:14px; }

/* Contact */
.contact-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:70px; align-items:start; }
.contact-info { position:sticky; top:120px; }
.contact-card { margin-top:36px; display:grid; gap:0; border-top:1px solid var(--line); }
.contact-row { padding:20px 0; border-bottom:1px solid var(--line); }
.contact-row span { display:block; color:var(--muted); font-size:12px; text-transform:uppercase; letter-spacing:.12em; margin-bottom:5px; }
.contact-row a, .contact-row strong { font-size:17px; }
.form-card { background:white; border-radius:30px; padding:38px; border:1px solid var(--line); box-shadow:var(--shadow); }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field { display:grid; gap:8px; }
.field.full { grid-column:1/-1; }
.field label { font-size:13px; font-weight:600; }
.field input, .field textarea, .field select { width:100%; border:1px solid #d9e0e8; background:#fbfcfd; border-radius:12px; min-height:52px; padding:12px 14px; color:var(--ink); outline:none; transition:border-color .2s, box-shadow .2s; }
.field textarea { min-height:150px; resize:vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color:var(--blue); box-shadow:0 0 0 4px rgba(49,140,255,.1); }
.form-note { color:var(--muted); font-size:12px; margin-top:14px; }

/* Legal */
.legal { max-width:850px; }
.legal h2 { font-size:28px; margin:42px 0 12px; letter-spacing:-.02em; }
.legal h3 { font-size:20px; margin:28px 0 10px; }
.legal p, .legal li { color:#4d5c70; }
.legal a { color:var(--blue); text-decoration:underline; }

/* Footer */
.site-footer { background:#050c16; color:white; padding:76px 0 30px; }
.footer-grid { display:grid; grid-template-columns:1.2fr .6fr .6fr; gap:70px; padding-bottom:62px; }
.footer-brand p { max-width:470px; color:rgba(255,255,255,.58); }
.footer-col h4 { font-size:12px; text-transform:uppercase; letter-spacing:.14em; color:rgba(255,255,255,.45); margin:0 0 18px; }
.footer-col a { display:block; color:rgba(255,255,255,.76); margin:9px 0; font-size:14px; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12); padding-top:24px; display:flex; justify-content:space-between; gap:30px; color:rgba(255,255,255,.46); font-size:12px; }
.footer-bottom-links { display:flex; gap:20px; flex-wrap:wrap; }

/* Reveal */
.reveal { opacity:0; transform:translateY(24px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 980px) {
  .nav-links { display:none; position:fixed; inset:86px 0 0; background:var(--ink); padding:40px 20px; flex-direction:column; align-items:flex-start; gap:24px; font-size:22px; }
  .nav-links.open { display:flex; }
  .nav-links .btn { margin-top:10px; }
  .menu-toggle { display:block; }
  .hero-inner, .intro-grid, .statement-grid, .framework, .region-inner, .about-split, .contact-grid { grid-template-columns:1fr; gap:48px; }
  .hero-side { max-width:280px; }
  .hero-graphic { width:82vw; right:-36vw; top:12vh; }
  .intro-note, .framework-copy, .about-panel, .contact-info { position:static; }
  .value-grid { grid-template-columns:1fr; }
  .service-grid, .capability-list { grid-template-columns:1fr; }
  .services-head { display:block; }
  .services-head p { margin-top:18px; }
  .region-list { grid-template-columns:1fr 1fr; }
  .cta-block { grid-template-columns:1fr; padding:52px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-brand { grid-column:1/-1; }
}

@media (max-width: 640px) {
  .container { width:min(calc(100% - 28px), var(--max)); }
  .section { padding:78px 0; }
  .section-sm { padding:58px 0; }
  .nav { height:76px; }
  .nav-links { inset:76px 0 0; }
  .hero { min-height:720px; padding:130px 0 60px; }
  .display { font-size:46px; }
  .h1 { font-size:42px; }
  .h2 { font-size:36px; }
  .hero-copy p { font-size:16px; }
  .pill-list, .region-list, .principles, .form-grid { grid-template-columns:1fr; }
  .region-inner { padding:40px 26px; }
  .cta-block { padding:38px 26px; border-radius:28px; }
  .value-card, .service-card, .capability, .form-card { padding:26px; }
  .step { grid-template-columns:54px 1fr; }
  .footer-grid { grid-template-columns:1fr; gap:34px; }
  .footer-brand { grid-column:auto; }
  .footer-bottom { flex-direction:column; }
  .brand-word strong { font-size:22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
}

/* =========================================
   HOME UPLIFT V2 — HERO + WHY EVENTURE
   ========================================= */
.hero-v2 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background: #06101d;
  color: #fff;
  padding: 150px 0 0;
  isolation: isolate;
}
.hero-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(115deg, rgba(12,33,58,.24), transparent 46%),
    radial-gradient(circle at 72% 42%, rgba(49,140,255,.10), transparent 34%),
    linear-gradient(180deg, #07111f 0%, #07111f 55%, #091827 100%);
}
.hero-gridlines {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255,255,255,.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.042) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.12) 72%, transparent);
}
.hero-glow { position:absolute; border-radius:50%; filter:blur(12px); z-index:-2; pointer-events:none; }
.hero-glow-a { width:540px; height:540px; right:9%; top:16%; background:radial-gradient(circle, rgba(49,140,255,.15), transparent 68%); }
.hero-glow-b { width:390px; height:390px; left:-120px; bottom:-130px; background:radial-gradient(circle, rgba(114,180,255,.08), transparent 70%); }
.hero-v2-inner {
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(430px,.92fr);
  gap:clamp(50px,7vw,110px);
  align-items:center;
  padding-bottom:72px;
}
.hero-proofline { display:flex; align-items:center; flex-wrap:wrap; gap:12px; color:rgba(255,255,255,.52); font-size:11px; letter-spacing:.13em; text-transform:uppercase; font-weight:600; }
.hero-proof-dot { width:7px; height:7px; border-radius:50%; background:var(--blue); box-shadow:0 0 16px rgba(49,140,255,.85); }
.hero-proof-sep { width:34px; height:1px; background:rgba(255,255,255,.18); }
.hero-v2-title { font-size:clamp(54px,6.1vw,92px); margin:30px 0 34px; max-width:800px; }
.hero-v2-title span { color:#78b8ff; font-weight:500; }
.hero-v2-bottom { display:grid; grid-template-columns:minmax(0,560px); gap:24px; }
.hero-v2-bottom p { font-size:17px; line-height:1.72; color:rgba(255,255,255,.65); max-width:590px; margin:0; }
.btn-ghost { border-color:rgba(255,255,255,.18); color:white; background:rgba(255,255,255,.025); }
.btn-ghost:hover { border-color:rgba(255,255,255,.4); background:rgba(255,255,255,.06); }

.hero-intelligence {
  min-height:560px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:3px;
  background:rgba(9,24,41,.68);
  box-shadow:0 40px 100px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.03);
  backdrop-filter:blur(16px);
  position:relative;
  overflow:hidden;
}
.hero-intelligence::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(49,140,255,.08),transparent 35%); pointer-events:none; }
.intel-topline { height:54px; padding:0 20px; border-bottom:1px solid rgba(255,255,255,.09); display:flex; align-items:center; justify-content:space-between; gap:16px; font-size:9px; letter-spacing:.16em; color:rgba(255,255,255,.44); }
.intel-live { color:#8ec5ff; display:flex; align-items:center; gap:7px; }
.intel-live i { width:6px; height:6px; border-radius:50%; background:#59a7ff; box-shadow:0 0 12px rgba(89,167,255,.9); animation:pulseNode 1.8s ease-in-out infinite; }
.intel-canvas { height:410px; position:relative; overflow:hidden; background-image:linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px, transparent 1px); background-size:36px 36px; }
.intel-ring { position:absolute; left:50%; top:50%; border:1px solid rgba(114,180,255,.16); border-radius:50%; transform:translate(-50%,-50%); }
.ring-1 { width:305px; height:305px; }
.ring-2 { width:220px; height:220px; border-style:dashed; animation:rotate 30s linear infinite; }
.ring-3 { width:132px; height:132px; background:radial-gradient(circle,rgba(49,140,255,.08),transparent 70%); }
.intel-axis { position:absolute; background:rgba(255,255,255,.055); }
.axis-x { height:1px; width:78%; left:11%; top:50%; }
.axis-y { width:1px; height:78%; top:11%; left:50%; }
.intel-core { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:112px; height:112px; border-radius:50%; display:grid; place-content:center; text-align:center; border:1px solid rgba(114,180,255,.5); background:radial-gradient(circle at 40% 35%,#163b65,#0a1d33 74%); box-shadow:0 0 55px rgba(49,140,255,.22); }
.intel-core span { font-size:7px; letter-spacing:.16em; color:rgba(255,255,255,.48); }
.intel-core strong { font-size:14px; letter-spacing:.04em; margin-top:2px; }
.intel-node { position:absolute; display:flex; align-items:center; gap:8px; font-size:8px; letter-spacing:.15em; color:rgba(255,255,255,.54); }
.intel-node i { width:10px; height:10px; border-radius:50%; background:#5aa9ff; border:2px solid #17375a; box-shadow:0 0 0 1px rgba(91,170,255,.5),0 0 20px rgba(49,140,255,.45); }
.node-strategy { left:13%; top:24%; }
.node-media { right:10%; top:29%; }
.node-data { left:12%; bottom:21%; }
.node-martech { right:9%; bottom:23%; }
.intel-card { position:absolute; width:82px; min-height:56px; padding:10px; border:1px solid rgba(255,255,255,.10); background:rgba(5,15,27,.72); display:flex; flex-direction:column; justify-content:space-between; }
.intel-card span { font-size:6px; letter-spacing:.13em; color:rgba(255,255,255,.38); }
.intel-card strong { font-size:19px; font-weight:500; color:#8ec5ff; }
.intel-card-a { left:7%; top:45%; }
.intel-card-b { right:6%; top:48%; }
.intel-card-c { right:25%; bottom:4%; }
.intel-footer { min-height:95px; border-top:1px solid rgba(255,255,255,.09); display:grid; grid-template-columns:1fr 1.2fr; gap:1px; background:rgba(255,255,255,.06); }
.intel-footer>div { background:#081624; padding:16px 18px; display:flex; flex-direction:column; justify-content:center; }
.intel-footer span { font-size:7px; letter-spacing:.17em; color:rgba(255,255,255,.34); }
.intel-footer strong { font-size:10px; color:rgba(255,255,255,.72); font-weight:500; margin-top:5px; }
.hero-capability-row { min-height:78px; border-top:1px solid rgba(255,255,255,.09); display:grid; grid-template-columns:repeat(5,1fr); align-items:center; }
.hero-capability-row span { height:100%; display:flex; align-items:center; padding:0 22px; border-right:1px solid rgba(255,255,255,.08); color:rgba(255,255,255,.46); font-size:10px; letter-spacing:.12em; text-transform:uppercase; position:relative; }
.hero-capability-row span:first-child { border-left:1px solid rgba(255,255,255,.08); }
.hero-capability-row span::before { content:''; width:5px; height:5px; border-radius:50%; background:var(--blue); margin-right:10px; opacity:.8; }

.why-v2 { background:#f7f9fb; padding:130px 0 116px; position:relative; overflow:hidden; }
.why-v2::after { content:'EVENTURE'; position:absolute; right:-30px; top:45px; font-size:clamp(95px,15vw,230px); line-height:1; font-weight:700; letter-spacing:-.07em; color:rgba(7,17,31,.055); pointer-events:none; }
.why-v2-wrap { position:relative; z-index:1; }
.why-v2-head { display:grid; grid-template-columns:.52fr 1.48fr; gap:60px; align-items:start; border-bottom:1px solid var(--line); padding-bottom:62px; }
.why-v2-index { margin:28px 0 0; font-size:9px; letter-spacing:.16em; color:#9aa6b5; }
.why-v2-head h2 { margin:0; font-size:clamp(44px,5.5vw,78px); line-height:1.02; letter-spacing:-.052em; font-weight:550; }
.why-v2-head h2 span { color:#8a98a9; }
.why-v2-grid { display:grid; grid-template-columns:.84fr 1.16fr; gap:80px; padding:70px 0; border-bottom:1px solid var(--line); }
.why-v2-story { max-width:540px; }
.why-v2-story p { color:#66758a; font-size:16px; line-height:1.8; }
.why-v2-story .why-v2-lead { color:#24364c; font-size:21px; line-height:1.65; margin-top:0; }
.text-link { display:inline-flex; align-items:center; gap:16px; margin-top:20px; font-size:13px; font-weight:600; padding-bottom:7px; border-bottom:1px solid #aeb8c4; }
.text-link span { color:var(--blue); font-size:17px; }
.why-v2-proof { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.proof-feature { min-height:220px; border:1px solid var(--line); background:#fff; padding:26px; display:flex; flex-direction:column; justify-content:space-between; position:relative; overflow:hidden; }
.proof-feature::after { content:''; position:absolute; width:150px; height:150px; border-radius:50%; right:-82px; top:-78px; border:1px solid rgba(49,140,255,.14); box-shadow:0 0 0 30px rgba(49,140,255,.025),0 0 0 60px rgba(49,140,255,.015); }
.proof-feature-wide { grid-column:1/-1; min-height:145px; }
.proof-label { font-size:8px; letter-spacing:.18em; color:#8c9aab; font-weight:700; }
.proof-number { font-size:64px; line-height:.9; letter-spacing:-.06em; font-weight:500; color:#0b1726; }
.proof-number span { color:var(--blue); font-size:.55em; vertical-align:top; margin-left:3px; }
.proof-feature p { margin:10px 0 0; font-size:13px; color:#788699; }
.proof-system { display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:28px; }
.proof-system span { font-size:12px; font-weight:600; }
.proof-system i { height:1px; flex:1; background:linear-gradient(90deg,#a9cfff,#318cff); position:relative; }
.proof-system i::after { content:''; position:absolute; right:-1px; top:-2px; width:5px; height:5px; border-radius:50%; background:var(--blue); }
.why-v2-principles { display:grid; grid-template-columns:repeat(4,1fr); border-left:1px solid var(--line); margin-top:54px; }
.why-v2-principles>div { padding:0 28px 0 24px; border-right:1px solid var(--line); min-height:150px; }
.why-v2-principles span { font-size:9px; letter-spacing:.15em; color:var(--blue); font-weight:700; }
.why-v2-principles strong { display:block; font-size:16px; margin:28px 0 9px; }
.why-v2-principles p { margin:0; color:#7b899a; font-size:13px; line-height:1.6; }

@keyframes pulseNode { 0%,100%{opacity:.45;transform:scale(.8)} 50%{opacity:1;transform:scale(1.15)} }

@media (max-width: 1050px) {
  .hero-v2-inner { grid-template-columns:1fr; }
  .hero-intelligence { min-height:510px; max-width:720px; width:100%; }
  .why-v2-head, .why-v2-grid { grid-template-columns:1fr; gap:40px; }
  .why-v2-principles { grid-template-columns:1fr 1fr; gap:0; border-top:1px solid var(--line); }
  .why-v2-principles>div { padding:28px; border-bottom:1px solid var(--line); }
}
@media (max-width: 720px) {
  .hero-v2 { padding-top:125px; }
  .hero-v2-inner { padding-bottom:46px; }
  .hero-proof-sep, .hero-proofline span:last-child { display:none; }
  .hero-v2-title { font-size:clamp(48px,14vw,68px); }
  .hero-intelligence { min-height:440px; }
  .intel-canvas { height:330px; }
  .intel-footer { display:none; }
  .intel-ring.ring-1 { width:250px; height:250px; }
  .intel-ring.ring-2 { width:180px; height:180px; }
  .intel-ring.ring-3 { width:108px; height:108px; }
  .intel-card-c { display:none; }
  .hero-capability-row { grid-template-columns:1fr 1fr; }
  .hero-capability-row span { min-height:58px; border-bottom:1px solid rgba(255,255,255,.08); }
  .hero-capability-row span:last-child { grid-column:1/-1; }
  .why-v2 { padding:90px 0 80px; }
  .why-v2-head { padding-bottom:42px; }
  .why-v2-head h2 { font-size:clamp(40px,12vw,58px); }
  .why-v2-grid { padding:48px 0; }
  .why-v2-proof { grid-template-columns:1fr; }
  .proof-feature-wide { grid-column:auto; }
  .proof-system { flex-wrap:wrap; justify-content:flex-start; }
  .proof-system i { min-width:25px; max-width:48px; }
  .why-v2-principles { grid-template-columns:1fr; }
}


/* =========================================
   FINAL BRAND + CONTENT REFINEMENTS
   ========================================= */
.brand { gap: 11px; min-width: 205px; }
.brand-symbol {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 48px;
}
.brand-wordmark {
  display: grid;
  line-height: .9;
  letter-spacing: -.04em;
}
.brand-wordmark strong {
  font-size: 26px;
  font-weight: 500;
  color: #F5F7FA;
}
.brand-wordmark span {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  color: #72B4FF;
}
/* Optional variant for placing the same editable lock-up on light backgrounds. */
.brand.on-light .brand-wordmark strong { color: #0B1C2D; }
.brand.on-light .brand-wordmark span { color: #318CFF; }

.capability-band {
  background: #0a1626;
  color: white;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.capability-band .hero-capability-row { min-height: 78px; }

.client-section { background: #f7f9fb; }
.client-head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}
.client-head p { margin: 0; color: var(--muted); max-width: 480px; justify-self: end; }
.client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.client-card {
  min-height: 160px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  display: flex;
  align-items: center;
  gap: 22px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.client-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.client-card img { width: 104px; max-height: 62px; object-fit: contain; flex: 0 0 104px; }
.client-card strong { font-size: 16px; font-weight: 600; }
.partner-note { margin: 26px 0 0; color: var(--muted); font-size: 13px; font-style: italic; }

@media (max-width: 980px) {
  .client-head { grid-template-columns: 1fr; gap: 20px; }
  .client-head p { justify-self: start; }
  .client-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .brand-symbol { width: 42px; height: 42px; flex-basis: 42px; }
  .brand-wordmark strong { font-size: 22px; }
  .brand-wordmark span { font-size: 9px; }
  .capability-band .hero-capability-row { grid-template-columns: 1fr 1fr; }
  .capability-band .hero-capability-row span { min-height: 58px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .capability-band .hero-capability-row span:last-child { grid-column: 1 / -1; }
  .client-grid { grid-template-columns: 1fr; }
  .client-card { min-height: 132px; }
}

/* Legal pages */
.legal > p:first-child {
  margin-top: 0;
  padding: 18px 22px;
  border-left: 3px solid var(--blue);
  background: rgba(49,140,255,.055);
}
.legal ul {
  margin: 14px 0 24px;
  padding-left: 0;
  list-style: none;
}
.legal li {
  position: relative;
  padding-left: 22px;
  margin: 10px 0;
}
.legal li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.legal strong { color: var(--ink); }


/* =========================================
   PERFORMANCE MARKETING PAGE
   ========================================= */

.pm-intro {
  background: #f7f9fb;
}

.pm-intro-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}

.pm-intro-side {
  position: sticky;
  top: 126px;
}

.pm-intro-side .pm-label {
  display: block;
  margin-top: 28px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #8d9bac;
}

.pm-intro-side .pm-big-number {
  margin-top: 16px;
  font-size: clamp(72px, 8vw, 118px);
  line-height: .88;
  letter-spacing: -.07em;
  font-weight: 500;
  color: var(--ink);
}

.pm-intro-side .pm-big-number span {
  color: var(--blue);
}

.pm-intro-copy h2 {
  max-width: 820px;
}

.pm-intro-copy > p {
  max-width: 820px;
  color: #536276;
  font-size: 18px;
  line-height: 1.8;
}

.pm-outcomes {
  margin-top: 46px;
  border-top: 1px solid var(--line);
}

.pm-outcome {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.pm-outcome .index {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}

.pm-outcome strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.pm-outcome p {
  margin: 0;
  color: var(--muted);
}

/* Channel system */
.pm-system-head {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}

.pm-system-head p {
  margin: 0;
  color: var(--muted);
  max-width: 520px;
  justify-self: end;
}

.pm-channel-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.pm-channel-card {
  min-height: 285px;
  padding: 30px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s;
}

.pm-channel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(49,140,255,.3);
}

.pm-channel-card::after {
  content: '';
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  right: -92px;
  top: -92px;
  border: 1px solid rgba(49,140,255,.18);
  box-shadow: 0 0 0 28px rgba(49,140,255,.025), 0 0 0 56px rgba(49,140,255,.015);
  pointer-events: none;
}

.pm-channel-card.wide { grid-column: span 7; }
.pm-channel-card.narrow { grid-column: span 5; }

.pm-channel-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.pm-channel-top .index {
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--blue);
  font-weight: 700;
}

.pm-channel-top .pm-chip {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8090a3;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.pm-channel-card h3 {
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.12;
  letter-spacing: -.03em;
  margin: 54px 0 12px;
  position: relative;
  z-index: 1;
}

.pm-channel-card p {
  margin: 0;
  color: var(--muted);
  max-width: 620px;
  position: relative;
  z-index: 1;
}

.pm-channel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.pm-channel-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f5f8fb;
  color: #536276;
  font-size: 11px;
  border: 1px solid #e6ebf1;
}

/* Measurement / control room */
.pm-measure {
  background: #07111f;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.pm-measure::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent 2%, black 34%, black 90%, transparent);
}

.pm-measure-grid {
  position: relative;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 80px;
  align-items: center;
}

.pm-measure-copy .eyebrow {
  color: var(--blue-2);
}

.pm-measure-copy h2 {
  color: #fff;
}

.pm-measure-copy p {
  color: rgba(255,255,255,.64);
  font-size: 17px;
  line-height: 1.75;
  max-width: 560px;
}

.pm-control {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.035);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 30px 90px rgba(0,0,0,.2);
}

.pm-control-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.pm-control-head span {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.46);
}

.pm-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8ec5ff !important;
}

.pm-live::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(49,140,255,.8);
}

.pm-control-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.09);
  margin-top: 1px;
}

.pm-signal {
  min-height: 150px;
  background: #0a1728;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pm-signal span {
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}

.pm-signal strong {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

.pm-signal small {
  color: #7dbbff;
  font-size: 12px;
}

/* Optimisation cycle */
.pm-cycle {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 90px;
  align-items: start;
}

.pm-cycle-copy {
  position: sticky;
  top: 126px;
}

.pm-cycle-list {
  border-top: 1px solid var(--line);
}

.pm-cycle-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.pm-cycle-item .num {
  color: var(--blue);
  font-size: 11px;
  letter-spacing: .14em;
  font-weight: 700;
}

.pm-cycle-item h3 {
  margin: 0 0 5px;
  font-size: 24px;
  letter-spacing: -.025em;
}

.pm-cycle-item p {
  margin: 0;
  color: var(--muted);
}

.pm-cycle-arrow {
  font-size: 20px;
  color: #9aabba;
}

/* Specialist B2B event section */
.pm-specialist {
  background: #eef4fa;
}

.pm-specialist-panel {
  background: linear-gradient(135deg, #0a1728, #0d2948);
  color: #fff;
  border-radius: 34px;
  padding: clamp(42px, 6vw, 76px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: end;
  position: relative;
  overflow: hidden;
}

.pm-specialist-panel::after {
  content: '';
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  right: -190px;
  top: -220px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 0 0 58px rgba(255,255,255,.025), 0 0 0 116px rgba(255,255,255,.015);
}

.pm-specialist-panel .eyebrow {
  color: var(--blue-2);
}

.pm-specialist-panel h2 {
  color: #fff;
  max-width: 720px;
}

.pm-specialist-panel p {
  color: rgba(255,255,255,.65);
  max-width: 650px;
}

.pm-specialist-list {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.14);
}

.pm-specialist-list div {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.pm-specialist-list strong {
  font-size: 14px;
}

.pm-specialist-list span {
  font-size: 12px;
  color: #8ec5ff;
}

/* FAQ */
.pm-faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 90px;
  align-items: start;
}

.pm-faq-copy {
  position: sticky;
  top: 126px;
}

.pm-faq-copy > p {
  margin: 0;
  max-width: 440px;
  color: var(--muted);
  line-height: 1.75;
}

.pm-faq-list {
  border-top: 1px solid var(--line);
}

.pm-faq-item {
  border-bottom: 1px solid var(--line);
}

.pm-faq-item summary {
  list-style: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 24px;
  align-items: center;
  padding: 27px 0;
  cursor: pointer;
  user-select: none;
}

.pm-faq-item summary::-webkit-details-marker {
  display: none;
}

.pm-faq-item summary::marker {
  content: '';
}

.pm-faq-item summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 6px;
  border-radius: 4px;
}

.pm-faq-question {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -.02em;
  font-weight: 600;
  color: var(--ink);
}

.pm-faq-index {
  font-size: 10px;
  line-height: 1;
  letter-spacing: .15em;
  font-weight: 700;
  color: var(--blue);
}

.pm-faq-icon {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(7,17,31,.14);
  border-radius: 50%;
  position: relative;
  transition: border-color .22s var(--ease), background .22s var(--ease), transform .22s var(--ease);
}

.pm-faq-icon::before,
.pm-faq-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: opacity .2s var(--ease), transform .22s var(--ease), background .22s var(--ease);
}

.pm-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.pm-faq-item summary:hover .pm-faq-icon {
  border-color: rgba(49,140,255,.42);
  background: var(--blue-soft);
}

.pm-faq-item[open] .pm-faq-icon {
  background: var(--blue);
  border-color: var(--blue);
  transform: rotate(180deg);
}

.pm-faq-item[open] .pm-faq-icon::before,
.pm-faq-item[open] .pm-faq-icon::after {
  background: #fff;
}

.pm-faq-item[open] .pm-faq-icon::after {
  opacity: 0;
}

.pm-faq-answer {
  padding: 0 58px 30px 58px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 850px;
}

.pm-faq-answer p {
  margin: 0 0 13px;
}

.pm-faq-answer p:last-child {
  margin-bottom: 0;
}
@media (max-width: 980px) {
  .pm-intro-grid,
  .pm-system-head,
  .pm-measure-grid,
  .pm-cycle,
  .pm-specialist-panel,
  .pm-faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pm-intro-side,
  .pm-cycle-copy,
  .pm-faq-copy {
    position: static;
  }

  .pm-faq-copy > p {
    max-width: 680px;
  }

  .pm-system-head p {
    justify-self: start;
  }

  .pm-channel-card.wide,
  .pm-channel-card.narrow {
    grid-column: span 12;
  }
}

@media (max-width: 640px) {
  .pm-channel-grid {
    display: block;
  }

  .pm-channel-card {
    min-height: 240px;
    margin-bottom: 14px;
    padding: 26px;
  }

  .pm-channel-card h3 {
    margin-top: 40px;
  }

  .pm-control {
    padding: 18px;
    border-radius: 22px;
  }

  .pm-control-grid {
    grid-template-columns: 1fr;
  }

  .pm-signal {
    min-height: 120px;
  }

  .pm-cycle-item {
    grid-template-columns: 48px 1fr;
  }

  .pm-cycle-arrow {
    display: none;
  }

  .pm-faq-item summary {
    grid-template-columns: minmax(0, 1fr) 30px;
    gap: 14px;
    padding: 23px 0;
  }

  .pm-faq-question {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    font-size: 18px;
  }

  .pm-faq-answer {
    padding: 0 0 24px 42px;
  }

  .pm-faq-icon {
    width: 28px;
    height: 28px;
  }

  .pm-specialist-panel {
    border-radius: 28px;
  }
}


/* =========================================
   PERFORMANCE MARKETING — INTRO V2
   ========================================= */

.pm-intro-v2 {
  background: #f7f9fb;
  position: relative;
  overflow: hidden;
}

.pm-intro-v2::before {
  content: '';
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  right: -300px;
  top: -330px;
  border: 1px solid rgba(49,140,255,.08);
  box-shadow:
    0 0 0 70px rgba(49,140,255,.018),
    0 0 0 140px rgba(49,140,255,.012);
  pointer-events: none;
}

.pm-intro-v2 .container {
  position: relative;
  z-index: 1;
}

.pm-intro-v2-head {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(50px, 7vw, 100px);
  align-items: end;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line);
}

.pm-intro-v2-head .h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.pm-intro-v2-copy {
  max-width: 590px;
  justify-self: end;
}

.pm-intro-v2-copy p {
  margin: 0 0 14px;
  color: #536276;
  font-size: 17px;
  line-height: 1.75;
}

.pm-intro-v2-copy p:last-child {
  margin-bottom: 0;
}

/* Performance architecture */
.pm-architecture {
  margin-top: 54px;
  border: 1px solid rgba(7,17,31,.12);
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(7,17,31,.07);
}

.pm-architecture-top {
  min-height: 54px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #8b98a9;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}

.pm-architecture-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #54708f;
}

.pm-architecture-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px rgba(49,140,255,.45);
}

.pm-architecture-core {
  text-align: center;
  padding: 46px 28px 42px;
  background:
    radial-gradient(circle at 50% 15%, rgba(49,140,255,.08), transparent 35%),
    linear-gradient(180deg, #fff, #fbfdff);
  border-bottom: 1px solid var(--line);
}

.pm-core-label {
  display: block;
  margin-bottom: 13px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
}

.pm-architecture-core strong {
  display: block;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -.045em;
  font-weight: 550;
  color: var(--ink);
}

.pm-architecture-core p {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--muted);
}

.pm-architecture-flow {
  display: grid;
  grid-template-columns: 1fr 58px 1fr 58px 1fr 58px 1fr;
  align-items: stretch;
  padding: 30px;
}

.pm-architecture-node {
  min-height: 176px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.pm-node-index {
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}

.pm-architecture-node strong {
  margin-top: auto;
  font-size: 20px;
  letter-spacing: -.02em;
}

.pm-architecture-node small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.pm-architecture-connector {
  display: grid;
  place-items: center;
  position: relative;
}

.pm-architecture-connector i {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(49,140,255,.2), var(--blue), rgba(49,140,255,.2));
  position: relative;
}

.pm-architecture-connector i::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.pm-architecture-loop {
  min-height: 66px;
  padding: 0 28px;
  border-top: 1px solid var(--line);
  background: #07111f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.pm-architecture-loop span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  color: rgba(255,255,255,.68);
}

.pm-architecture-loop i {
  width: 36px;
  height: 1px;
  background: rgba(114,180,255,.45);
  position: relative;
}

.pm-architecture-loop i::after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-2);
  position: absolute;
  right: -2px;
  top: -2px;
}

/* Slight refinement to the following capability section */
.pm-system-head {
  grid-template-columns: 1.05fr .95fr;
}

.pm-system-head .h2 {
  max-width: 760px;
}

.pm-system-head > p {
  max-width: 570px;
  font-size: 16px;
  line-height: 1.75;
}

@media (max-width: 980px) {
  .pm-intro-v2-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pm-intro-v2-copy {
    justify-self: start;
    max-width: 760px;
  }

  .pm-architecture-flow {
    grid-template-columns: 1fr 34px 1fr;
    gap: 0;
  }

  .pm-architecture-flow .pm-architecture-node:nth-of-type(5) {
    margin-top: 22px;
  }

  .pm-architecture-flow .pm-architecture-node:nth-of-type(7) {
    margin-top: 22px;
  }

  .pm-architecture-flow .pm-architecture-connector:nth-of-type(4),
  .pm-architecture-flow .pm-architecture-connector:nth-of-type(6) {
    display: none;
  }
}

@media (max-width: 720px) {
  .pm-intro-v2-head {
    padding-bottom: 38px;
  }

  .pm-architecture {
    margin-top: 38px;
    border-radius: 24px;
  }

  .pm-architecture-top {
    padding: 0 18px;
  }

  .pm-architecture-status {
    display: none;
  }

  .pm-architecture-core {
    text-align: left;
    padding: 34px 22px;
  }

  .pm-architecture-core p {
    margin-left: 0;
  }

  .pm-architecture-flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .pm-architecture-node {
    min-height: 140px;
  }

  .pm-architecture-connector {
    display: none !important;
  }

  .pm-architecture-loop {
    padding: 18px;
    min-height: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }

  .pm-architecture-loop i {
    width: 20px;
  }
}


/* =========================================
   PRIMARY NAV — CAPABILITIES SUBMENU
   ========================================= */

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown-caret {
  font-size: 12px;
  line-height: 1;
  opacity: .65;
  transform: translateY(-1px);
  transition: transform .2s var(--ease), opacity .2s;
}

.nav-dropdown:hover .nav-dropdown-caret,
.nav-dropdown:focus-within .nav-dropdown-caret {
  transform: translateY(-1px) rotate(180deg);
  opacity: 1;
}

.nav-submenu {
  position: absolute;
  left: -22px;
  top: calc(100% - 8px);
  width: 245px;
  padding: 10px;
  background: rgba(7,17,31,.97);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-submenu a {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.35;
  opacity: 1 !important;
  transition: background .18s, color .18s;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible,
.nav-submenu a.active {
  background: rgba(49,140,255,.12);
  color: #fff;
}

/* =========================================
   PERFORMANCE MARKETING — SPECIALIST PROOF
   ========================================= */

.pm-specialist-right {
  position: relative;
  z-index: 1;
}

.pm-specialist-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.pm-specialist-metric {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.045);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.pm-specialist-metric strong {
  display: block;
  font-size: 48px;
  line-height: .9;
  letter-spacing: -.055em;
  font-weight: 500;
  color: #fff;
}

.pm-specialist-metric span {
  display: block;
  margin-top: 11px;
  color: rgba(255,255,255,.6);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .nav-dropdown {
    width: 100%;
    display: block;
    align-self: auto;
  }

  .nav-dropdown-trigger {
    width: 100%;
  }

  .nav-dropdown-caret {
    display: none;
  }

  .nav-submenu {
    position: static;
    width: 100%;
    margin-top: 8px;
    padding: 0 0 0 18px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    gap: 4px;
  }

  .nav-submenu a {
    padding: 7px 0;
    font-size: 15px;
    color: rgba(255,255,255,.58);
  }

  .nav-submenu a:hover,
  .nav-submenu a:focus-visible,
  .nav-submenu a.active {
    background: transparent;
    color: #fff;
  }
}

@media (max-width: 640px) {
  .pm-specialist-proof {
    grid-template-columns: 1fr;
  }

  .pm-specialist-metric {
    min-height: 130px;
  }
}


/* =========================================
   B2B EVENT MARKETING PAGE
   ========================================= */

.b2b-intro {
  background: #f7f9fb;
}

.b2b-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(60px, 8vw, 110px);
  align-items: center;
}

.b2b-intro-copy {
  max-width: 720px;
}

.b2b-intro-copy .b2b-lead {
  color: #26384e;
  font-size: 20px;
  line-height: 1.7;
}

.b2b-intro-copy p:not(.b2b-lead) {
  color: #66758a;
  font-size: 16px;
  line-height: 1.8;
}

.b2b-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.b2b-proof-card,
.b2b-proof-wide {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.b2b-proof-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.b2b-proof-card::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  right: -86px;
  top: -84px;
  border: 1px solid rgba(49,140,255,.14);
  box-shadow: 0 0 0 30px rgba(49,140,255,.024), 0 0 0 60px rgba(49,140,255,.015);
}

.b2b-proof-label {
  font-size: 8px;
  letter-spacing: .17em;
  color: #8d9aac;
  font-weight: 700;
}

.b2b-proof-card strong {
  font-size: 68px;
  line-height: .88;
  letter-spacing: -.065em;
  font-weight: 500;
  color: var(--ink);
}

.b2b-proof-card strong span {
  color: var(--blue);
  font-size: .55em;
  vertical-align: top;
  margin-left: 3px;
}

.b2b-proof-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.b2b-proof-wide {
  grid-column: 1 / -1;
  min-height: 145px;
  background: var(--ink);
  color: #fff;
}

.b2b-proof-wide span {
  font-size: 8px;
  letter-spacing: .17em;
  color: var(--blue-2);
  font-weight: 700;
}

.b2b-proof-wide p {
  margin: 30px 0 0;
  color: rgba(255,255,255,.66);
  font-size: 14px;
  line-height: 1.7;
}

/* Shared B2B section headings */
.b2b-section-head {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}

.b2b-section-head .h2 {
  max-width: 790px;
}

.b2b-section-head > p {
  margin: 0;
  max-width: 560px;
  justify-self: end;
  color: var(--muted);
  line-height: 1.75;
}

/* Audience architecture */
.b2b-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.b2b-audience-card {
  min-height: 330px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: background .25s, color .25s, transform .25s;
}

.b2b-audience-card:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-3px);
}

.b2b-audience-card .index {
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.b2b-audience-card > div {
  margin-top: auto;
}

.b2b-audience-card h3 {
  margin: 0 0 12px;
  font-size: 25px;
  letter-spacing: -.03em;
}

.b2b-audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.b2b-audience-card:hover p {
  color: rgba(255,255,255,.64);
}

.b2b-audience-tag {
  margin-top: 28px;
  align-self: flex-start;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #78879a;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.b2b-audience-card:hover .b2b-audience-tag {
  border-color: rgba(255,255,255,.18);
  color: var(--blue-2);
}

/* New event launch */
.b2b-launch {
  background:
    radial-gradient(circle at 78% 22%, rgba(49,140,255,.16), transparent 28%),
    linear-gradient(140deg, #07111f, #0b2038);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.b2b-launch::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, black 35%, black 92%, transparent);
}

.b2b-launch-grid {
  position: relative;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.b2b-launch-copy {
  position: sticky;
  top: 125px;
}

.b2b-launch-copy .eyebrow {
  color: var(--blue-2);
}

.b2b-launch-copy .h2 {
  color: #fff;
}

.b2b-launch-copy p {
  color: rgba(255,255,255,.65);
  font-size: 16px;
  line-height: 1.78;
}

.b2b-launch-stages {
  border-top: 1px solid rgba(255,255,255,.14);
}

.b2b-launch-stage {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.b2b-launch-stage > span {
  color: var(--blue-2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.b2b-launch-stage strong {
  display: block;
  margin-bottom: 7px;
  font-size: 20px;
}

.b2b-launch-stage p {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 14px;
  line-height: 1.65;
}

/* Stage to pipeline framework */
.b2b-framework {
  background: #f7f9fb;
}

.b2b-framework-head {
  max-width: 820px;
  margin-bottom: 50px;
}

.b2b-framework-head > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  max-width: 760px;
}

.b2b-framework-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.b2b-framework-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.b2b-framework-card > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.b2b-framework-card h3 {
  margin: auto 0 10px;
  font-size: 23px;
}

.b2b-framework-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

/* Event ecosystem */
.b2b-ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.b2b-ecosystem-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.b2b-ecosystem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.b2b-ecosystem-card > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.b2b-ecosystem-card h3 {
  margin: 50px 0 12px;
  font-size: 22px;
  letter-spacing: -.025em;
}

.b2b-ecosystem-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.b2b-ecosystem-card a {
  margin-top: auto;
  padding-top: 22px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.b2b-ecosystem-card a b {
  color: var(--blue);
  font-size: 15px;
}

/* Event measurement */
.b2b-measure {
  background: #0a1626;
  color: #fff;
}

.b2b-measure-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.b2b-measure-copy .eyebrow {
  color: var(--blue-2);
}

.b2b-measure-copy .h2 {
  color: #fff;
}

.b2b-measure-copy p {
  color: rgba(255,255,255,.64);
  font-size: 16px;
  line-height: 1.75;
}

.b2b-measure-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid rgba(255,255,255,.12);
  border-top: 1px solid rgba(255,255,255,.12);
}

.b2b-measure-map > div {
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.025);
}

.b2b-measure-map span {
  color: var(--blue-2);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.b2b-measure-map strong {
  margin-top: auto;
  font-size: 20px;
}

.b2b-measure-map small {
  margin-top: 8px;
  color: rgba(255,255,255,.52);
  line-height: 1.55;
}

/* Working models */
.b2b-working {
  background: #f7f9fb;
}

.b2b-working-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.b2b-working-card {
  min-height: 260px;
  padding: 30px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
}

.b2b-working-card > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.b2b-working-card h3 {
  margin: 54px 0 12px;
  font-size: 24px;
  letter-spacing: -.03em;
}

.b2b-working-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* FAQ */
.b2b-faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 90px;
  align-items: start;
}

.b2b-faq-copy {
  position: sticky;
  top: 126px;
}

.b2b-faq-copy > p {
  max-width: 430px;
  color: var(--muted);
  line-height: 1.75;
}

.b2b-faq-list {
  border-top: 1px solid var(--line);
}

.b2b-faq-item {
  border-bottom: 1px solid var(--line);
}

.b2b-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(0,1fr) 34px;
  gap: 20px;
  align-items: center;
  padding: 27px 0;
}

.b2b-faq-item summary::-webkit-details-marker {
  display: none;
}

.b2b-faq-question {
  display: grid;
  grid-template-columns: 42px minmax(0,1fr);
  gap: 16px;
  align-items: baseline;
  font-size: 20px;
  line-height: 1.38;
  letter-spacing: -.02em;
  font-weight: 600;
}

.b2b-faq-index {
  color: var(--blue);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .14em;
  font-weight: 700;
}

.b2b-faq-icon {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(7,17,31,.14);
  border-radius: 50%;
  position: relative;
  transition: background .2s, border-color .2s, transform .2s;
}

.b2b-faq-icon::before,
.b2b-faq-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 1.5px;
  background: var(--ink);
  transform: translate(-50%,-50%);
  transition: opacity .2s, background .2s;
}

.b2b-faq-icon::after {
  transform: translate(-50%,-50%) rotate(90deg);
}

.b2b-faq-item[open] .b2b-faq-icon {
  background: var(--blue);
  border-color: var(--blue);
  transform: rotate(180deg);
}

.b2b-faq-item[open] .b2b-faq-icon::before,
.b2b-faq-item[open] .b2b-faq-icon::after {
  background: #fff;
}

.b2b-faq-item[open] .b2b-faq-icon::after {
  opacity: 0;
}

.b2b-faq-answer {
  padding: 0 58px 28px 58px;
  max-width: 870px;
}

.b2b-faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

/* Responsive */
@media (max-width: 1050px) {
  .b2b-intro-grid,
  .b2b-section-head,
  .b2b-launch-grid,
  .b2b-measure-grid,
  .b2b-faq-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .b2b-section-head > p {
    justify-self: start;
  }

  .b2b-launch-copy,
  .b2b-faq-copy {
    position: static;
  }

  .b2b-audience-grid {
    grid-template-columns: 1fr 1fr;
  }

  .b2b-framework-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .b2b-framework-card:last-child {
    grid-column: 1 / -1;
  }

  .b2b-ecosystem-grid,
  .b2b-working-grid {
    grid-template-columns: 1fr 1fr;
  }

  .b2b-working-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .b2b-proof {
    grid-template-columns: 1fr;
  }

  .b2b-proof-wide {
    grid-column: auto;
  }

  .b2b-audience-grid,
  .b2b-framework-grid,
  .b2b-ecosystem-grid,
  .b2b-working-grid,
  .b2b-measure-map {
    grid-template-columns: 1fr;
  }

  .b2b-framework-card:last-child,
  .b2b-working-card:last-child {
    grid-column: auto;
  }

  .b2b-audience-card {
    min-height: 250px;
  }

  .b2b-faq-item summary {
    grid-template-columns: minmax(0,1fr) 30px;
    gap: 14px;
    padding: 23px 0;
  }

  .b2b-faq-question {
    grid-template-columns: 32px minmax(0,1fr);
    gap: 10px;
    font-size: 18px;
  }

  .b2b-faq-answer {
    padding: 0 0 24px 42px;
  }
}


/* =========================================
   HOME — NEW LAUNCH PATHWAYS
   ========================================= */

.home-launch {
  background: #f6f8fb;
}

.home-launch-head {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  column-gap: 80px;
  align-items: end;
  margin-bottom: 50px;
}

.home-launch-head .eyebrow,
.home-launch-head .h2 {
  grid-column: 1;
}

.home-launch-head .h2 {
  max-width: 830px;
  margin-bottom: 0;
}

.home-launch-head > p {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  line-height: 1.75;
}

.home-launch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.home-launch-card {
  min-height: 520px;
  padding: 32px;
  border-radius: 26px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.home-launch-card-event {
  background:
    radial-gradient(circle at 85% 12%, rgba(49,140,255,.18), transparent 30%),
    #07111f;
  color: #fff;
  border-color: rgba(255,255,255,.08);
}

.home-launch-card-business {
  background: #fff;
}

.home-launch-card::after {
  content: '';
  position: absolute;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  right: -165px;
  top: -155px;
  border: 1px solid rgba(49,140,255,.16);
  box-shadow:
    0 0 0 44px rgba(49,140,255,.025),
    0 0 0 88px rgba(49,140,255,.014);
  pointer-events: none;
}

.home-launch-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.home-launch-index {
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.home-launch-type {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #76879a;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-launch-card-event .home-launch-type {
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.54);
}

.home-launch-card-body {
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.home-launch-card h3 {
  max-width: 560px;
  margin: 0 0 18px;
  font-size: clamp(29px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.home-launch-card p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.home-launch-card-event p {
  color: rgba(255,255,255,.62);
}

.home-launch-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 30px;
}

.home-launch-points span {
  padding: 11px 12px;
  border-radius: 11px;
  border: 1px solid var(--line);
  color: #617084;
  font-size: 11px;
  line-height: 1.35;
}

.home-launch-card-event .home-launch-points span {
  border-color: rgba(255,255,255,.11);
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.025);
}

.home-launch-link {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.home-launch-link b {
  color: var(--blue);
  font-size: 16px;
}

.home-launch-card-event .home-launch-link {
  border-top-color: rgba(255,255,255,.12);
  color: #fff;
}

/* =========================================
   HOME — FAQ
   ========================================= */

.home-faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 90px;
  align-items: start;
}

.home-faq-copy {
  position: sticky;
  top: 126px;
}

.home-faq-copy > p {
  max-width: 430px;
  color: var(--muted);
  line-height: 1.75;
}

.home-faq-list {
  border-top: 1px solid var(--line);
}

.home-faq-item {
  border-bottom: 1px solid var(--line);
}

.home-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(0,1fr) 34px;
  gap: 20px;
  align-items: center;
  padding: 27px 0;
}

.home-faq-item summary::-webkit-details-marker {
  display: none;
}

.home-faq-question {
  display: grid;
  grid-template-columns: 42px minmax(0,1fr);
  gap: 16px;
  align-items: baseline;
  font-size: 20px;
  line-height: 1.38;
  letter-spacing: -.02em;
  font-weight: 600;
}

.home-faq-index {
  color: var(--blue);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .14em;
  font-weight: 700;
}

.home-faq-icon {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(7,17,31,.14);
  border-radius: 50%;
  position: relative;
  transition: background .2s, border-color .2s, transform .2s;
}

.home-faq-icon::before,
.home-faq-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 1.5px;
  background: var(--ink);
  transform: translate(-50%,-50%);
  transition: opacity .2s, background .2s;
}

.home-faq-icon::after {
  transform: translate(-50%,-50%) rotate(90deg);
}

.home-faq-item[open] .home-faq-icon {
  background: var(--blue);
  border-color: var(--blue);
  transform: rotate(180deg);
}

.home-faq-item[open] .home-faq-icon::before,
.home-faq-item[open] .home-faq-icon::after {
  background: #fff;
}

.home-faq-item[open] .home-faq-icon::after {
  opacity: 0;
}

.home-faq-answer {
  padding: 0 58px 28px 58px;
  max-width: 880px;
}

.home-faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

@media (max-width: 980px) {
  .home-launch-head,
  .home-faq-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-launch-head .eyebrow,
  .home-launch-head .h2,
  .home-launch-head > p {
    grid-column: 1;
    grid-row: auto;
  }

  .home-launch-head > p {
    max-width: 760px;
  }

  .home-launch-grid {
    grid-template-columns: 1fr;
  }

  .home-launch-card {
    min-height: 470px;
  }

  .home-faq-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .home-launch-card {
    min-height: 0;
    padding: 26px;
  }

  .home-launch-card-body {
    margin-top: 80px;
  }

  .home-launch-points {
    grid-template-columns: 1fr;
  }

  .home-faq-item summary {
    grid-template-columns: minmax(0,1fr) 30px;
    gap: 14px;
    padding: 23px 0;
  }

  .home-faq-question {
    grid-template-columns: 32px minmax(0,1fr);
    gap: 10px;
    font-size: 18px;
  }

  .home-faq-answer {
    padding: 0 0 24px 42px;
  }
}


/* =========================================
   PRODUCTION NAVIGATION — MOBILE SUBMENU
   ========================================= */
@media (max-width: 980px) {
  .nav-dropdown-caret {
    display: inline-block;
  }

  .nav-submenu {
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      max-height .25s var(--ease),
      opacity .2s var(--ease),
      margin-top .2s var(--ease),
      visibility .2s;
  }

  .nav-dropdown.submenu-open .nav-submenu {
    max-height: 220px;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-dropdown.submenu-open .nav-dropdown-caret {
    transform: translateY(-1px) rotate(180deg);
    opacity: 1;
  }
}
