/* ============================================================
   ELEMENTS SITE V2 — "brand board" direction
   Built on v2-tokens.css (Elements Design System).
   Cream paper, wall of big rounded colour cards, Inter only.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--fg1); font-family: var(--font-sans); letter-spacing: var(--track-body);
  background-color: var(--cream);
  background-image: linear-gradient(180deg, var(--lime) 0%, var(--cream) 100%);
  background-repeat: no-repeat;
  background-size: 100% 1120px;
}
@media (max-width: 880px) { body { background-size: 100% 1500px; } }
::selection { background: var(--lime); color: var(--ink); }
img { display: block; }

.v2 { padding: clamp(14px, 3vw, 30px) clamp(16px, 4vw, 44px) 0; }
.v2 main { display: block; max-width: 1320px; margin: 0 auto; }

/* ---------- Nav ---------- */
.v2-nav {
  position: sticky; top: 14px; z-index: 50;
  max-width: 1320px; margin: 0 auto 22px;
  display: flex; align-items: center; gap: 28px;
  background: var(--cream); border-radius: var(--r-pill);
  box-shadow: var(--shadow-md); padding: 12px 14px 12px 24px;
}
.v2-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.v2-brand .e-mark { width: 22px; height: 22px; color: var(--ink); }
.v2-brand .e-wordmark { font-size: 24px; }
.v2-nav nav { display: flex; gap: 4px; margin-left: auto; }
.v2-nav nav a {
  font-weight: 500; font-size: 14.5px; letter-spacing: -0.02em; color: var(--fg2);
  text-decoration: none; padding: 9px 14px; border-radius: var(--r-pill);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.v2-nav nav a:hover { background: var(--lime); color: var(--ink); }
@media (max-width: 880px) { .v2-nav nav { display: none; } }

/* ---------- Section base (full bleed on the gradient — no card chrome) ---------- */
.v2-card {
  background: transparent; border-radius: 0; box-shadow: none;
  padding: clamp(18px, 2.6vw, 40px) clamp(4px, 1.5vw, 24px);
  position: relative; overflow: visible;
}
.v2-card + .v2-card { padding-top: 0; }
/* Full-bleed colour bands (navy) are an exception: they keep internal top padding
   so content doesn't hug the colour edge, and the next section gets a real gap. */
.v2-card + .v2-sys { padding-top: clamp(18px, 2.6vw, 40px); }
.v2-sys + .v2-card { padding-top: clamp(18px, 2.6vw, 40px); }
.v2-card--outline { box-shadow: none; border: none; }
.v2-eyebrow { margin-bottom: 18px; }

/* ---------- Hero ---------- */
.v2-hero { display: flex; flex-direction: column; gap: clamp(22px, 3vw, 40px); padding-top: clamp(16px, 2.4vw, 32px); }
.v2-hero .e-hero { max-width: 15ch; margin: 0; }
.v2-hero .e-lead { max-width: 56ch; margin: 28px 0 0; }
.v2-hero-trust { margin: 22px 0 0; font-size: var(--fs-small); font-weight: 600; color: var(--fg2); letter-spacing: var(--track-body); }
.v2-hero .v2-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }

/* ---------- Logo marquee ---------- */
.v2-logos { display: flex; align-items: center; gap: 32px; padding-block: 12px; }
.v2-logos .e-small { white-space: nowrap; }
.v2-marquee { flex: 1; overflow: hidden; min-width: 0; -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.v2-marquee-track { display: flex; gap: 56px; align-items: center; width: max-content; animation: v2scroll 30s linear infinite; }
.v2-marquee:hover .v2-marquee-track { animation-play-state: paused; }
@keyframes v2scroll { to { transform: translateX(-50%); } }
.plogo { font-weight: 700; font-size: 21px; letter-spacing: -0.04em; color: var(--grey-500); white-space: nowrap; }
.plogo.caps { font-weight: 800; font-size: 18px; letter-spacing: 0.08em; }
.plogo.lite { font-weight: 500; font-size: 20px; letter-spacing: -0.02em; }
/* Neutral placeholder logo tiles — drop real partner logos in here later. */
.plogo-tile { flex: none; width: 120px; height: 34px; border-radius: var(--r-pill); background: var(--grey-200); opacity: .55; }
@media (max-width: 720px) { .v2-logos { flex-direction: column; align-items: flex-start; gap: 14px; } .v2-marquee { width: 100%; } }

/* ---------- Growth bar chart (0 / 1 / 10) ---------- */
.gx { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: clamp(18px, 2.4vw, 34px); align-items: stretch; }
.gx-chart { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 2vw, 24px); align-items: start; }
.gx-col { display: flex; flex-direction: column; min-width: 0; }
.gx-barwell { height: clamp(340px, 36vw, 480px); display: flex; align-items: flex-end; border-bottom: 1.5px solid var(--ink); }
.gx-bar { position: relative; width: 100%; height: var(--h); min-height: 200px; border-radius: var(--r-img) var(--r-img) 0 0; display: flex; flex-direction: column; padding: 22px; overflow: hidden; opacity: 0; transition: opacity .5s var(--ease); transition-delay: var(--bd, 0s); }
.gx.in .gx-bar { opacity: 1; }
/* Desktop chart: bars grow up from the axis as the section scrolls into view. */
@media (min-width: 881px) {
  .gx-bar { min-height: 0; transition: height .85s var(--ease), opacity .4s var(--ease); transition-delay: var(--bd, 0s); }
  .gx:not(.in) .gx-bar { height: 0; }
}
.gx-bar.peri { background: var(--periwinkle); }
.gx-bar.pink { background: var(--pink); }
.gx-bar.lime { background: var(--lime); }
.gx-num { flex: none; font-size: clamp(40px, 4vw, 60px); line-height: .8; letter-spacing: var(--track-display); }
/* Quote + attribution + CTA — hidden until hover/focus */
.gx-bar-reveal { display: flex; flex-direction: column; flex: 1 1 auto; margin-top: 18px; }
.gx-bar-quote { margin: 0; max-width: 40ch; font-weight: 500; font-size: clamp(15px, 1.3vw, 18px); line-height: 1.32; letter-spacing: -0.01em; color: var(--ink); text-wrap: pretty; }
/* Placeholder copy, e.g. "[Client quote to be supplied]" — never mistaken for the real thing. */
.gx-bar-quote.is-todo { font-style: italic; font-weight: 400; opacity: 0.65; }
.gx-bar-foot { margin-top: auto; padding-top: 16px; display: flex; flex-direction: column; gap: 8px; opacity: 0; transform: translateY(6px); transition: opacity .25s var(--ease), transform .25s var(--ease); }
.gx-bar-cite { font-size: var(--fs-small); color: var(--ink); opacity: .78; }
.gx-bar-cite strong { font-weight: 700; opacity: 1; }
.gx-bar-logo { height: 24px; width: auto; max-width: 150px; object-fit: contain; opacity: 1; }
.gx-col h3 { font-weight: 600; font-size: clamp(16px, 1.6vw, 22px); letter-spacing: var(--track-display); margin: 16px 0 6px; }
.gx-col p { font-size: var(--fs-small); line-height: 1.5; color: var(--fg2); margin: 0; }
@media (max-width: 880px) {
  .gx { grid-template-columns: 1fr; }
  .gx-chart { grid-template-columns: 1fr; gap: 14px; align-items: stretch; }
  .gx-barwell { height: auto; border-bottom: none; }
  .gx-bar { height: auto; min-height: 0; border-radius: var(--r-img); }
}
@media (prefers-reduced-motion: reduce) { .gx-bar { opacity: 1 !important; transition: none !important; } }
@media (prefers-reduced-motion: reduce) and (min-width: 881px) { .gx:not(.in) .gx-bar { height: var(--h); } }

/* ---------- Stage trio (0 / 1 / 10) ---------- */
.v2-stages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 880px) { .v2-stages { grid-template-columns: 1fr; } }
.v2-stage { border-radius: var(--r-card-lg); padding: clamp(28px, 3vw, 44px); box-shadow: var(--shadow-md); display: flex; flex-direction: column; min-height: 320px; }
.v2-stage.peri { background: var(--periwinkle); }
.v2-stage.pink { background: var(--pink); }
.v2-stage.lime { background: var(--lime); }
.v2-stage .e-stat { margin: 0 0 auto; }
.v2-stage h3 { font-weight: 600; font-size: 22px; letter-spacing: var(--track-display); margin: 28px 0 8px; }
.v2-stage p { font-size: var(--fs-small); line-height: 1.5; color: var(--fg2); margin: 0; }

/* ---------- Services blocks ---------- */
.v2-svc-head { max-width: 60ch; }
.v2-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: clamp(16px, 2vw, 28px);  grid-auto-rows: 1fr; }
@media (max-width: 880px) { .v2-svc-grid { grid-template-columns: repeat(2, 1fr); } }
.v2-svcb { border-radius: var(--r-card); padding: 24px 24px 28px; color: var(--ink); }
.v2-svcb.lime { background: var(--lime); }
.v2-svcb.pink { background: var(--pink); }
.v2-svcb.peri { background: var(--periwinkle); }
.v2-svcb.navy { background: var(--navy); color: var(--on-dark); }
.v2-svcb.coral { background: var(--coral); color: var(--cream); }
.v2-svcb.ink { background: var(--ink); color: var(--on-dark); }
.v2-svcb h3 { font-weight: 600; font-size: 21px; letter-spacing: var(--track-display); margin: 0 0 8px; }
.v2-svcb p { font-size: var(--fs-small); line-height: 1.5; margin: 0; opacity: .82; }
.v2-svcb-a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.v2-svcb-a:hover { opacity: .8; }
/* Mobile: swipe through one block at a time instead of stacking */
@media (max-width: 640px) {
  .v2-svc-grid { display: flex; grid-template-columns: none; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 6px; scroll-padding-left: 0; }
  .v2-svc-grid::-webkit-scrollbar { display: none; }
  .v2-svcb { flex: 0 0 86%; scroll-snap-align: start; }
}

/* ---------- Systems (navy) ---------- */
.v2-sys { background: var(--navy); color: var(--on-dark); }
.v2-sys .e-h1, .v2-sys .e-eyebrow { color: var(--on-dark); }
.v2-sys .e-lead { color: var(--on-dark); opacity: .85; max-width: 56ch; }
/* AI building blocks + deep-work payoff */
.v2-build { display: grid; grid-template-columns: 1fr; gap: clamp(14px, 1.8vw, 22px); margin-top: clamp(16px, 2vw, 28px); }
/* Tool boxes sit three-across under the focus block. */
.v2-build-stack { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; align-items: stretch; }
@media (max-width: 880px) { .v2-build-stack { grid-template-columns: 1fr; } }
.v2-block { border-radius: var(--r-card); padding: 20px 24px; color: var(--ink); position: relative; overflow: hidden; }
.v2-block.lime { background: var(--lime); }
.v2-block.pink { background: var(--pink); }
.v2-block.peri { background: var(--periwinkle); }

.v2-block .blk-mark { position: absolute; right: 18px; top: 18px; width: 26px; height: 26px; color: var(--ink); opacity: .85; }
.v2-block .lbl { font-weight: 700; font-size: var(--fs-caption); letter-spacing: .08em; text-transform: uppercase; color: var(--fg2); }
.v2-block h3 { font-weight: 600; font-size: 24px; letter-spacing: var(--track-display); margin: 8px 0 6px; }
.v2-block p { font-size: var(--fs-small); line-height: 1.5; color: var(--fg2); margin: 0; max-width: 52ch; }
.v2-deep { background: var(--cream); border-radius: var(--r-card); padding: 28px 28px 32px; color: var(--ink); }
.v2-deep .lbl { font-weight: 700; font-size: var(--fs-caption); letter-spacing: .08em; text-transform: uppercase; color: var(--fg3); }
.v2-deep h3 { font-weight: 500; font-size: clamp(30px, 3vw, 42px); letter-spacing: var(--track-display); line-height: .95; margin: 10px 0 18px; }
.v2-deep ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 clamp(20px, 3vw, 44px); }
@media (max-width: 880px) { .v2-deep ul { grid-template-columns: 1fr; } }
.v2-deep li { display: block; padding: 16px 0 0; border-top: 1px solid var(--hairline); }
.v2-deep-h { display: block; font-weight: 600; font-size: 18px; letter-spacing: var(--track-display); line-height: 1.25; }
.v2-deep-t { display: block; margin-top: 6px; font-size: var(--fs-small); line-height: 1.5; color: var(--fg2); }
.v2-sys-stats { display: flex; gap: 40px; flex-wrap: wrap; margin-top: clamp(16px, 2vw, 28px); padding-top: 26px; border-top: 1px solid rgba(255,254,243,.2); }
.v2-sys-stats .num { font-weight: 500; font-size: clamp(44px, 5vw, 72px); letter-spacing: var(--track-display); line-height: .9; color: var(--lime); }
.v2-sys-stats .cap { font-size: var(--fs-small); color: var(--on-dark); opacity: .75; margin-top: 8px; }

/* ---------- Case studies ---------- */
.v2-cases { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: clamp(16px, 2vw, 28px); }
@media (max-width: 820px) { .v2-cases { grid-template-columns: 1fr; } }
.v2-case { background: var(--cream); border: var(--border-ink); border-radius: var(--r-card); padding: 16px 16px 24px; display: flex; flex-direction: column; }
.v2-case .img-slot { width: 100%; aspect-ratio: 16 / 10; }
.v2-case .lbl { font-weight: 700; font-size: var(--fs-caption); letter-spacing: .08em; text-transform: uppercase; color: var(--fg3); margin: 18px 8px 0; }
.v2-case h3 { font-weight: 600; font-size: clamp(20px, 2vw, 26px); letter-spacing: var(--track-display); line-height: 1.1; margin: 8px 8px 14px; }
/* Chip + link pin to the card bottom so all cards align despite title length. */
.v2-case .stat { margin: auto 8px 18px; }
.v2-case .stat .e-chip { font-size: clamp(15px, 1.5vw, 19px); }
.v2-case .e-link { align-self: flex-start; margin: auto 8px 0; }
.v2-case .stat + .e-link { margin-top: 0; }

/* ---------- How we work ---------- */
.v2-steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: clamp(16px, 2vw, 28px); }
.v2-step { position: relative; }
/* Growing lime accent under each number — visualises compounding across the 4 stages. */
.v2-step .no { position: relative; display: inline-block; padding-bottom: 12px; }
.v2-step .no::after { content: ""; position: absolute; left: 0; bottom: 0; height: 5px; border-radius: 3px; background: var(--lime); }
.v2-steps .v2-step:nth-child(1) .no::after { width: 32%; }
.v2-steps .v2-step:nth-child(2) .no::after { width: 56%; }
.v2-steps .v2-step:nth-child(3) .no::after { width: 80%; }
.v2-steps .v2-step:nth-child(4) .no::after { width: 100%; }
@media (min-width: 1081px) {
  .v2-step:not(:last-child)::after { content: "→"; position: absolute; right: -16px; top: 40px; transform: translateX(50%); font-size: 24px; line-height: 1; color: var(--ink); opacity: .55; z-index: 2; }
}
@media (max-width: 1080px) { .v2-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .v2-steps { grid-template-columns: 1fr; } }
.v2-step { border: var(--border-ink); border-radius: var(--r-card); padding: 24px 24px 28px; background: var(--cream); display: flex; flex-direction: column; min-height: 250px; transition: background var(--dur) var(--ease); }
.v2-step:hover { background: var(--lime); }
.v2-step .no { font-weight: 500; font-size: 44px; letter-spacing: var(--track-display); line-height: .9; }
.v2-step h3 { font-weight: 600; font-size: 20px; letter-spacing: var(--track-display); margin: 22px 0 8px; padding-top: 0; }
.v2-step p { font-size: var(--fs-small); line-height: 1.5; color: var(--fg2); margin: 0; }

/* ---------- Creative ---------- */
.v2-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: clamp(32px, 3.4vw, 52px); }
.v2-tab { font-family: var(--font-sans); font-weight: 700; font-size: 14px; letter-spacing: -0.02em; padding: 10px 19px; border-radius: var(--r-link); border: none; cursor: pointer; background: var(--cream); color: var(--ink); border: 1px solid var(--ink); transition: filter var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease); }
.v2-tab:hover { filter: brightness(0.96); }
.v2-tab:active { transform: scale(0.97); }
.v2-tab.on { background: var(--ink); color: var(--cream); }
.v2-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 18px; animation: v2in .45s var(--ease); }
@media (max-width: 820px) { .v2-gallery { grid-template-columns: repeat(2, 1fr); } }
.v2-gallery .img-slot { width: 100%; aspect-ratio: 4 / 5; }
.v2-gallery.tall .img-slot { aspect-ratio: 9 / 16; }

/* ---------- Image placeholder slots (no live imagery yet) ---------- */
.img-slot {
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: var(--grey-200); border-radius: var(--r-img);
  background-image: repeating-linear-gradient(45deg, rgba(7,5,8,0.025) 0 14px, transparent 14px 28px);
}
/* Direct child only: the empty-slot caption. A slot holding real content (a
   lockup, say) brings its own type and must not inherit this. */
.img-slot > span {
  font-family: var(--font-sans); font-weight: 600; font-size: var(--fs-caption);
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey-500); padding: 12px;
}
/* Filled slots (real uploaded imagery) */
.img-slot.has-img { background: none; background-image: none; padding: 0; }
.img-slot.has-img img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-img); display: block; }
.img-slot.has-img video { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-img); display: block; }

/* Real partner logos in the marquee — capped height, sit alongside text wordmarks */
.plogo-img { flex: none; height: 30px; display: inline-flex; align-items: center; }
.plogo-img img { height: 100%; width: auto; max-width: 150px; object-fit: contain; }

/* ---------- CTA ---------- */
.v2-cta { background: transparent; text-align: center; padding-block: clamp(56px, 7vw, 104px); }
.v2-cta .e-hero { max-width: 14ch; margin: 0 auto; }
.v2-cta .e-lead { max-width: 46ch; margin: 24px auto 0; }
.v2-cta .v2-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* ---------- Footer ---------- */
.v2-foot { background: var(--ink); color: var(--on-dark); border-radius: var(--r-card-lg); padding: clamp(28px, 4vw, 56px); }
.v2-foot .top { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.v2-foot .v2-brand .e-mark { color: var(--cream); }
.v2-foot .v2-brand .e-wordmark { color: var(--cream); font-size: 28px; }
.v2-foot nav { display: flex; gap: 8px; flex-wrap: wrap; }
.v2-foot .base { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,254,243,.18); font-size: var(--fs-caption); color: rgba(255,254,243,.6); }

/* ---------- Reveal motion (calm) ---------- */
[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-d="1"] { transition-delay: .07s; }
[data-reveal][data-d="2"] { transition-delay: .14s; }
[data-reveal][data-d="3"] { transition-delay: .21s; }
@keyframes v2in { from { opacity: 0; transform: translateY(12px); } }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .v2-gallery { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Nav active state ---------- */
.v2-nav nav a[aria-current="page"] { background: var(--lime); color: var(--ink); }

/* ---------- Hero with showreel ---------- */
.v2-hero--reel .e-hero { max-width: 15ch; margin: 0; }
.v2-hero--reel .e-lead { max-width: 44ch; margin: 0; }
/* CTAs beside the headline / subheader */
.v2-hero-top { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(28px, 5vw, 76px); align-items: center; }
.v2-hero-copy { min-width: 0; }
.v2-hero-side { display: flex; flex-direction: column; align-items: flex-start; gap: 26px; min-width: 0; }
.v2-hero-side .v2-hero-trust { margin: 0; }
.v2-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 880px) {
  .v2-hero-top { grid-template-columns: 1fr; gap: 30px; }
  .v2-hero-side { gap: 22px; }
}

/* Showreel — full-width 16:9 across the hero, below the copy */
.v2-reel { position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--r-card); overflow: hidden; background: var(--ink); box-shadow: var(--shadow-lg); text-decoration: none; }
/* No video yet: render as a slimmer cinematic strip so the empty box isn't a void. */
.v2-reel--empty { aspect-ratio: auto; height: clamp(280px, 38vh, 440px); }
.v2-reel-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.v2-reel-ph { position: absolute; inset: 0; display: flex; align-items: flex-start; justify-content: center; padding-top: 20px; color: rgba(255,254,243,.5); font-weight: 700; font-size: var(--fs-caption); letter-spacing: .14em; text-transform: uppercase; background: repeating-linear-gradient(45deg, rgba(255,254,243,.045) 0 16px, transparent 16px 32px); }
.v2-reel-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; border-radius: 50%; background: var(--lime); transition: filter var(--dur) var(--ease), transform var(--dur) var(--ease); }
.v2-reel-play::after { content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%, -50%); border-style: solid; border-width: 11px 0 11px 18px; border-color: transparent transparent transparent var(--ink); }
.v2-reel-label { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px; color: var(--cream); font-weight: 700; font-size: 14px; letter-spacing: -.02em; background: linear-gradient(0deg, rgba(7,5,8,.72), transparent); }
.v2-reel:hover .v2-reel-play { filter: brightness(.96); transform: translate(-50%, -50%) scale(1.05); }

/* Video state: pause/play toggle + CTA pill, bottom-left (no full-card link). */
.v2-reel-bar { position: absolute; left: clamp(14px, 2.5vw, 26px); bottom: clamp(14px, 2.5vw, 26px); display: flex; align-items: stretch; gap: 10px; }
.v2-reel-toggle { display: grid; place-items: center; width: 54px; border: none; border-radius: var(--r-pill); background: var(--cream); color: var(--ink); cursor: pointer; box-shadow: var(--shadow-md); transition: transform var(--dur) var(--ease), filter var(--dur) var(--ease); }
.v2-reel-toggle svg { width: 15px; height: 15px; fill: currentColor; }
.v2-reel-toggle .i-pause { display: none; }
.v2-reel-toggle.playing .i-play { display: none; }
.v2-reel-toggle.playing .i-pause { display: block; }
.v2-reel-toggle:hover { filter: brightness(.96); }
.v2-reel-toggle:active { transform: scale(.97); }
.v2-reel-cta { font-weight: 700; font-size: 15px; padding: 14px 22px; }
@media (max-width: 560px) {
  .v2-reel-toggle { width: 46px; }
  .v2-reel-cta { padding: 12px 16px; font-size: 14px; }
}

/* ---------- Page headers (subpages) ---------- */
.v2-pagehead { background: transparent; }
.v2-pagehead .e-hero { max-width: 20ch; margin: 0; }
.v2-pagehead .e-lead { max-width: 62ch; margin: 16px 0 0; }
.v2-back { margin-bottom: 22px; }

/* ---------- Graph bar as case-study link ---------- */
.gx-bar--link { cursor: pointer; text-decoration: none; color: inherit; }
.gx-bar--link::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 0 var(--ink); transition: box-shadow var(--dur) var(--ease); pointer-events: none; }
.gx-bar--link:hover::after, .gx-bar--link:focus-visible::after { box-shadow: inset 0 0 0 2.5px var(--ink); }
/* Logo/name + case-study CTA reveal on hover/focus; the quote stays visible. */
.gx-bar--link:hover .gx-bar-foot, .gx-bar--link:focus-visible .gx-bar-foot { opacity: 1; transform: none; }
.gx-bar-cue { font-weight: 700; font-size: 13px; letter-spacing: -0.02em; color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.gx-bar:not(.gx-bar--link) .gx-bar-cue { text-decoration: none; opacity: .7; font-weight: 600; }
/* On touch (no hover) the logo/CTA can't be revealed on hover, so show them. */
@media (hover: none) { .gx-bar-foot { opacity: 1 !important; transform: none !important; } }

/* ---------- Stage testimonials (below the graph) ---------- */
.gx-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: clamp(28px, 3.5vw, 48px); }
@media (max-width: 880px) { .gx-quotes { grid-template-columns: 1fr; } }
.gx-quote { margin: 0; display: flex; flex-direction: column; gap: 16px; padding: 26px 24px 22px; border: var(--border-ink); border-radius: var(--r-card); background: var(--cream); }
.gx-quote-tag { display: inline-flex; align-items: center; justify-content: center; align-self: flex-start; min-width: 34px; height: 34px; padding: 0 11px; border-radius: var(--r-pill); border: 1px solid var(--ink); font-family: var(--font-display); font-weight: 500; font-size: 17px; letter-spacing: -0.02em; color: var(--ink); }
.gx-quote.peri .gx-quote-tag { background: var(--periwinkle); }
.gx-quote.pink .gx-quote-tag { background: var(--pink); }
.gx-quote.lime .gx-quote-tag { background: var(--lime); }
.gx-quote blockquote { margin: 0; font-weight: 500; font-size: clamp(17px, 1.5vw, 20px); line-height: 1.32; letter-spacing: -0.01em; color: var(--fg1); text-wrap: pretty; }
.gx-quote figcaption { margin-top: auto; font-size: var(--fs-small); color: var(--fg2); }
.gx-quote figcaption strong { font-weight: 700; color: var(--fg1); }
.gx-quote-link { display: inline-flex; align-self: flex-start; font-weight: 700; font-size: var(--fs-small); letter-spacing: -0.02em; color: var(--ink); text-decoration: none; border-bottom: 1.5px solid var(--ink); padding-bottom: 1px; transition: opacity var(--dur) var(--ease); }
.gx-quote-link:hover { opacity: 0.6; }

/* ---------- What-we-do footer link ---------- */
.v2-svc-foot { margin-top: clamp(24px, 3vw, 40px); }

/* ---------- Case studies index cards (links) ---------- */
.v2-cases--index { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .v2-cases--index { grid-template-columns: 1fr; } }
.v2-case--link { text-decoration: none; color: inherit; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.v2-case--link:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
/* A study whose page isn't public yet: same card, no hover, no pointer. */
.v2-case--soon { opacity: .82; }
.v2-case--soon .e-link--muted { cursor: default; }
.v2-case .img-slot { position: relative; }
/* ---------- Case-study stage lockup ----------
   elements + client, on the colour that stage uses in the growth chart.
   Every measure is a multiple of --u, so the lockup rescales as one object. */
.img-slot.has-lock { background: none; background-image: none; padding: 0; border: none; }
.cs-lock {
  --u: clamp(15px, 2.1vw, 21px);
  width: 100%; height: 100%; border-radius: var(--r-img);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: calc(var(--u) * 0.55); padding: calc(var(--u) * 1.2); color: var(--ink);
}
.cs-lock.peri { background: var(--periwinkle); }
.cs-lock.pink { background: var(--pink); }
.cs-lock.lime { background: var(--lime); }
.cs-lock-row { display: flex; align-items: center; justify-content: center; gap: calc(var(--u) * 0.9); }
.cs-lock-brand { display: inline-flex; align-items: center; gap: calc(var(--u) * 0.32); }
.cs-lock-brand .e-mark { width: calc(var(--u) * 0.92); height: calc(var(--u) * 0.92); color: var(--ink); }
.cs-lock-brand .e-wordmark { font-size: calc(var(--u) * 1.16); font-weight: 800; line-height: 1; }
.cs-lock-icon { width: calc(var(--u) * 0.62); height: calc(var(--u) * 0.62); flex: none; opacity: .8; }
/* Capping width as well as height lets a long thin wordmark land smaller on its
   own, so logos match on optical weight without a per-client rule. */
.cs-lock-logo {
  height: auto; max-height: calc(var(--u) * 1.02); max-width: calc(var(--u) * 5.6);
  width: auto; object-fit: contain;
}
.cs-lock-name { font-weight: 700; font-size: calc(var(--u) * 0.9); letter-spacing: -0.03em; }
.cs-lock-cap {
  font-size: calc(var(--u) * 0.31); font-weight: 800; letter-spacing: 0.13em;
  text-transform: uppercase; opacity: .72; text-align: center;
}

.v2-case .cs-stage { position: absolute; top: 12px; left: 12px; display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 11px; border-radius: var(--r-pill); background: var(--ink); color: var(--cream); font-weight: 700; font-size: 16px; letter-spacing: -0.02em; text-transform: none; }

/* Case-study body: copy left, creative example to the right (sticky on desktop). */
.v2-case-layout { display: grid; grid-template-columns: 1fr minmax(260px, 360px); gap: clamp(24px, 4vw, 64px); align-items: start; }
.v2-case-example { display: flex; flex-direction: column; align-items: center; gap: 14px; position: sticky; top: 92px; }
.v2-case-example .img-slot { width: 100%; aspect-ratio: 9 / 16; }
.cs-ex-cap { margin: 0; color: var(--fg3); }
@media (max-width: 900px) {
  .v2-case-layout { grid-template-columns: 1fr; }
  .v2-case-example { position: static; width: min(420px, 100%); margin: 0 auto; }
}

/* ---------- Case study page ---------- */
.v2-case-img .img-slot { width: 100%; aspect-ratio: 16 / 9; }
.v2-prose h2 { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-h2); letter-spacing: var(--track-display); line-height: 1; margin: 32px 0 14px; color: var(--fg1); }
.v2-prose h2:first-child { margin-top: 0; }
.v2-prose p { font-size: var(--fs-lead); line-height: var(--leading-body); color: var(--fg2); margin: 0 0 16px; max-width: 70ch; }
.v2-prose ul { margin: 0 0 20px; padding: 0; list-style: none; max-width: 70ch; }
.v2-prose li { position: relative; padding: 11px 0 11px 28px; border-top: 1px solid var(--hairline); font-size: 17px; color: var(--fg1); }
.v2-prose li::before { content: "→"; position: absolute; left: 0; font-weight: 700; }
.v2-prose blockquote { margin: 24px 0; padding: 16px 24px; border-left: 3px solid var(--ink); font-family: var(--font-display); font-weight: 500; font-size: clamp(20px, 2.2vw, 28px); letter-spacing: var(--track-display); line-height: 1.15; color: var(--fg1); }
.v2-prose strong { font-weight: 600; }
.v2-prose em { color: var(--fg3); font-style: italic; }

/* ---------- Free-creative form ---------- */
.cr-form { max-width: 760px; }
.cr-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .cr-grid { grid-template-columns: 1fr; } }
.cr-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.cr-field--full { margin-bottom: 0; }
.cr-field label { font-weight: 700; font-size: var(--fs-small); letter-spacing: -0.01em; color: var(--ink); }
.cr-field input, .cr-field select, .cr-field textarea {
  font-family: var(--font-sans); font-size: 16px; color: var(--ink); width: 100%;
  background: var(--cream); border: 1.5px solid var(--ink); border-radius: var(--r-img);
  padding: 13px 15px; transition: box-shadow var(--dur) var(--ease);
}
.cr-field input::placeholder, .cr-field textarea::placeholder { color: var(--grey-500); }
.cr-field textarea { resize: vertical; min-height: 118px; line-height: 1.45; }
.cr-field input:focus, .cr-field select:focus, .cr-field textarea:focus { outline: none; box-shadow: 0 0 0 3px var(--lime); }
.cr-field select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 42px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23070508" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
  background-repeat: no-repeat; background-position: right 14px center; }
.cr-prompts { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 14px; }
.cr-prompts-label { font-size: var(--fs-caption); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--fg3); margin-right: 2px; }
.cr-prompt { font-family: var(--font-sans); font-weight: 500; font-size: 13.5px; letter-spacing: -0.01em; color: var(--ink); background: var(--cream); border: 1px solid var(--ink); border-radius: var(--r-pill); padding: 8px 14px; cursor: pointer; transition: background var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.cr-prompt:hover { background: var(--lime); }
.cr-prompt.used { opacity: 0.4; }
.cr-submit { margin-top: 28px; }

/* Thank-you page */
.v2-thanks-mark { width: clamp(40px, 5vw, 56px); aspect-ratio: 1; color: var(--ink); display: block; margin-bottom: clamp(18px, 2.4vw, 30px); }
/* Thanks pages: proper rhythm between heading, lead and buttons (the
   36px cta-row margin is hero-scoped, so set one here). */
.v2-pagehead--thanks .e-lead { margin-top: 20px; }
.v2-pagehead--thanks .v2-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.v2-pagehead--thanks { padding-bottom: clamp(40px, 6vw, 90px); }

/* ---------- Meta Radar ---------- */
.rdr-updated { margin: 22px 0 0; font-size: var(--fs-small); font-weight: 600; color: var(--fg2); }
.rdr-list { list-style: none; margin: 0; padding: 0; border-top: 1.5px solid var(--ink); }
.rdr-item { padding: clamp(18px, 2.2vw, 26px) clamp(4px, 1vw, 12px); border-bottom: 1px solid var(--hairline); }
.rdr-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.rdr-src { font-size: var(--fs-caption); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--r-pill); border: 1px solid var(--ink); }
.rdr-src--official { background: var(--lime); color: var(--ink); }
.rdr-src--expert { background: var(--pink); color: var(--ink); }
.rdr-src--industry { background: var(--periwinkle); color: var(--ink); }
.rdr-src--social { background: var(--ink); color: var(--cream); }
.rdr-src--community { background: var(--coral); color: var(--cream); }
.rdr-date { font-size: var(--fs-small); color: var(--fg3); }
.rdr-title { display: inline-block; font-weight: 600; font-size: clamp(18px, 1.8vw, 23px); letter-spacing: var(--track-display); line-height: 1.22; color: var(--ink); text-decoration: none; }
.rdr-title:hover { text-decoration: underline; text-underline-offset: 3px; }
.rdr-title span { color: var(--fg3); font-weight: 500; }
.rdr-snippet { margin: 8px 0 0; font-size: var(--fs-small); line-height: 1.5; color: var(--fg2); max-width: 80ch; }
.rdr-foot { margin: 22px 0 0; }

/* One entry per day — a single cross-source summary, toggled open for that day's updates */
.rdr-days { list-style: none; margin: 0; padding: 0; border-top: 1.5px solid var(--ink); }
.rdr-day { border-bottom: 1px solid var(--hairline); }
.rdr-day-d > summary { list-style: none; cursor: pointer; display: flex; align-items: flex-start; gap: clamp(14px, 2vw, 28px); padding: clamp(22px, 2.6vw, 32px) clamp(4px, 1vw, 12px); transition: background 0.15s ease; }
.rdr-day-d > summary::-webkit-details-marker { display: none; }
.rdr-day-d > summary:hover { background: rgba(7, 5, 8, 0.03); }
.rdr-day-d > summary:focus-visible { outline: 2px solid var(--ink); outline-offset: -2px; }
.rdr-day-main { flex: 1 1 auto; min-width: 0; }
.rdr-day-date { display: block; font-weight: 600; font-size: clamp(22px, 2.2vw, 30px); letter-spacing: var(--track-display); line-height: 1.1; }
.rdr-day-summary { display: block; margin-top: 10px; font-size: var(--fs-small); line-height: 1.55; color: var(--fg2); max-width: 78ch; }
.rdr-day-cue { flex: 0 0 auto; display: flex; align-items: center; gap: 8px; padding-top: 6px; font-size: var(--fs-caption); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--fg3); white-space: nowrap; }
/* Scoped to the day's OWN summary — .rdr-story-d chevrons nest inside and must not also rotate. */
.rdr-day-d[open] > summary .rdr-chev { transform: rotate(180deg); }
.rdr-day-d .rdr-stories { border-top: 1px solid var(--hairline); margin: 0; padding: 0 clamp(4px, 1vw, 12px) clamp(10px, 1.6vw, 18px); }
.rdr-day-d .rdr-story:last-child { border-bottom: none; }
@media (max-width: 640px) {
  .rdr-day-d > summary { flex-direction: column; gap: 10px; }
  .rdr-day-cue { padding-top: 0; }
}

/* Archive — every day older than the recent few, behind one click. The feed
   keeps growing without the page growing with it. */
.rdr-archive { border-bottom: 1.5px solid var(--ink); }
.rdr-archive > summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: clamp(16px, 2vw, 22px) clamp(4px, 1vw, 12px);
  font-weight: 700; font-size: var(--fs-small); letter-spacing: var(--track-body);
  transition: background 0.15s ease;
}
.rdr-archive > summary::-webkit-details-marker { display: none; }
.rdr-archive > summary:hover { background: rgba(7, 5, 8, 0.03); }
.rdr-archive > summary:focus-visible { outline: 2px solid var(--ink); outline-offset: -2px; }
.rdr-archive-cue { display: flex; align-items: center; gap: 8px; font-size: var(--fs-caption); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--fg3); white-space: nowrap; }
.rdr-archive[open] > summary .rdr-chev { transform: rotate(180deg); }
.rdr-archive[open] > summary { border-bottom: 1px solid var(--hairline); }
/* The archive list already sits under the expander's own rule. */
.rdr-days--archive { border-top: none; }

/* Synthesised digest — one update per line, sources behind a toggle */
.rdr-stories { list-style: none; margin: 0; padding: 0; border-top: 1.5px solid var(--ink); counter-reset: rdr; }
.rdr-story { border-bottom: 1px solid var(--hairline); }
/* Flat story row — no inner toggle; sources link out directly via their chips. */
.rdr-story-row { display: block; padding: clamp(18px, 2.2vw, 26px) clamp(4px, 1vw, 12px); }
.rdr-story-srcs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
a.rdr-src { text-decoration: none; transition: filter var(--dur) var(--ease); }
a.rdr-src:hover { filter: brightness(.94); }
a.rdr-src:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.rdr-story-d > summary { list-style: none; cursor: pointer; display: flex; align-items: flex-start; gap: clamp(14px, 2vw, 28px); padding: clamp(18px, 2.2vw, 26px) clamp(4px, 1vw, 12px); transition: background 0.15s ease; }
.rdr-story-d > summary::-webkit-details-marker { display: none; }
.rdr-story-d > summary:hover { background: rgba(7, 5, 8, 0.03); }
.rdr-story-d > summary:focus-visible { outline: 2px solid var(--ink); outline-offset: -2px; }
.rdr-story-main { flex: 1 1 auto; min-width: 0; }
.rdr-story-top { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; }
.rdr-story-top .rdr-cat { margin-bottom: 0; }
.rdr-story-date { font-size: var(--fs-caption); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--fg3); }
.rdr-cat { display: inline-block; font-size: var(--fs-caption); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 10px; border-radius: var(--r-pill); border: 1px solid var(--ink); margin-bottom: 12px; }
.rdr-cat--news { background: var(--lime); color: var(--ink); }
.rdr-cat--tip { background: var(--periwinkle); color: var(--ink); }
.rdr-cat--insight { background: var(--pink); color: var(--ink); }
.rdr-cat--creative { background: var(--coral); color: var(--cream); }
.rdr-story-head { display: block; font-weight: 600; font-size: clamp(19px, 1.9vw, 24px); letter-spacing: var(--track-display); line-height: 1.24; color: var(--ink); }
.rdr-story-text { display: block; margin: 8px 0 0; font-size: var(--fs-small); line-height: 1.55; color: var(--fg2); max-width: 78ch; }
.rdr-story-cue { flex: 0 0 auto; display: flex; align-items: center; gap: 8px; padding-top: 4px; font-size: var(--fs-caption); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--fg3); white-space: nowrap; }
.rdr-chev { display: inline-block; transition: transform 0.2s ease; }
.rdr-story-d[open] .rdr-chev { transform: rotate(180deg); }
.rdr-srcs { list-style: none; margin: 0; padding: 0 clamp(4px, 1vw, 12px) clamp(20px, 2.4vw, 28px); display: grid; gap: 14px; }
.rdr-srcrow { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.rdr-srclink { font-weight: 600; font-size: var(--fs-small); line-height: 1.4; color: var(--ink); text-decoration: none; }
.rdr-srclink:hover { text-decoration: underline; text-underline-offset: 3px; }
.rdr-srclink span { color: var(--fg3); font-weight: 500; }
@media (max-width: 640px) {
  .rdr-story-d > summary { flex-direction: column; gap: 10px; }
  .rdr-story-cue { padding-top: 0; }
}

/* Internal radar-review page — rating controls */
.rvw-gate { display: flex; gap: 10px; flex-wrap: wrap; margin: 22px 0 0; max-width: 420px; }
.rvw-gate input { flex: 1 1 200px; min-width: 0; font-family: var(--font-sans); font-size: 16px; color: var(--ink); background: var(--cream); border: 1.5px solid var(--ink); border-radius: var(--r-pill); padding: 12px 18px; }
.rvw-gate input:focus { outline: none; box-shadow: 0 0 0 3px var(--ink); }
.rvw-list { border-top: 1.5px solid var(--ink); }
.rvw-item { padding: clamp(18px, 2.2vw, 26px) clamp(4px, 1vw, 12px); }
.rvw-story .rdr-story-top { margin-bottom: 12px; }
.rvw-controls { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.rvw-btn { cursor: pointer; font-size: 18px; line-height: 1; background: var(--cream); border: 1.5px solid var(--ink); border-radius: var(--r-pill); padding: 7px 12px; transition: background 0.12s ease, transform 0.12s ease; }
.rvw-btn:hover { transform: translateY(-1px); }
.rvw-up.is-on { background: var(--lime); }
.rvw-down.is-on { background: var(--coral); }
.rvw-tags { display: inline-flex; flex-wrap: wrap; gap: 6px; margin-left: 6px; }
.rvw-tag { cursor: pointer; font-family: var(--font-sans); font-size: var(--fs-caption); font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; color: var(--fg2); background: transparent; border: 1px solid var(--hairline); border-radius: var(--r-pill); padding: 6px 11px; transition: border-color 0.12s ease, color 0.12s ease; }
.rvw-tag:hover { border-color: var(--ink); color: var(--ink); }
.rvw-tag.is-on { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.rvw-done { font-size: var(--fs-caption); font-weight: 700; color: var(--fg3); margin-left: auto; white-space: nowrap; }

/* Digest capture — compact subscribe band at the top of the radar page */
.v2-card.rdr-sub { padding-block: clamp(26px, 3.2vw, 40px); }
.rdr-sub { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: clamp(20px, 3vw, 44px); border-top: 1.5px solid var(--ink); border-bottom: 1px solid var(--hairline); }
.rdr-sub-copy { flex: 1 1 300px; }
.rdr-sub-title { font-weight: 600; font-size: clamp(22px, 2.4vw, 32px); letter-spacing: var(--track-display); line-height: 1.12; margin: 10px 0 0; }
.rdr-sub-lead { margin: 8px 0 0; font-size: var(--fs-small); line-height: 1.5; color: var(--fg2); max-width: 50ch; }
.rdr-form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; max-width: 520px; margin: 30px auto 0; }
.rdr-form--inline { margin: 0; flex: 1 1 340px; }
@media (min-width: 721px) { .rdr-form--inline { justify-content: flex-end; } }
.rdr-form input[type="email"] { flex: 1 1 240px; min-width: 0; font-family: var(--font-sans); font-size: 16px; color: var(--ink); background: var(--cream); border: 1.5px solid var(--ink); border-radius: var(--r-pill); padding: 14px 20px; }
.rdr-form input[type="email"]::placeholder { color: var(--grey-500); }
.rdr-form input[type="email"]:focus { outline: none; box-shadow: 0 0 0 3px var(--ink); }
.rdr-form .e-btn { flex: 0 0 auto; }

/* ---------- Client quote (shared: how-we-work, reusable elsewhere) ---------- */
.v2-quote { max-width: 70ch; margin: clamp(22px, 3vw, 38px) 0 0; padding: clamp(20px, 2.6vw, 30px); background: var(--cream); border: var(--border-ink); border-radius: var(--r-card); }
.v2-quote-text { margin: 0; font-weight: 500; font-size: clamp(17px, 1.6vw, 22px); line-height: 1.32; letter-spacing: -0.01em; color: var(--ink); text-wrap: pretty; }
.v2-quote-cite { margin-top: 14px; font-size: var(--fs-small); color: var(--fg2); }
.v2-quote-logo { height: 24px; width: auto; max-width: 150px; object-fit: contain; }
/* Unfinished: reads as a placeholder at a glance, never as real copy. */
.v2-quote--todo { border-style: dashed; background: transparent; }
.v2-quote--todo .v2-quote-text { color: var(--fg3); font-style: italic; font-weight: 400; }
