/* ============================================================
   New Voices — a Stagwell company
   Brand system + pixel-faithful hero from the Claude Design handoff
   ============================================================ */

:root {
  --navy:      #16181A;
  --signal:    #159CBD;   /* accent */
  --accent:    #159CBD;
  --sky:       #57BF94;
  --indigo:    #159CBD;
  --white:     #FFFFFF;
  --cloud:     #F4F6F6;
  --slate:     #6B7280;
  --ink:       #16181A;
  --line:      #E6E9EA;
  --line-soft: #E6E9EA;
  --muted:     #9AA0A6;
  --green:     #57BF94;
  --amber:     #F9B233;
  --red:       #E5484D;
  --ease:      cubic-bezier(.2,.7,.2,1);
  --maxw:      1280px;
  --pad:       48px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  overflow-x: clip;
}
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }
::selection { background: rgba(21,156,189,.18); }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { margin: 0; }
a { color: inherit; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { left: 16px; top: 12px; }

.container { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  text-decoration: none; font-weight: 600; font-size: 15px;
  border-radius: 10px; cursor: pointer; border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn .arrow { font-size: 18px; line-height: 1; transform: translateY(1px); transition: transform .2s ease; }
.btn-primary { background: var(--ink); color: #fff; padding: 12px 24px; border-radius: 12px; box-shadow: 0 1px 2px rgba(20,32,44,.16); }
.btn-primary:hover { transform: translateY(-1px); background: #0C0D0F; box-shadow: 0 10px 22px -6px rgba(20,32,44,.32); }
.btn-primary:hover .arrow { transform: translate(3px,1px); }
.btn-lg { font-size: 16px; padding: 15px 28px; border-radius: 12px; box-shadow: 0 1px 2px rgba(20,32,44,.16); }
.btn-lg:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(20,32,44,.34); }
.btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--ink); padding: 14px 26px; border-radius: 12px; box-shadow: none; }
.btn-ghost:hover { background: var(--cloud); border-color: var(--ink); transform: none; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease, background .3s ease;
}
.nav.scrolled { box-shadow: 0 6px 24px -16px rgba(22,24,26,.35); background: rgba(255,255,255,.86); }
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 38px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 38px; }
.nav-links { display: flex; align-items: center; gap: 34px; font-size: 15px; font-weight: 500; color: var(--slate); }
.nv-link { position: relative; text-decoration: none; color: inherit; transition: color .2s ease; }
.nv-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.nv-link:hover { color: var(--navy); }
.nv-link:hover::after { transform: scaleX(1); }
.btn-nav { padding: 11px 22px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Page gradient wrapper (hero + stat band) ---------- */
.page { background:
  radial-gradient(115% 80% at 92% 0%, rgba(87,191,148,.10), transparent 55%),
  radial-gradient(90% 70% at 4% 100%, rgba(21,156,189,.07), transparent 60%),
  linear-gradient(180deg,#FFFFFF 0%,#FBFCFC 55%,#F4F6F6 100%);
  overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  max-width: var(--maxw); margin: 0 auto; padding: 84px var(--pad) 64px;
  display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 64px; align-items: center;
}
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px;
  border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.7); margin-bottom: 28px;
}
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: nvPulse 1.9s ease-in-out infinite; flex: none; }
.pulse-dot.green { width: 6px; height: 6px; background: var(--green); animation-duration: 1.6s; }
.eyebrow-text { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--slate); }
.hero-title {
  font-size: clamp(2.7rem, 4.8vw, 4.4rem); line-height: 1.04; font-weight: 700;
  letter-spacing: -0.025em; color: var(--navy); text-wrap: balance;
}
.hero-sub { margin: 30px 0 0; max-width: 530px; font-size: 19px; line-height: 1.6; color: var(--slate); }
.hero-cta { display: flex; align-items: center; gap: 16px; margin-top: 40px; flex-wrap: wrap; }

/* hero visual panel */
.hero-visual {
  position: relative; height: 520px; border-radius: 24px;
  background: linear-gradient(160deg,#FFFFFF 0%,#F4F6F6 100%);
  border: 1px solid var(--line-soft); box-shadow: 0 30px 70px -28px rgba(22,24,26,.28); overflow: hidden;
}
.panel-header { position: absolute; top: 0; left: 0; right: 0; display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; z-index: 4; }
.panel-label { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.panel-live { font-family: 'JetBrains Mono', ui-monospace, monospace; display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--slate); }
.wave-canvas { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); width: 100%; height: 62%; display: block; }

.float-card { position: absolute; border-radius: 14px; padding: 16px 18px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.card-sentiment { top: 64px; right: 26px; width: 218px; background: rgba(255,255,255,.86); border: 1px solid var(--line-soft); box-shadow: 0 18px 40px -16px rgba(22,24,26,.3); animation: nvFloat 7s ease-in-out 1.4s infinite; }
.card-theme { top: 222px; left: 24px; width: 236px; background: rgba(255,255,255,.9); border: 1px solid var(--line-soft); box-shadow: 0 18px 40px -16px rgba(22,24,26,.32); animation: nvFloat 7.6s ease-in-out 1.6s infinite; }
.card-quote { bottom: 30px; right: 30px; width: 250px; background: var(--navy); box-shadow: 0 22px 46px -16px rgba(22,24,26,.5); animation: nvFloat 8.2s ease-in-out 1.9s infinite; }
.fc-label { font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.fc-label.accent { color: var(--accent); }
.fc-sentiment { display: flex; align-items: baseline; gap: 8px; margin-top: 8px; }
.fc-big { font-size: 34px; font-weight: 700; letter-spacing: -0.02em; }
.fc-big.green { color: var(--green); }
.fc-unit { font-size: 13px; color: var(--slate); }
.fc-bar { margin-top: 12px; height: 6px; border-radius: 4px; background: #E6E9EA; overflow: hidden; }
.fc-bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg,#57BF94,#159CBD); }
.fc-theme { margin-top: 7px; font-size: 16px; font-weight: 600; color: var(--navy); line-height: 1.25; }
.fc-meta { margin-top: 5px; font-size: 12.5px; color: var(--slate); line-height: 1.45; }
.fc-quote-mark { font-size: 24px; line-height: 0; color: var(--sky); font-weight: 700; height: 14px; }
.fc-quote { font-size: 14px; font-style: italic; color: #EDF0F0; line-height: 1.45; }
.fc-attr { margin-top: 10px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--sky); font-weight: 600; }

/* ---------- Stat band ---------- */
.stat-band { border-top: 1px solid var(--line); background: rgba(255,255,255,.55); }
.stat-band-inner { max-width: var(--maxw); margin: 0 auto; padding: 46px var(--pad); display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.stat { display: flex; flex-direction: column; gap: 8px; }
.stat-divider { border-left: 1px solid var(--line); padding-left: 40px; }
.stat-num { font-size: clamp(2.6rem,3.4vw,3.4rem); font-weight: 700; letter-spacing: -0.03em; color: var(--navy); line-height: 1; }
.stat-num .accent, .accent { color: var(--accent); }
.stat-desc { font-size: 15.5px; color: var(--slate); line-height: 1.5; max-width: 300px; }

/* ---------- Trust strip ---------- */
.trust { background: var(--navy); color: #fff; }
.trust-inner { display: flex; align-items: center; gap: 28px; padding-top: 22px; padding-bottom: 22px; flex-wrap: wrap; }
.trust-label { font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--sky); }
.trust-sep { flex: none; width: 1px; height: 20px; background: rgba(255,255,255,.18); }
.trust-stats { display: flex; gap: 32px; flex-wrap: wrap; font-size: 14.5px; color: #AEB4B9; }
.trust-stats strong { color: #fff; font-weight: 700; }

/* ---------- Generic section ---------- */
.section { padding: 100px 0; position: relative; }
.section-cloud { background: var(--cloud); }
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.eyebrow-light { color: var(--sky); }
.section-title { font-size: clamp(1.9rem, 3.2vw, 2.85rem); line-height: 1.1; font-weight: 700; letter-spacing: -0.02em; color: var(--navy); text-wrap: balance; }
.section-title.light { color: #fff; }
.section-lead { margin: 22px 0 0; font-size: 18px; line-height: 1.6; color: var(--slate); }
.section-head .section-lead { margin-left: auto; margin-right: auto; }
.section-lead em { color: var(--navy); font-style: italic; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }
.grid-5 { grid-template-columns: repeat(5,1fr); }

/* ---------- Problem ---------- */
.mini-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 26px 24px; box-shadow: 0 12px 30px -22px rgba(22,24,26,.4); }
.mini-card h3 { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.mini-card p { margin: 0; font-size: 14.5px; color: var(--slate); line-height: 1.5; }
.framing-bar { margin-top: 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; background: radial-gradient(80% 130% at 100% 0%, rgba(87,191,148,.18), transparent 58%), linear-gradient(120deg,#16181A,#1F2326); border-radius: 20px; padding: 30px 36px; }
.framing-quote { font-size: clamp(1.15rem,2vw,1.5rem); font-weight: 600; color: #fff; letter-spacing: -0.01em; }
.framing-tag { font-size: 14px; font-weight: 600; color: var(--sky); letter-spacing: .04em; }

/* ---------- Why voice ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-copy .section-title { margin-top: 0; }
.contrast { margin: 30px 0 32px; border-top: 1px solid var(--line); }
.contrast-row { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contrast-k { font-size: 15px; color: var(--slate); }
.contrast-v { font-size: 19px; font-weight: 600; color: var(--navy); }
.contrast-row.strong .contrast-v { color: var(--accent); }
.why-visual { display: flex; flex-direction: column; gap: 18px; }
.convo-card { background: #fff; border: 1px solid var(--line-soft); border-radius: 18px; padding: 22px 24px; box-shadow: 0 24px 50px -30px rgba(22,24,26,.45); }
.convo-card-2 { margin-left: 40px; background: var(--cloud); }
.section-cloud .convo-card-2 { background: #fff; }
.convo-head { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); margin-bottom: 12px; }
.convo-line { margin: 0 0 14px; font-size: 16px; line-height: 1.55; color: var(--navy); }
.convo-line .hl { background: linear-gradient(180deg,transparent 62%, rgba(87,191,148,.45) 0); }
.convo-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size: 12px; font-weight: 600; padding: 5px 11px; border-radius: 999px; }
.tag-red { background: rgba(229,72,77,.12); color: #C0413F; }
.tag-amber { background: rgba(249,178,51,.14); color: #9A6B12; }
.tag-blue { background: rgba(21,156,189,.1); color: var(--accent); }
.tag-green { background: rgba(87,191,148,.13); color: #2C7A55; }

/* ---------- Steps ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px 22px; box-shadow: 0 14px 34px -26px rgba(22,24,26,.5); }
.step-num { width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 17px; color: #fff; background: linear-gradient(135deg,var(--navy),var(--signal)); margin-bottom: 18px; }
.step h3 { font-size: 16.5px; font-weight: 600; color: var(--navy); margin-bottom: 9px; line-height: 1.25; }
.step p { margin: 0; font-size: 14px; color: var(--slate); line-height: 1.5; }

/* ---------- Comparison table ---------- */
.table-wrap { background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; box-shadow: 0 24px 54px -34px rgba(22,24,26,.5); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 15.5px; }
.compare-table th { text-align: left; padding: 20px 26px; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); background: var(--cloud); border-bottom: 1px solid var(--line); }
.compare-table td { padding: 18px 26px; border-bottom: 1px solid var(--line); color: var(--slate); vertical-align: top; }
.compare-table td:first-child { color: var(--navy); font-weight: 600; }
.compare-table tr:last-child td { border-bottom: 0; }
.row-nv { background: linear-gradient(90deg, rgba(21,156,189,.06), rgba(87,191,148,.06)); }
.row-nv td { color: var(--navy); }
.nv-cell { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.nv-cell::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.compare-foot { text-align: center; margin: 28px auto 0; font-size: 18px; color: var(--slate); max-width: 640px; }
.compare-foot strong { color: var(--navy); }

/* ---------- Breakthroughs ---------- */
.break-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 26px 22px; box-shadow: 0 14px 34px -26px rgba(22,24,26,.5); display: flex; flex-direction: column; }
.break-brand { font-size: 20px; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 14px; }
.break-insight { margin: 0 0 14px; font-size: 14.5px; color: var(--navy); line-height: 1.5; font-weight: 500; }
.break-lesson { margin: auto 0 0; font-size: 13px; color: var(--slate); line-height: 1.5; padding-top: 14px; border-top: 1px solid var(--line); }
.break-foot { text-align: center; margin: 36px auto 0; font-size: 18px; color: var(--slate); }
.break-foot strong { color: var(--navy); }
.read-more { margin-top: 18px; align-self: flex-start; background: none; border: 0; padding: 0; cursor: pointer; font-family: inherit; font-size: 13.5px; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; transition: color .2s ease; }
.read-more span { transition: transform .2s ease; }
.read-more:hover { color: var(--navy); }
.read-more:hover span { transform: translateX(3px); }
.read-more:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 4px; }

/* ---------- Story modal ---------- */
.story-modal { border: 0; padding: 0; border-radius: 22px; max-width: 640px; width: calc(100% - 40px); background: #fff; color: var(--ink); box-shadow: 0 40px 100px -30px rgba(22,24,26,.6); }
.story-modal::backdrop { background: rgba(22,24,26,.55); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.story-modal[open] { animation: storyIn .32s var(--ease); }
.story-modal[open]::backdrop { animation: storyFade .32s ease; }
.story-inner { padding: 42px 42px 34px; position: relative; max-height: min(86vh, 780px); overflow-y: auto; border-radius: 22px; }
.story-close { position: absolute; top: 18px; right: 20px; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--slate); font-size: 22px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s ease, color .2s ease; }
.story-close:hover { background: var(--cloud); color: var(--navy); }
.story-eyebrow { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.story-title { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 700; letter-spacing: -.02em; color: var(--navy); margin: 12px 0 0; line-height: 1.1; }
.story-insight { margin: 16px 0 0; font-size: 18px; font-weight: 600; color: var(--navy); line-height: 1.4; }
.story-body { margin-top: 18px; display: flex; flex-direction: column; gap: 14px; }
.story-body p { margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--slate); }
.story-takeaway { margin-top: 26px; padding: 18px 22px; background: var(--cloud); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 14px; }
.story-takeaway-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.story-takeaway-text { margin: 6px 0 0; font-size: 15px; line-height: 1.5; color: var(--navy); font-weight: 500; }
.story-foot { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.story-dismiss { padding: 11px 22px; }
@keyframes storyIn { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes storyFade { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Use cases ---------- */
.use-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 30px 28px; box-shadow: 0 16px 38px -28px rgba(22,24,26,.5); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.use-card:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -28px rgba(22,24,26,.5); }
.use-icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 13px; background: rgba(21,156,189,.1); color: var(--accent); margin-bottom: 18px; }
.use-icon svg { width: 24px; height: 24px; }
.use-card h3 { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.use-card p { margin: 0; font-size: 14.5px; color: var(--slate); line-height: 1.55; }

/* ---------- Deliverables ---------- */
.deliver-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.deliver-copy .section-title { margin-top: 0; }
.deliver-copy .btn { margin-top: 30px; }
.deliver-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.deliver-list li { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 15px 18px 15px 44px; font-size: 14.5px; font-weight: 500; color: var(--navy); box-shadow: 0 10px 24px -20px rgba(22,24,26,.5); }
.deliver-list li::before { content: ""; position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; border-radius: 50%; background: rgba(87,191,148,.16); }
.deliver-list li::after { content: ""; position: absolute; left: 21px; top: 50%; width: 5px; height: 9px; border: solid var(--green); border-width: 0 2px 2px 0; transform: translateY(-60%) rotate(45deg); }

/* ---------- Difference ---------- */
.diff-item { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px 26px; box-shadow: 0 14px 34px -28px rgba(22,24,26,.5); }
.diff-num { font-size: 13px; font-weight: 700; letter-spacing: .1em; color: var(--sky); }
.diff-item h3 { font-size: 18px; font-weight: 600; color: var(--navy); margin: 12px 0 9px; }
.diff-item p { margin: 0; font-size: 14.5px; color: var(--slate); line-height: 1.55; }

/* ---------- Stagwell ---------- */
.stagwell { background:
  radial-gradient(80% 60% at 85% 12%, rgba(87,191,148,.18), transparent 55%),
  radial-gradient(70% 60% at 8% 100%, rgba(21,156,189,.14), transparent 60%),
  #16181A; color: #fff; }
.stagwell-inner { max-width: 880px; text-align: center; }
.stagwell-lead { margin: 22px auto 0; max-width: 720px; font-size: 18px; line-height: 1.65; color: #AEB4B9; }
.stagwell-stats { display: flex; justify-content: center; gap: 56px; margin: 50px 0; flex-wrap: wrap; }
.sw-num { font-size: clamp(2.6rem,4vw,3.6rem); font-weight: 700; letter-spacing: -0.03em; color: #fff; line-height: 1; background: linear-gradient(180deg,#fff, #8FD9C0); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.sw-label { margin-top: 8px; font-size: 14px; letter-spacing: .04em; color: var(--sky); text-transform: uppercase; font-weight: 600; }
.stagwell-foot { max-width: 640px; margin: 0 auto; font-size: 17px; line-height: 1.6; color: #EDF0F0; font-weight: 500; }

/* ---------- Stagwell clients marquee ---------- */
.clients-band { margin-top: 68px; padding-top: 52px; border-top: 1px solid rgba(255,255,255,.12); }
.clients-head { display: flex; align-items: baseline; justify-content: center; gap: 14px; margin-bottom: 40px; }
.clients-logo { font-size: clamp(2rem, 3.4vw, 3rem); font-weight: 700; letter-spacing: -0.03em; color: #fff; line-height: 1; }
.clients-sub { font-size: clamp(1.05rem, 1.7vw, 1.4rem); font-weight: 500; letter-spacing: .01em; color: var(--sky); }

.logo-wall { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.logo-track { display: flex; width: max-content; animation: nvMarquee 46s linear infinite; }
.logo-wall:hover .logo-track { animation-play-state: paused; }
.logo-set { display: flex; align-items: center; gap: 80px; padding-right: 80px; }
.cl { flex: none; display: inline-flex; align-items: center; height: 76px; }
.cl img { height: 60px; width: auto; filter: brightness(0) invert(1); opacity: .8; transition: opacity .25s ease; }
.cl:hover img { opacity: 1; }
.cl-text { font-size: 46px; font-weight: 600; color: #fff; opacity: .8; white-space: nowrap; letter-spacing: .005em; transition: opacity .25s ease; }
.cl-text:hover { opacity: 1; }
.cl-serif { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; text-transform: uppercase; letter-spacing: .12em; font-size: 36px; }
.cl-nfl { font-weight: 800; letter-spacing: .04em; font-size: 50px; }

@keyframes nvMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-track.static { animation: none; width: auto; }
.logo-track.static .logo-set { flex-wrap: wrap; justify-content: center; gap: 28px 48px; padding-right: 0; }

/* ---------- Demo ---------- */
.demo { background: var(--cloud); }
.demo-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.demo-copy { position: sticky; top: 110px; }
.demo-copy .section-title { margin-top: 0; }
.demo-points { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.demo-points li { position: relative; padding-left: 30px; font-size: 15.5px; color: var(--navy); font-weight: 500; }
.demo-points li::before { content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 16px; border-radius: 50%; background: rgba(21,156,189,.14); }
.demo-points li::after { content: ""; position: absolute; left: 5px; top: 10px; width: 5px; height: 9px; border: solid var(--accent); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.demo-widget { background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; box-shadow: 0 30px 70px -36px rgba(22,24,26,.5); min-height: 700px; }
.calendly-inline-widget { min-width: 320px; height: 700px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #AEB4B9; padding-top: 72px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 2.4fr; gap: 56px; padding-bottom: 56px; }
.footer-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.footer-logo { display: inline-flex; align-items: center; }
.footer-logo img { height: 36px; width: auto; display: block; }
.footer-tag { margin: 20px 0 0; max-width: 320px; font-size: 14.5px; line-height: 1.6; color: #9AA0A6; }
.footer-stagwell { margin: 14px 0 0; font-size: 13px; letter-spacing: .04em; color: var(--sky); font-weight: 600; }
.footer-col h4 { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 16px; font-weight: 600; }
.footer-col a:not(.btn) { display: block; text-decoration: none; color: #9AA0A6; font-size: 14.5px; padding: 6px 0; transition: color .2s ease; }
.footer-col a:not(.btn):hover { color: #fff; }
.footer-cta-col .btn { margin-top: 4px; background: var(--sky); color: #06301F; box-shadow: none; }
.footer-cta-col .btn:hover { background: #6FCBA4; transform: translateY(-1px); box-shadow: 0 10px 22px -8px rgba(87,191,148,.5); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; padding-bottom: 28px; font-size: 13px; color: #7E848A; flex-wrap: wrap; }
.footer-bottom-inner > span:first-child { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 12px; letter-spacing: .01em; }
.footer-mini { font-style: italic; color: var(--sky); }

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

@keyframes nvFadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes nvFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes nvPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.7); } }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .grid-5 { grid-template-columns: repeat(3,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 960px) {
  :root { --pad: 28px; }
  .nav-toggle { display: flex; }
  .nav-logo img { height: 34px; }
  .nav-menu {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(255,255,255,.98); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line); padding: 10px 28px 24px;
    transform: translateY(-130%); transition: transform .35s var(--ease); box-shadow: 0 24px 40px -24px rgba(22,24,26,.4);
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links a { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nv-link::after { display: none; }
  .btn-nav { margin-top: 18px; justify-content: center; }

  .hero { grid-template-columns: 1fr; gap: 40px; padding: 56px var(--pad) 48px; }
  .hero-visual { height: 460px; }
  .hero-sub { max-width: none; }
  .why-grid, .deliver-grid, .demo-grid { grid-template-columns: 1fr; gap: 40px; }
  .demo-copy { position: static; }
  .convo-card-2 { margin-left: 0; }
  .stat-band-inner { gap: 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 76px 0; }
}
@media (max-width: 680px) {
  .grid-3, .grid-4, .grid-5, .steps { grid-template-columns: 1fr; }
  .stat-band-inner { grid-template-columns: 1fr; }
  .stat-divider { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 24px; }
  .deliver-list { grid-template-columns: 1fr; }
  .logo-set { gap: 60px; padding-right: 60px; }
  .cl { height: 64px; }
  .cl img { height: 50px; }
  .cl-text { font-size: 38px; }
  .cl-nfl { font-size: 42px; }
  .cl-serif { font-size: 32px; }
  .framing-bar { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px 40px; }
  .stagwell-stats { gap: 36px; }

  /* responsive comparison table -> stacked cards */
  .compare-table thead { display: none; }
  .compare-table, .compare-table tbody, .compare-table tr, .compare-table td { display: block; width: 100%; }
  .compare-table tr { border-bottom: 1px solid var(--line); padding: 8px 0; }
  .compare-table tr:last-child { border-bottom: 0; }
  .compare-table td { border: 0; padding: 8px 22px; }
  .compare-table td::before { content: attr(data-label); display: block; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .pulse-dot, .float-card, .eyebrow-pill .pulse-dot, .logo-track { animation: none !important; }
  .story-modal[open], .story-modal[open]::backdrop { animation: none !important; }
  .btn, .use-card, .read-more span { transition: none; }
}
