/* ==========================================================================
   WHERE THIS GOES:  public/css/about-page.css     (NEW FILE)
   LOADED BY:        resources/views/frontend/pages/about/index.blade.php
                     via  @section('css') <link ... asset('css/about-page.css')>

   --------------------------------------------------------------------------
   WHY THIS IS HAND-WRITTEN CSS AND NOT TAILWIND
   The source design is a Tailwind v4 page. This app has `@tailwind` directives
   in resources/frontend/css/tailwind.css but NO tailwind.config.js and NO
   postcss.config.js — the directives pass through UNPROCESSED into the built
   CSS (you can see the raw text in public/build/assets/app.*.css). So Tailwind
   utility classes do nothing here. Every value below is therefore written out
   by hand, converted from the original utility classes.

   EVERYTHING IS SCOPED UNDER  .cwf-about
   The site loads Bootstrap 4.6 globally. Scoping means:
     - Bootstrap cannot restyle this page
     - this page cannot leak into any other page
   Never remove the .cwf-about prefix from a selector.

   NO BUILD STEP. Upload the file, hard-refresh, done.
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS
   Ported verbatim from the source app's `.theme-about` scope. These hex values
   are the contract — if you change one, the page stops matching the live site.
   ========================================================================== */

.cwf-about {
  /* -- About theme surface + ink ----------------------------------------- */
  --about-bg: #f7f9fb;
  --about-surface: #f7f9fb;
  --about-surface-lowest: #ffffff;
  --about-surface-low: #f2f4f6;
  --about-surface-container: #eceef0;
  --about-surface-high: #e6e8ea;
  --about-on-surface: #191c1e;          /* never pure black for text */
  --about-on-surface-variant: #44474d;
  --about-primary: #000000;
  --about-on-primary: #ffffff;
  --about-secondary: #006b5f;           /* the teal accent: kickers + CTAs */
  --about-on-secondary: #ffffff;
  --about-outline: #75777e;
  --about-outline-variant: #c5c6cd;

  /* -- The two intentionally dark blocks (AI banner, hero fan-card scrim) - */
  --about-dark: #0d1c32;
  --about-on-dark: #ffffff;
  --about-on-dark-muted: #76849f;

  /* -- Brand 4-colour. Used for small accents that cycle by index. -------- */
  --google-blue: #4285f4;
  --google-red: #ea4335;
  --google-yellow: #fbbc05;
  --google-green: #34a853;

  /* -- Deliberate literal exceptions (documented in the source) ----------- */
  --amber-text: #d97706;      /* google-yellow fails contrast AS TEXT; use this */
  --industry-ivory: #faf6ec;  /* industries marquee card background */
  --youtube-red: #ff0000;     /* YouTube brand red on the play icon */
  --fan-link-teal: #4fdbc8;   /* hero fan-card link label */

  /* -- Tailwind palette values the sections reference --------------------- */
  --blue-50:#eff6ff;  --blue-100:#dbeafe; --blue-400:#60a5fa; --blue-500:#3b82f6;
  --blue-600:#2563eb; --blue-700:#1d4ed8; --blue-900:#1e3a8a;
  --sky-50:#f0f9ff;   --sky-500:#0ea5e9;
  --red-50:#fef2f2;   --red-100:#fee2e2;  --red-200:#fecaca;  --red-500:#ef4444;  --red-600:#dc2626;
  --red-700:#b91c1c;  --red-900:#7f1d1d;
  --rose-50:#fff1f2;  --rose-500:#f43f5e;
  --amber-50:#fffbeb; --amber-100:#fef3c7;--amber-500:#f59e0b;--amber-600:#d97706;
  --amber-800:#92400e;--amber-900:#78350f;
  --yellow-50:#fefce8;--yellow-500:#eab308;
  --emerald-50:#ecfdf5;--emerald-100:#d1fae5;--emerald-500:#10b981;
  --emerald-600:#059669;--emerald-700:#047857;--emerald-900:#064e3b;
  --green-50:#f0fdf4; --green-500:#22c55e;
  --indigo-50:#eef2ff;--indigo-100:#e0e7ff;--indigo-500:#6366f1;
  --violet-50:#f5f3ff;--violet-500:#8b5cf6;
  --teal-50:#f0fdfa;  --orange-50:#fff7ed;
  --slate-50:#f8fafc; --slate-100:#f1f5f9;--slate-200:#e2e8f0;--slate-300:#cbd5e1;
  --slate-400:#94a3b8;--slate-500:#64748b;--slate-600:#475569;--slate-700:#334155;
  --slate-800:#1e293b;--slate-900:#0f172a;--slate-950:#020617;

  /* -- Elevation --------------------------------------------------------- */
  --shadow-card: 0 4px 20px -5px rgba(15, 23, 42, 0.05);
  --shadow-card-hover: 0 10px 30px -5px rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* -- Layout ------------------------------------------------------------ */
  --margin-mobile: 20px;
  --margin-desktop: 64px;
  --max-content: 1280px;

  /* -- Radii ------------------------------------------------------------- */
  --r-lg: 0.5rem; --r-xl: 0.75rem; --r-2xl: 1rem;
  --r-3xl: 1.5rem; --r-4xl: 2rem; --r-full: 9999px;

  /* Base typography. Both families are the site-wide pair — the About page
     shares the site's fonts on purpose; it does NOT have its own serif theme.
     (An older serif "Elite" look was retired upstream. Do not reintroduce it.) */
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--about-on-surface);
  background: var(--about-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Reset only inside our scope, so Bootstrap's own rules can't fight us. */
.cwf-about *,
.cwf-about *::before,
.cwf-about *::after { box-sizing: border-box; }

.cwf-about h1, .cwf-about h2, .cwf-about h3,
.cwf-about h4, .cwf-about p, .cwf-about ul, .cwf-about figure { margin: 0; padding: 0; }
.cwf-about ul { list-style: none; }
.cwf-about img { max-width: 100%; display: block; }
.cwf-about a { text-decoration: none; color: inherit; }
.cwf-about button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ==========================================================================
   2. SHARED TYPOGRAPHY + SECTION SHELL
   Every one of the 10 sections is the same recipe: a tinted gradient panel
   with 2-4 blurred "ambient orbs" behind a centred 1280px container.
   ========================================================================== */

.cwf-about .cwf-font-heading {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

.cwf-about .cwf-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  color: var(--about-on-surface);
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}
@media (min-width: 768px) { .cwf-about .cwf-section { padding: 6rem 0; } }

/* The taller variant (py-20 / md:py-28 in the original). */
.cwf-about .cwf-section--tall { padding: 5rem 0; }
@media (min-width: 768px) { .cwf-about .cwf-section--tall { padding: 7rem 0; } }

.cwf-about .cwf-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 var(--margin-mobile);
}
@media (min-width: 768px) { .cwf-about .cwf-container { padding: 0 var(--margin-desktop); } }

/* Ambient orbs. `filter: blur()` is expensive, so they are pointer-events:none
   and never animated — exactly as in the source. */
.cwf-about .cwf-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(48px);
  width: 500px;
  height: 500px;
}
.cwf-about .cwf-orb--tl { top: -8rem; left: -8rem; }
.cwf-about .cwf-orb--br { bottom: -8rem; right: -8rem; }

/* --- The ten section hues ------------------------------------------------
   Each section owns a hue pair. Order matters visually but the admin can
   reorder sections, so no rule may depend on a section's position.          */
.cwf-about .hue-blue    { background: linear-gradient(to bottom right, rgba(239,246,255,.8), rgba(240,249,255,.9), rgba(239,246,255,.8)); border-color: rgba(219,234,254,.8); }
.cwf-about .hue-red     { background: linear-gradient(to bottom right, rgba(254,242,242,.8), rgba(255,241,242,.9), rgba(254,242,242,.8)); border-color: rgba(254,226,226,.8); }
.cwf-about .hue-amber   { background: linear-gradient(to bottom right, rgba(255,251,235,.8), rgba(254,252,232,.9), rgba(255,251,235,.8)); border-color: rgba(254,243,199,.8); }
.cwf-about .hue-emerald { background: linear-gradient(to bottom right, rgba(236,253,245,.8), rgba(240,253,244,.9), rgba(236,253,245,.8)); border-color: rgba(209,250,229,.8); }
.cwf-about .hue-indigo  { background: linear-gradient(to bottom right, rgba(238,242,255,.8), rgba(245,243,255,.9), rgba(238,242,255,.8)); border-color: rgba(224,231,255,.8); }

.cwf-about .hue-blue    .cwf-orb--tl { background: rgba(59,130,246,.15); }
.cwf-about .hue-blue    .cwf-orb--br { background: rgba(14,165,233,.15); }
.cwf-about .hue-red     .cwf-orb--tl { background: rgba(239,68,68,.15); }
.cwf-about .hue-red     .cwf-orb--br { background: rgba(244,63,94,.15); }
.cwf-about .hue-amber   .cwf-orb--tl { background: rgba(245,158,11,.15); }
.cwf-about .hue-amber   .cwf-orb--br { background: rgba(234,179,8,.15); }
.cwf-about .hue-emerald .cwf-orb--tl { background: rgba(16,185,129,.15); }
.cwf-about .hue-emerald .cwf-orb--br { background: rgba(34,197,94,.15); }
.cwf-about .hue-indigo  .cwf-orb--tl { background: rgba(99,102,241,.15); }
.cwf-about .hue-indigo  .cwf-orb--br { background: rgba(139,92,246,.15); }

/* --- Section header type ------------------------------------------------- */
.cwf-about .cwf-kicker {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--about-secondary);
}

/* A kicker in a rounded chip. Colour is set per section via --chip-*. */
.cwf-about .cwf-kicker-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .375rem 1rem;
  border-radius: var(--r-full);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--chip-bg, rgba(66,133,244,.15));
  border: 1px solid var(--chip-border, rgba(66,133,244,.3));
  color: var(--chip-text, var(--google-blue));
}
.cwf-about .cwf-kicker-chip .dot {
  width: .5rem; height: .5rem; border-radius: 50%;
  background: currentColor;
  animation: cwf-pulse 2s cubic-bezier(.4,0,.6,1) infinite;
}
@keyframes cwf-pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

.cwf-about .cwf-headline {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -.01em;
  font-weight: 800;
  color: var(--about-on-surface);
  margin-top: .75rem;
}
/* The italic teal half of a split headline ("... One Global Workforce."). */
.cwf-about .cwf-headline .accent { font-style: italic; color: var(--about-secondary); }

.cwf-about .cwf-subtext {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--about-on-surface-variant);
  margin-top: 1rem;
}
.cwf-about .cwf-header-center { max-width: 56rem; margin: 0 auto; text-align: center; }
.cwf-about .cwf-header-center .cwf-subtext { margin-left: auto; margin-right: auto; max-width: 48rem; }

/* --- Icon sizing. Reserves space so the layout does not jump when Lucide
       replaces each <i data-lucide> with a real <svg>. --------------------- */
.cwf-about .cwf-icon,
.cwf-about .cwf-icon svg { width: 1.5rem; height: 1.5rem; stroke-width: 2; display: inline-block; }
.cwf-about .cwf-icon--sm, .cwf-about .cwf-icon--sm svg { width: 1rem; height: 1rem; }
.cwf-about .cwf-icon--lg, .cwf-about .cwf-icon--lg svg { width: 2rem; height: 2rem; }

/* ==========================================================================
   3. SCROLL REVEAL
   Replaces the source's framer-motion `whileInView`. about-page.js adds
   .is-visible via IntersectionObserver. Same numbers: 30px rise, 0.6s.
   ========================================================================== */
.cwf-about .cwf-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease-out, transform .6s ease-out;
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.cwf-about .cwf-reveal.is-visible { opacity: 1; transform: none; }

/* Anyone who asked their OS for less motion gets the content immediately. */
@media (prefers-reduced-motion: reduce) {
  .cwf-about .cwf-reveal { opacity: 1; transform: none; transition: none; }
  .cwf-about .cwf-kicker-chip .dot { animation: none; }
}

/* ==========================================================================
   4. SECTION 1 — HERO + GSAP ROLE FAN DECK
   ========================================================================== */
.cwf-about .about-hero {
  position: relative;
  overflow: hidden;
  background: var(--about-surface);
  padding: 3.5rem 0 3rem;
}
@media (min-width: 640px) { .cwf-about .about-hero { padding-top: 5rem; } }

.cwf-about .about-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* Scrim keeps the headline readable over any uploaded photo. */
.cwf-about .about-hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(247,249,251,.65), rgba(247,249,251,.55), rgba(247,249,251,.7));
}
.cwf-about .about-hero__inner { position: relative; z-index: 2; max-width: 56rem; margin: 0 auto; text-align: center; padding: 0 var(--margin-mobile); }
@media (min-width: 768px) { .cwf-about .about-hero__inner { padding: 0 var(--margin-desktop); } }
.cwf-about .about-hero h1 { font-size: clamp(2.25rem, 5vw, 3rem); font-weight: 700; line-height: 1.25; }

/* --- Fan deck ------------------------------------------------------------
   GSAP positions every .fan-card absolutely (rotation/scale/x/y). CSS only
   provides the frame and the card's own chrome — do NOT add transforms here
   or they will fight the tween.                                            */
.cwf-about .fan-deck {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 85rem;
  height: 22.5rem;
  margin: 2rem auto 0;
}
@media (min-width: 640px) { .cwf-about .fan-deck { height: 24.5rem; } }

.cwf-about .fan-card {
  position: absolute;
  height: 90%;
  width: 18rem;
  overflow: hidden;
  border-radius: var(--r-3xl);
  box-shadow: var(--shadow-card);
  transition: box-shadow .3s ease;
  outline: none;
  background: var(--about-dark);
}
@media (min-width: 640px) { .cwf-about .fan-card { width: 21rem; } }
@media (min-width: 768px) { .cwf-about .fan-card { width: 22rem; } }
.cwf-about .fan-card:hover { box-shadow: var(--shadow-card-hover); }
.cwf-about .fan-card:focus-visible { box-shadow: 0 0 0 2px var(--about-secondary); }

.cwf-about .fan-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* Fallback when no background image is uploaded: a role-coloured gradient. */
.cwf-about .fan-card__fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.cwf-about .fan-card__fallback .cwf-icon,
.cwf-about .fan-card__fallback .cwf-icon svg { width: 4rem; height: 4rem; color: rgba(255,255,255,.3); }
.cwf-about .fan-card--blue   .fan-card__fallback { background: linear-gradient(to bottom, rgba(66,133,244,.7), rgba(66,133,244,.2)), var(--about-dark); }
.cwf-about .fan-card--red    .fan-card__fallback { background: linear-gradient(to bottom, rgba(234,67,53,.7),  rgba(234,67,53,.2)),  var(--about-dark); }
.cwf-about .fan-card--yellow .fan-card__fallback { background: linear-gradient(to bottom, rgba(251,188,5,.7),  rgba(251,188,5,.2)),  var(--about-dark); }
.cwf-about .fan-card--green  .fan-card__fallback { background: linear-gradient(to bottom, rgba(52,168,83,.7),  rgba(52,168,83,.2)),  var(--about-dark); }

.cwf-about .fan-card__gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.2) 55%, transparent); }
.cwf-about .fan-card__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.25rem; text-align: left; z-index: 3; }
.cwf-about .fan-card__title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.125rem; font-weight: 700; line-height: 1.375; color: #fff; }
/* Description collapses to 0 height until the card is active/hovered. */
.cwf-about .fan-card__desc {
  margin-top: .25rem; font-size: .75rem; line-height: 1rem; color: rgba(255,255,255,.8);
  max-height: 0; opacity: 0; overflow: hidden; transition: max-height .3s ease, opacity .3s ease;
}
.cwf-about .fan-card.is-active .fan-card__desc,
.cwf-about .fan-card:hover .fan-card__desc { max-height: 6rem; opacity: 1; }
/* Hidden until hover/active, same as the description -- the reference reveals
   the "Explore Role" link alongside the description, not permanently. */
.cwf-about .fan-card__link {
  margin-top: .5rem; display: inline-flex; align-items: center; gap: .25rem;
  font-size: .75rem; font-weight: 700; color: var(--fan-link-teal);
  opacity: 0; transition: opacity .3s ease;
}
.cwf-about .fan-card.is-active .fan-card__link,
.cwf-about .fan-card:hover .fan-card__link { opacity: 1; }

/* Fan deck controls */
.cwf-about .fan-nav { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.5rem; }
.cwf-about .fan-nav__btn {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--about-outline-variant);
  background: var(--about-surface-lowest);
  color: var(--about-on-surface-variant);
  transition: background .2s ease;
}
.cwf-about .fan-nav__btn:hover { background: var(--about-surface-container); }
.cwf-about .fan-dots { display: flex; align-items: center; gap: .375rem; }
.cwf-about .fan-dot { width: .375rem; height: .375rem; border-radius: var(--r-full); background: var(--about-outline-variant); transition: width .25s ease, background .25s ease; }
.cwf-about .fan-dot.is-active { width: 1rem; background: var(--about-secondary); }

/* ==========================================================================
   5. SECTION 2 — LEADERSHIP
   ========================================================================== */
.cwf-about .lead-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; margin-top: 0; }
@media (min-width: 1024px) { .cwf-about .lead-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.cwf-about .lead-photo { position: relative; width: 100%; max-width: 28rem; margin: 0 auto; }
.cwf-about .lead-photo__frame { position: relative; aspect-ratio: 1/1; width: 100%; overflow: hidden; border-radius: var(--r-lg); box-shadow: var(--shadow-card); background: var(--slate-100); }
.cwf-about .lead-photo__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cwf-about .lead-photo__frame:hover img { transform: scale(1.05); }
/* Two corner brackets in brand red / green. */
.cwf-about .lead-photo__corner { position: absolute; width: 5rem; height: 5rem; pointer-events: none; }
.cwf-about .lead-photo__corner--tr { top: -1rem; right: -1rem; border-top: 8px solid var(--google-red); border-right: 8px solid var(--google-red); border-top-right-radius: var(--r-2xl); }
.cwf-about .lead-photo__corner--bl { bottom: -1rem; left: -1rem; border-bottom: 8px solid var(--google-green); border-left: 8px solid var(--google-green); border-bottom-left-radius: var(--r-2xl); }
/* Empty-state used when no CEO photo has been uploaded. */
.cwf-about .lead-photo__empty { display: flex; align-items: center; justify-content: center; height: 100%; background: linear-gradient(to bottom right, var(--slate-100), var(--slate-200)); color: var(--slate-400); }
.cwf-about .lead-photo__empty .cwf-icon, .cwf-about .lead-photo__empty .cwf-icon svg { width: 4rem; height: 4rem; }

/* Kicker/headline/title/name/quote sit in this right-hand column, next to the
   photo -- not in a separate centered header like every other section. The
   kicker and CEO title are BLACK here (text-primary in the source), not the
   teal .cwf-kicker used everywhere else -- do not "fix" that back to teal. */
.cwf-about .lead-kicker {
  display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--about-primary);
}
.cwf-about .lead-headline {
  margin-top: .5rem; font-size: 2rem; line-height: 2.5rem; font-weight: 600;
  color: var(--about-on-surface);
}
.cwf-about .lead-headline .accent { font-style: italic; color: var(--about-secondary); }
.cwf-about .lead-title {
  margin-top: 1.5rem; font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .025em; color: var(--about-primary);
}
.cwf-about .lead-name { margin-top: .25rem; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem; line-height: 2rem; font-weight: 600; }
.cwf-about .lead-quote {
  margin-top: 1rem; padding-left: 1rem;
  border-left: 2px solid var(--about-secondary);
  font-size: 1.125rem; line-height: 1.75rem; font-style: italic; color: var(--slate-600);
}

/* --- Executive biography row: bio+credentials (2 cols) beside metrics (1) - */
.cwf-about .lead-bio-row { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-top: 4rem; }
@media (min-width: 768px) {
  .cwf-about .lead-bio-row { grid-template-columns: repeat(3, 1fr); margin-top: 6rem; }
  .cwf-about .lead-bio-col { grid-column: span 2; }
}
.cwf-about .lead-bio-heading { margin-bottom: 1.5rem; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.25rem; line-height: 1.75rem; font-weight: 600; }
.cwf-about .lead-bio p + p { margin-top: 1rem; }
.cwf-about .lead-bio p { line-height: 1.625; color: var(--slate-600); }

.cwf-about .lead-creds { margin-top: 1.5rem; display: grid; gap: .5rem; }
.cwf-about .lead-creds li { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; line-height: 1.25rem; letter-spacing: .01em; color: var(--slate-600); }
.cwf-about .lead-creds__dot { margin-top: .375rem; width: .375rem; height: .375rem; border-radius: 50%; background: var(--about-primary); flex: 0 0 auto; }

.cwf-about .lead-metrics { display: grid; gap: 1.25rem; align-content: start; }
.cwf-about .lead-metric {
  border-radius: var(--r-2xl); border-left: 4px solid var(--metric-accent, var(--google-blue));
  background: rgba(255,255,255,.9); padding: 1.5rem;
  box-shadow: var(--shadow-sm); backdrop-filter: blur(12px);
}
.cwf-about .lead-metric__label { display: block; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .025em; color: var(--slate-500); }
.cwf-about .lead-metric__value { margin-top: .5rem; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.875rem; font-weight: 800; color: var(--metric-accent, var(--google-blue)); }

/* Strategic philosophy cards — top border in a cycling brand colour, and the
   whole card floods with that colour on hover. */
.cwf-about .philosophy-header { margin-top: 5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .cwf-about .philosophy-header { margin-top: 7rem; } }
.cwf-about .philosophy-header__title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2rem; line-height: 1.25; font-weight: 700;
  color: var(--about-on-surface);
}
@media (min-width: 768px) { .cwf-about .philosophy-header__title { font-size: 2.25rem; } }
.cwf-about .philosophy-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .cwf-about .philosophy-grid { grid-template-columns: repeat(3, 1fr); } }
.cwf-about .philosophy-card {
  position: relative; border-radius: var(--r-3xl); background: #fff;
  border-top: 8px solid var(--accent, var(--google-blue));
  padding: 2rem; box-shadow: var(--shadow-sm);
  transition: background-color .5s ease, box-shadow .5s ease, transform .5s ease;
}
@media (min-width: 768px) { .cwf-about .philosophy-card { padding: 2.5rem; } }
.cwf-about .philosophy-card--featured { grid-column: 1 / -1; }
.cwf-about .philosophy-card .cwf-icon,
.cwf-about .philosophy-card .cwf-icon svg { width: 2rem; height: 2rem; color: var(--accent-text, var(--google-blue)); transition: color .5s ease; }
.cwf-about .philosophy-card h4 { margin-top: 1rem; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.25rem; font-weight: 700; transition: color .5s ease; }
.cwf-about .philosophy-card p { margin-top: .5rem; line-height: 1.7; color: var(--about-on-surface-variant); transition: color .5s ease; }
.cwf-about .philosophy-card:hover { background: var(--accent, var(--google-blue)); box-shadow: var(--shadow-xl); transform: translateY(-2px); }
.cwf-about .philosophy-card:hover h4,
.cwf-about .philosophy-card:hover p,
.cwf-about .philosophy-card:hover .cwf-icon { color: #fff; }

.cwf-about .vision-block { margin-top: 3rem; text-align: center; }
.cwf-about .vision-quote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.375rem, 2.6vw, 2rem); line-height: 1.4; font-weight: 700;
  max-width: 52rem; margin: 0 auto; font-style: italic;
}
.cwf-about .vision-ctas { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* --- Shared pill buttons ------------------------------------------------- */
.cwf-about .cwf-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  border-radius: var(--r-full); padding: .875rem 2rem;
  font-size: 1rem; font-weight: 700; transition: all .2s ease;
}
.cwf-about .cwf-btn--primary { background: var(--about-secondary); color: #fff; box-shadow: var(--shadow-md); }
.cwf-about .cwf-btn--primary:hover { opacity: .9; box-shadow: var(--shadow-xl); transform: translateY(-2px); }
.cwf-about .cwf-btn--outline { background: #fff; color: var(--about-on-surface); border: 2px solid var(--slate-200); }
.cwf-about .cwf-btn--outline:hover { background: var(--slate-50); }
.cwf-about .cwf-btn--blue { background: var(--google-blue); color: #fff; box-shadow: var(--shadow-md); }
.cwf-about .cwf-btn--blue:hover { opacity: .9; box-shadow: var(--shadow-xl); }
.cwf-about .cwf-btn--glass { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; backdrop-filter: blur(12px); }
.cwf-about .cwf-btn--glass:hover { background: rgba(255,255,255,.2); }
.cwf-about .cwf-btn--dark { background: var(--about-on-surface); color: #fff; padding: .625rem 1.5rem; font-size: .875rem; }
.cwf-about .cwf-btn--dark:hover { background: var(--google-blue); }

/* ==========================================================================
   6. SECTION 3 — WHO WE ARE (NARRATIVE)
   ========================================================================== */
.cwf-about .narrative-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .cwf-about .narrative-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
/* This section's kicker chip uses tighter tracking than the shared default
   (tracking-wider = .05em, not the shared chip's tracking-widest = .1em). */
.cwf-about .narrative-kicker { letter-spacing: .05em; margin-bottom: 1rem; }
.cwf-about .narrative-headline { letter-spacing: -.025em; margin-bottom: 1.5rem; }
.cwf-about .narrative-body p { font-size: 1.125rem; line-height: 1.625; color: var(--about-on-surface-variant); }
.cwf-about .narrative-body p + p { margin-top: 1rem; }

.cwf-about .narrative-bullets { margin-top: 1.75rem; display: grid; gap: .75rem; }
.cwf-about .narrative-bullet {
  display: flex; align-items: flex-start; gap: .75rem;
  border-radius: var(--r-2xl); border: 1px solid var(--red-100);
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  padding: .875rem 1rem; box-shadow: var(--shadow-sm); transition: background .2s ease;
}
.cwf-about .narrative-bullet:hover { background: #fff; }
.cwf-about .narrative-bullet__tick {
  flex: 0 0 auto; width: 1.25rem; height: 1.25rem; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(220,38,38,.1); color: var(--red-600); margin-top: .125rem;
}
.cwf-about .narrative-bullet__tick .cwf-icon,
.cwf-about .narrative-bullet__tick .cwf-icon svg { width: .875rem; height: .875rem; stroke-width: 3; }
.cwf-about .narrative-bullet__text { font-size: .875rem; font-weight: 500; line-height: 1.375; color: var(--about-on-surface); }
@media (min-width: 768px) { .cwf-about .narrative-bullet__text { font-size: 1rem; } }

.cwf-about .narrative-figure { position: relative; }
.cwf-about .narrative-figure__glow {
  position: absolute; inset: -1rem; border-radius: 40px; background: rgba(239,68,68,.15);
  filter: blur(40px); pointer-events: none; transition: background .3s ease;
}
.cwf-about .narrative-figure:hover .narrative-figure__glow { background: rgba(239,68,68,.2); }
.cwf-about .narrative-figure__img {
  position: relative; aspect-ratio: 4/3; width: 100%; overflow: hidden;
  border-radius: 32px; border: 8px solid rgba(255,255,255,.95);
  box-shadow: var(--shadow-2xl); transition: transform .7s ease; background: var(--slate-100);
}
.cwf-about .narrative-figure__img:hover { transform: scale(1.01); }
.cwf-about .narrative-figure__img img { width: 100%; height: 100%; object-fit: cover; }
.cwf-about .narrative-figure__empty { display: flex; align-items: center; justify-content: center; height: 100%; background: linear-gradient(to bottom right, var(--red-50), var(--rose-50)); color: var(--red-500); }
/* Floating badge. Its copy is fixed in the source design, not CMS-driven.
   BOTTOM-LEFT, not bottom-right — easy to mix up since most other floating
   elements on this page sit at the right. */
.cwf-about .narrative-badge {
  position: absolute; left: -1rem; bottom: -1.5rem; z-index: 5;
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,.95); border-radius: var(--r-2xl); padding: 1rem 1.25rem;
  box-shadow: var(--shadow-xl); border: 1px solid var(--red-100);
}
@media (min-width: 640px) { .cwf-about .narrative-badge { left: -1.5rem; padding: 1.25rem 1.5rem; } }
.cwf-about .narrative-badge__icon {
  flex: 0 0 auto; width: 3rem; height: 3rem; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red-100);
}
.cwf-about .narrative-badge__icon .cwf-icon,
.cwf-about .narrative-badge__icon .cwf-icon svg { width: 1.5rem; height: 1.5rem; color: var(--red-600); }
.cwf-about .narrative-badge__label { display: block; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--slate-500); }
.cwf-about .narrative-badge__value { display: inline-block; margin-top: .125rem; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 800; color: var(--about-on-surface); }
@media (min-width: 640px) { .cwf-about .narrative-badge__value { font-size: 1.125rem; } }

/* ==========================================================================
   7. SECTION 4 — AI SPOTLIGHT
   ========================================================================== */
/* This section's headline climbs one step further than most others (up to
   display-lg at the lg breakpoint), and its container is wider (max-w-5xl). */
.cwf-about .ai-header { max-width: 64rem; }
.cwf-about .ai-headline { letter-spacing: -.025em; }
@media (min-width: 1024px) { .cwf-about .ai-headline { font-size: 4rem; line-height: 1.15; } }

.cwf-about .ai-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 72rem; margin: 3rem auto 0; }
@media (min-width: 768px) { .cwf-about .ai-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }

.cwf-about .ai-card {
  display: flex; flex-direction: column; justify-content: space-between; height: 100%;
  background: #fff; border: 1px solid rgba(226,232,240,.9); border-radius: 2rem;
  padding: 2rem; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow .3s ease, transform .3s ease;
}
@media (min-width: 768px) { .cwf-about .ai-card { padding: 2.5rem; } }
.cwf-about .ai-card:hover { box-shadow: var(--shadow-2xl); transform: translateY(-4px); }
.cwf-about .ai-card__media { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: var(--r-2xl); overflow: hidden; margin-bottom: 1.5rem; background: var(--slate-100); border: 1px solid var(--slate-100); }
.cwf-about .ai-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cwf-about .ai-card:hover .ai-card__media img { transform: scale(1.05); }
.cwf-about .ai-card__icon {
  width: 3rem; height: 3rem; border-radius: var(--r-2xl); margin-bottom: 1.5rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--icon-bg, rgba(66,133,244,.1)); color: var(--icon-fg, var(--google-blue));
}
.cwf-about .ai-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem; font-weight: 800; letter-spacing: -.025em; margin-bottom: .75rem; }
@media (min-width: 768px) { .cwf-about .ai-card h3 { font-size: 2rem; } }
.cwf-about .ai-card p { font-size: 1.125rem; line-height: 1.625; color: var(--about-on-surface-variant); margin-bottom: 1.5rem; }
/* Decorative label. It is NOT a link in the source design — it has no href. */
.cwf-about .ai-card__label { display: inline-flex; align-items: center; gap: .5rem; font-size: 1rem; font-weight: 700; color: var(--icon-fg, var(--google-blue)); transition: gap .2s ease; }
.cwf-about .ai-card:hover .ai-card__label { gap: .75rem; }

/* --- Fallback mock-UI graphic (shown when a feature has no uploaded image).
       Rebuilt from the source's hand-drawn JSX mockups.                     */
.cwf-about .ai-mock {
  width: 100%; aspect-ratio: 16/9; border-radius: var(--r-2xl); overflow: hidden;
  margin-bottom: 1.5rem; border: 1px solid rgba(226,232,240,.8);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  transition: transform .5s ease;
  background: linear-gradient(to bottom right, var(--mock-a, var(--blue-50)), var(--mock-b, var(--slate-100)));
}
.cwf-about .ai-card:hover .ai-mock { transform: scale(1.01); }
.cwf-about .ai-mock__panel {
  width: 100%; height: 100%; border-radius: var(--r-xl);
  background: rgba(255,255,255,.9); backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md); border: 1px solid rgba(226,232,240,.8);
  padding: 1rem; display: flex; flex-direction: column; justify-content: space-between;
}
.cwf-about .ai-mock__head { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--slate-100); padding-bottom: .5rem; }
.cwf-about .ai-mock__title { font-size: .75rem; font-weight: 700; color: var(--slate-700); }
.cwf-about .ai-mock__pill { font-size: .625rem; font-weight: 600; padding: .125rem .5rem; border-radius: var(--r-full); background: var(--pill-bg, var(--blue-100)); color: var(--pill-fg, var(--blue-700)); }
.cwf-about .ai-mock__bars { display: grid; gap: .375rem; padding: .5rem 0; }
.cwf-about .ai-mock__bar { height: .5rem; border-radius: var(--r-full); background: var(--slate-100); }
.cwf-about .ai-mock__bar--dark { background: rgba(226,232,240,.8); }
.cwf-about .ai-mock__foot { display: flex; align-items: center; justify-content: space-between; padding-top: .5rem; border-top: 1px solid var(--slate-100); font-size: .625rem; color: var(--slate-400); }
.cwf-about .ai-mock__foot strong { color: var(--pill-fg, var(--blue-600)); }
.cwf-about .ai-mock__row { display: flex; align-items: center; justify-content: space-between; font-size: .6875rem; background: var(--slate-50); padding: .375rem; border-radius: var(--r-lg); }
.cwf-about .ai-mock__row span:last-child { font-weight: 700; color: var(--amber-600); }
.cwf-about .ai-mock__chat { padding: .5rem; border-radius: var(--r-lg); font-size: .625rem; max-width: 85%; }
.cwf-about .ai-mock__chat--in { background: var(--slate-100); color: var(--slate-600); }
.cwf-about .ai-mock__chat--out { background: var(--red-50); border: 1px solid var(--red-100); color: #7f1d1d; font-weight: 500; margin-left: auto; }
.cwf-about .ai-mock__avatar { width: 2.5rem; height: 2.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; background: rgba(16,185,129,.2); color: var(--emerald-700); }

/* --- Dark CTA banner ---------------------------------------------------- */
.cwf-about .ai-banner {
  position: relative; overflow: hidden; max-width: 64rem; margin: 4rem auto 0;
  border-radius: var(--r-3xl); background: var(--about-dark); color: var(--about-on-dark);
  padding: 2.5rem 1.5rem; text-align: center; box-shadow: var(--shadow-xl); border: 1px solid var(--slate-800);
}
@media (min-width: 768px) { .cwf-about .ai-banner { padding: 3.5rem; } }
.cwf-about .ai-banner__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.cwf-about .ai-banner__scrim { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13,28,50,.9), rgba(13,28,50,.85), rgba(13,28,50,.95)); }
.cwf-about .ai-banner__inner { position: relative; z-index: 10; }
.cwf-about .ai-banner__badge {
  margin: 0 auto 1.5rem; width: 4rem; height: 4rem; border-radius: var(--r-2xl);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px); box-shadow: var(--shadow-lg);
}
@media (min-width: 768px) { .cwf-about .ai-banner__badge { width: 5rem; height: 5rem; } }
.cwf-about .ai-banner__badge .cwf-icon,
.cwf-about .ai-banner__badge .cwf-icon svg { width: 2rem; height: 2rem; color: var(--blue-400); animation: cwf-pulse 2s cubic-bezier(.4,0,.6,1) infinite; }
@media (min-width: 768px) { .cwf-about .ai-banner__badge .cwf-icon, .cwf-about .ai-banner__badge .cwf-icon svg { width: 2.5rem; height: 2.5rem; } }
.cwf-about .ai-banner h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.75rem, 3.4vw, 2.25rem); font-weight: 800; letter-spacing: -.01em; margin-bottom: 1rem; color: var(--about-on-dark); }
.cwf-about .ai-banner p { font-size: 1.125rem; line-height: 1.7; color: var(--about-on-dark-muted); max-width: 42rem; margin: 0 auto 2rem; }
.cwf-about .ai-banner__ctas { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .cwf-about .ai-banner__ctas { flex-direction: row; } }

/* ==========================================================================
   8. SECTION 5 — WHY CHOOSE PILLARS (+ detail modal)
   ========================================================================== */
.cwf-about .pillars-headline { line-height: 1.25; }
.cwf-about .pillars-grid { display: grid; grid-template-columns: 1fr; gap: .875rem; max-width: 80rem; margin: 3rem auto 0; }
@media (min-width: 480px)  { .cwf-about .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 640px)  { .cwf-about .pillars-grid { gap: 1.25rem; } }
@media (min-width: 1024px) { .cwf-about .pillars-grid { grid-template-columns: repeat(4, 1fr); } }

.cwf-about .pillar-card {
  position: relative; display: flex; flex-direction: column; height: 100%;
  overflow: hidden; border-radius: var(--r-2xl); border: 1px solid var(--slate-200);
  background: #fff; box-shadow: var(--shadow-sm); cursor: pointer; text-align: left;
  transition: box-shadow .25s ease, transform .2s ease, border-color .25s ease;
}
.cwf-about .pillar-card:hover { box-shadow: var(--shadow-2xl); transform: translateY(-4px); border-color: var(--accent, var(--google-blue)); }
.cwf-about .pillar-card__media { position: relative; height: 9rem; overflow: hidden; }
@media (min-width: 640px) { .cwf-about .pillar-card__media { height: 10rem; } }
@media (min-width: 768px) { .cwf-about .pillar-card__media { height: 11rem; } }
.cwf-about .pillar-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.cwf-about .pillar-card:hover .pillar-card__media img { transform: scale(1.05); }
/* Deep gradient fallback per accent colour. */
.cwf-about .pillar-card__media--blue    { background: linear-gradient(to bottom right, var(--blue-700), var(--blue-900), var(--slate-950)); }
.cwf-about .pillar-card__media--red     { background: linear-gradient(to bottom right, var(--red-700), var(--red-900), var(--slate-950)); }
.cwf-about .pillar-card__media--yellow  { background: linear-gradient(to bottom right, var(--amber-600), var(--amber-900), var(--slate-950)); }
.cwf-about .pillar-card__media--green   { background: linear-gradient(to bottom right, var(--emerald-700), var(--emerald-900), var(--slate-950)); }
.cwf-about .pillar-card__media .cwf-icon,
.cwf-about .pillar-card__media .cwf-icon svg { width: 2.25rem; height: 2.25rem; color: rgba(255,255,255,.55); }
.cwf-about .pillar-card__mediainner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }

.cwf-about .pillar-card__num {
  position: absolute; top: .75rem; left: .75rem; z-index: 3;
  border-radius: var(--r-full); background: rgba(2,6,23,.75); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2); padding: .25rem .75rem;
  font-size: .75rem; font-weight: 800; letter-spacing: .05em; color: #fff;
}
.cwf-about .pillar-card__arrow {
  position: absolute; top: .75rem; right: .75rem; z-index: 3;
  width: 2rem; height: 2rem; border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  background: rgba(2,6,23,.75); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2); color: #fff; transition: background .25s ease;
}
.cwf-about .pillar-card:hover .pillar-card__arrow { background: var(--accent, var(--google-blue)); }
.cwf-about .pillar-card__arrow .cwf-icon, .cwf-about .pillar-card__arrow .cwf-icon svg { width: 1rem; height: 1rem; }
.cwf-about .pillar-card__body { padding: 1rem; display: flex; flex-direction: column; gap: .375rem; }
@media (min-width: 640px) { .cwf-about .pillar-card__body { padding: 1.25rem; } }
.cwf-about .pillar-card__eyebrow { display: flex; align-items: center; gap: .5rem; font-size: .6875rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--accent-text, var(--google-blue)); }
.cwf-about .pillar-card__eyebrow .cwf-icon, .cwf-about .pillar-card__eyebrow .cwf-icon svg { width: 1rem; height: 1rem; }
.cwf-about .pillar-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: -.01em; line-height: 1.3;
  color: var(--slate-900); transition: color .25s ease;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
@media (min-width: 640px) { .cwf-about .pillar-card__title { font-size: 1.125rem; } }
@media (min-width: 768px) { .cwf-about .pillar-card__title { font-size: 1.25rem; } }
.cwf-about .pillar-card:hover .pillar-card__title { color: var(--accent-text, var(--google-blue)); }
.cwf-about .pillar-card__teaser {
  font-size: .75rem; line-height: 1.5; color: var(--slate-600);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
@media (min-width: 640px) { .cwf-about .pillar-card__teaser { font-size: .875rem; } }
.cwf-about .pillar-card__view {
  margin-top: .375rem; display: inline-flex; align-items: center; gap: .25rem;
  font-size: .75rem; font-weight: 600; color: var(--accent-text, var(--google-blue));
  transition: gap .3s ease;
}
.cwf-about .pillar-card:hover .pillar-card__view { gap: .5rem; }
.cwf-about .pillar-card__view .cwf-icon, .cwf-about .pillar-card__view .cwf-icon svg { width: .875rem; height: .875rem; }

/* --- Modal. Rendered into <body>, i.e. OUTSIDE .cwf-about, so it needs its
       own colours — that is why these are literal, not tokens.             */
.cwf-pillar-modal-backdrop {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(2,6,23,.85); backdrop-filter: blur(12px);
  opacity: 0; transition: opacity .25s ease;
  display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.cwf-pillar-modal-backdrop.is-open { opacity: 1; }
.cwf-pillar-modal {
  position: relative; z-index: 100000; width: 100%; max-width: 42rem;
  max-height: 85vh; overflow-y: auto; display: flex; flex-direction: column;
  background: #0f172a; border: 1px solid #1e293b; border-radius: 1.5rem;
  color: #e2e8f0;
  font-family: 'Inter', system-ui, sans-serif;
  opacity: 0; transform: scale(.95) translateY(20px);
  transition: opacity .3s cubic-bezier(.22,1,.36,1), transform .3s cubic-bezier(.22,1,.36,1);
}
@media (min-width: 640px) { .cwf-pillar-modal { max-height: 90vh; } }
.cwf-pillar-modal-backdrop.is-open .cwf-pillar-modal { opacity: 1; transform: none; }

/* --- Banner: uploaded image, or the same 4-colour gradient cycle as the
       card grid, matched to the card that opened this pillar. -------------- */
.cwf-pillar-modal__banner { position: relative; height: 11rem; width: 100%; flex: 0 0 auto; overflow: hidden; background: #020617; }
@media (min-width: 640px) { .cwf-pillar-modal__banner { height: 14rem; } }
.cwf-pillar-modal__bannerimg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cwf-pillar-modal__bannericon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.cwf-pillar-modal__bannericon i, .cwf-pillar-modal__bannericon svg { width: 8rem; height: 8rem; color: rgba(255,255,255,.15); }
.cwf-pillar-modal--blue   .cwf-pillar-modal__bannericon { background: linear-gradient(to bottom right, var(--blue-700), var(--blue-900), var(--slate-950)); }
.cwf-pillar-modal--red    .cwf-pillar-modal__bannericon { background: linear-gradient(to bottom right, var(--red-700), var(--red-900), var(--slate-950)); }
.cwf-pillar-modal--yellow .cwf-pillar-modal__bannericon { background: linear-gradient(to bottom right, var(--amber-600), var(--amber-900), var(--slate-950)); }
.cwf-pillar-modal--green  .cwf-pillar-modal__bannericon { background: linear-gradient(to bottom right, var(--emerald-700), var(--emerald-900), var(--slate-950)); }
.cwf-pillar-modal__bannerscrim { position: absolute; inset: 0; background: linear-gradient(to top, #0f172a, rgba(15,23,42,.4), transparent); }
.cwf-pillar-modal__bannerbar { position: absolute; top: 1rem; left: 1rem; right: 1rem; z-index: 5; display: flex; align-items: center; justify-content: space-between; }
.cwf-pillar-modal__badges { display: flex; align-items: center; gap: .5rem; }
.cwf-pillar-modal__numbadge { border-radius: 9999px; background: rgba(2,6,23,.8); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(8px); padding: .25rem .875rem; font-size: .75rem; font-weight: 700; color: #fff; }
/* Always blue, regardless of the pillar's own accent -- matches the source. */
.cwf-pillar-modal__brandchip { display: none; align-items: center; gap: .375rem; border-radius: 9999px; background: rgba(37,99,235,.8); backdrop-filter: blur(8px); padding: .25rem .75rem; font-size: .75rem; font-weight: 600; color: #fff; }
.cwf-pillar-modal__brandchip i, .cwf-pillar-modal__brandchip svg { width: .875rem; height: .875rem; }
@media (min-width: 640px) { .cwf-pillar-modal__brandchip { display: inline-flex; } }
.cwf-pillar-modal__close {
  position: static; flex: 0 0 auto; width: 2.25rem; height: 2.25rem;
  border-radius: 9999px; background: rgba(2,6,23,.8); border: 1px solid rgba(255,255,255,.2); color: #fff;
  display: flex; align-items: center; justify-content: center; transition: background .2s ease;
}
.cwf-pillar-modal__close:hover { background: rgba(255,255,255,.2); }

/* --- Body content ------------------------------------------------------- */
.cwf-pillar-modal__content { padding: 1.5rem; overflow-y: auto; flex: 1 1 auto; display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .cwf-pillar-modal__content { padding: 2rem; } }
.cwf-pillar-modal__eyebrow { display: flex; align-items: center; gap: .5rem; }
/* Always blue, regardless of the pillar's own accent -- matches the source. */
.cwf-pillar-modal__eyebrowicon { border-radius: .5rem; background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.2); padding: .5rem; color: #60a5fa; display: flex; }
.cwf-pillar-modal__eyebrowicon i, .cwf-pillar-modal__eyebrowicon svg { width: 1.5rem; height: 1.5rem; }
.cwf-pillar-modal__eyebrowtext { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #60a5fa; }
.cwf-pillar-modal__title { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 1.5rem; font-weight: 800; letter-spacing: -.025em; line-height: 1.375; color: #fff; margin: 0; }
@media (min-width: 640px) { .cwf-pillar-modal__title { font-size: 1.875rem; } }
.cwf-pillar-modal__divider { height: 1px; background: #1e293b; }
.cwf-pillar-modal__body { font-size: .875rem; line-height: 1.625; color: #e2e8f0; margin: 0; }
@media (min-width: 640px) { .cwf-pillar-modal__body { font-size: 1rem; } }
.cwf-pillar-modal__footer { margin-top: auto; padding-top: 1rem; border-top: 1px solid #1e293b; display: flex; align-items: center; gap: 1rem; }
.cwf-pillar-modal__cta { display: inline-flex; align-items: center; gap: .5rem; border-radius: .75rem; background: #2563eb; color: #fff; padding: .625rem 1.25rem; font-weight: 600; font-size: .875rem; transition: background .2s ease; }
.cwf-pillar-modal__cta:hover { background: #3b82f6; }
.cwf-pillar-modal__closebtn { margin-left: auto; padding: .625rem 1.25rem; border-radius: .75rem; border: 1px solid #334155; background: rgba(30,41,59,.8); color: #e2e8f0; font-size: .875rem; font-weight: 500; transition: background .2s ease; }
.cwf-pillar-modal__closebtn:hover { background: #1e293b; }
/* Scroll lock applied to <body> while the modal is open. */
body.cwf-modal-open { overflow: hidden; }

/* ==========================================================================
   9. SECTION 6 — OUR JOURNEY (TIMELINE)
   ========================================================================== */
.cwf-about .journey { position: relative; }
/* Two extra ambient orbs beyond the standard cwf-orb--tl/--br pair, matching
   the source's four-orb "parallax" background for this section only. */
.cwf-about .journey-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.cwf-about .journey-orb--a { top: 2.5rem; right: -5rem; width: 600px; height: 600px; background: rgba(34,197,94,.15); filter: blur(120px); }
.cwf-about .journey-orb--b { bottom: 2.5rem; left: 2.5rem; width: 450px; height: 450px; background: rgba(20,184,166,.15); filter: blur(90px); }
.cwf-about .journey-track { position: relative; margin-top: 3.5rem; }
/* The S-curve SVG. Desktop only — on mobile the cards stack in one column. */
.cwf-about .journey-curve { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .3; pointer-events: none; display: none; }
@media (min-width: 1024px) { .cwf-about .journey-curve { display: block; } }

.cwf-about .journey-row { position: relative; display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2.5rem; }
@media (min-width: 1024px) {
  /* Two columns, not three -- the node is taken out of grid flow entirely
     (see .journey-node below) and centered on the row's own box instead.
     A grid-column:2 "auto" middle track looked right in principle, but its
     width depends on the node being the only occupant of that track, and
     align-items:center only centers within whichever row-track height the
     grid ends up computing -- absolute-centering on the row's own rendered
     box has no such row-height-matching assumption to get wrong. */
  .cwf-about .journey-row { grid-template-columns: 1fr 1fr; align-items: center; gap: 2rem; margin-bottom: 3.5rem; }
  .cwf-about .journey-row__card { grid-column: 1; }
  .cwf-about .journey-row--right .journey-row__card { grid-column: 2; }
  .cwf-about .journey-row--right { direction: ltr; }
}
.cwf-about .journey-card {
  position: relative; background: rgba(255,255,255,.9); backdrop-filter: blur(12px);
  padding: 1.75rem; border-radius: var(--r-2xl); box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226,232,240,.8); border-left: 4px solid var(--accent, var(--google-blue));
  max-width: 28rem; transition: transform .3s ease, box-shadow .3s ease;
}
@media (min-width: 1024px) { .cwf-about .journey-row--right .journey-card { margin-left: auto; } }
.cwf-about .journey-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2xl); }
.cwf-about .journey-card__year {
  display: inline-block; border-radius: .5rem; padding: .25rem .75rem;
  font-size: .75rem; font-weight: 700;
  background: color-mix(in srgb, var(--accent, var(--google-blue)) 10%, transparent);
  color: var(--accent-text, var(--google-blue));
}
.cwf-about .journey-card__title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.25rem; font-weight: 700; letter-spacing: -.01em; margin-top: .5rem; }
@media (min-width: 768px) { .cwf-about .journey-card__title { font-size: 1.5rem; } }
.cwf-about .journey-card__desc { margin-top: .5rem; font-size: .875rem; line-height: 1.625; color: var(--about-on-surface-variant); }
@media (min-width: 768px) { .cwf-about .journey-card__desc { font-size: 1rem; } }

/* Visible at every width, not just desktop -- only the S-curve behind it is
   desktop-only. Sizes up at md (768px), same breakpoint as the source.

   Mobile/tablet (<1024px): a normal grid item, centered horizontally in
   the row's single column by its own auto margins, stacking below the card.

   Desktop (>=1024px): pulled OUT of grid flow and absolutely centered on
   the row's own box (row has position:relative) -- this is what actually
   keeps it level with its card regardless of how tall that card's text
   happens to be, instead of depending on the grid's row-track height. */
.cwf-about .journey-node {
  display: flex; margin: 0 auto; width: 3rem; height: 3rem; border-radius: 50%;
  align-items: center; justify-content: center;
  background: var(--accent, var(--google-blue)); color: #fff;
  border: 4px solid #fff; box-shadow: var(--shadow-xl); flex-shrink: 0;
}
.cwf-about .journey-node .cwf-icon, .cwf-about .journey-node .cwf-icon svg { width: 1.5rem; height: 1.5rem; }
@media (min-width: 768px) { .cwf-about .journey-node { width: 3.5rem; height: 3.5rem; } }
@media (min-width: 1024px) {
  .cwf-about .journey-node {
    position: absolute; left: 50%; top: 50%; margin: 0; z-index: 5;
    transform: translate(-50%, -50%);
  }
}

/* --- Closing banner: a LIGHT 2-column card (copy+checklist beside a framed
       image), not a full-bleed dark photo banner like AI Spotlight's. ----- */
.cwf-about .journey-banner {
  position: relative; overflow: hidden; margin-top: 4rem;
  border-radius: var(--r-3xl); background: rgba(255,255,255,.9); backdrop-filter: blur(12px);
  color: var(--about-on-surface);
  padding: 2rem 1.25rem; box-shadow: var(--shadow-2xl); border: 1px solid var(--slate-200);
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center;
}
@media (min-width: 768px) { .cwf-about .journey-banner { padding: 3.5rem; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 6rem; } }
.cwf-about .journey-banner__title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.25rem; line-height: 1.25; font-weight: 800;
  letter-spacing: -.01em; color: var(--about-on-surface); margin-bottom: 1rem;
}
@media (min-width: 768px) { .cwf-about .journey-banner__title { font-size: 3rem; } }
.cwf-about .journey-banner__title .accent { font-style: normal; color: var(--google-blue); }
.cwf-about .journey-banner__body { font-size: 1.125rem; line-height: 1.625; color: var(--about-on-surface-variant); margin-bottom: 2rem; }
.cwf-about .journey-banner__bullets { display: flex; flex-wrap: wrap; gap: 1rem; }
.cwf-about .journey-banner__bullets li { display: inline-flex; align-items: center; gap: .5rem; font-size: .875rem; font-weight: 700; color: var(--about-on-surface); }
.cwf-about .journey-banner__figure {
  position: relative; aspect-ratio: 4/3; width: 100%; border-radius: var(--r-2xl); overflow: hidden;
  box-shadow: var(--shadow-2xl); border: 1px solid var(--slate-100); background: var(--slate-100);
}
.cwf-about .journey-banner__figure img { width: 100%; height: 100%; object-fit: cover; }
.cwf-about .journey-banner__figure-empty {
  display: flex; align-items: center; justify-content: center; height: 100%;
  background: linear-gradient(to bottom right, rgba(66,133,244,.1), var(--slate-100), rgba(52,168,83,.1));
  color: var(--slate-300);
}
.cwf-about .journey-banner__figure-empty .cwf-icon, .cwf-about .journey-banner__figure-empty .cwf-icon svg { width: 4rem; height: 4rem; }
.cwf-about .journey-banner__bullets .cwf-icon,
.cwf-about .journey-banner__bullets .cwf-icon svg { width: 1.125rem; height: 1.125rem; }

/* ==========================================================================
   10. SECTION 7 — INDUSTRIES MARQUEE
   The track scrolls via JS (scrollLeft), not a CSS animation, because it has
   to pause on hover and resume from the exact same offset.
   ========================================================================== */
.cwf-about .industries-track {
  position: relative; z-index: 10; display: flex; gap: 1.25rem;
  overflow-x: auto; padding: .5rem var(--margin-mobile) .5rem;
  scrollbar-width: none; -ms-overflow-style: none;
}
@media (min-width: 768px) { .cwf-about .industries-track { padding-left: var(--margin-desktop); padding-right: var(--margin-desktop); } }
.cwf-about .industries-track::-webkit-scrollbar { display: none; }

.cwf-about .industries-accent { color: var(--google-blue); font-style: normal; }
.cwf-about .industry-card {
  flex: 0 0 auto; width: 18rem; padding: 1.25rem;
  border-radius: var(--r-3xl); border: 1px solid var(--slate-200);
  background: var(--industry-ivory);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  box-shadow: var(--glow, 0 0 18px -6px rgba(66,133,244,.45));
}
.cwf-about .industry-card:hover { transform: translateY(-8px); box-shadow: var(--glow-hover, 0 0 32px -4px rgba(66,133,244,.65)); }
/* Only this small circular button is a link -- the rest of the card is not
   clickable, matching the source (a motion.div, not a Link). */
.cwf-about .industry-card__top { display: flex; justify-content: flex-end; }
.cwf-about .industry-card__arrow {
  width: 2.25rem; height: 2.25rem; border-radius: 9999px; border: 1px solid color-mix(in srgb, var(--accent-text, var(--google-blue)) 40%, transparent);
  background: color-mix(in srgb, var(--accent-text, var(--google-blue)) 15%, transparent);
  color: var(--accent-text, var(--google-blue));
  display: flex; align-items: center; justify-content: center; transition: background .2s ease;
}
.cwf-about .industry-card__arrow:hover { background: color-mix(in srgb, var(--accent-text, var(--google-blue)) 25%, transparent); }
/* Gradient-clipped title, cycling colour pairs by index. */
.cwf-about .industry-card__title {
  margin-top: 1.25rem; display: block;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem; font-weight: 800; line-height: 1.2;
  background-image: linear-gradient(to right, var(--grad-from, var(--google-blue)), var(--grad-to, var(--google-green)));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cwf-about .industry-card__media {
  margin-top: 1rem; position: relative; aspect-ratio: 4/3; width: 100%;
  border-radius: var(--r-2xl); overflow: hidden;
}
.cwf-about .industry-card__media img { width: 100%; height: 100%; object-fit: cover; }
.cwf-about .industry-card__media-empty {
  display: flex; align-items: center; justify-content: center; height: 100%;
  background: linear-gradient(to bottom right, color-mix(in srgb, var(--accent-text, var(--google-blue)) 15%, transparent), color-mix(in srgb, var(--accent-text, var(--google-blue)) 5%, transparent));
}
.cwf-about .industry-card__media-empty .cwf-icon,
.cwf-about .industry-card__media-empty .cwf-icon svg { width: 2.5rem; height: 2.5rem; color: var(--accent-text, var(--google-blue)); opacity: .6; }
.cwf-about .industry-card__desc { display: block; margin-top: 1rem; font-size: .75rem; line-height: 1.625; color: var(--slate-600); }

/* ==========================================================================
   11. SECTION 8 — GLOBAL PRESENCE (3D globe + bento + stats band)
   ========================================================================== */
.cwf-about .globe-frame {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 100%; min-height: 460px; overflow: hidden;
  border-radius: 32px; border: 1px solid rgba(226,232,240,.7);
  padding: 1rem; box-shadow: var(--shadow-xl); backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(255,255,255,.9), rgba(248,250,252,.8), rgba(255,255,255,.9));
  margin: 2.5rem 0;
}
@media (min-width: 768px) { .cwf-about .globe-frame { padding: 2rem; margin-bottom: 3.5rem; } }
.cwf-about .globe-stage { position: relative; aspect-ratio: 1/1; width: 100%; max-width: 540px; margin: 0 auto; user-select: none; }
/* Canvas fades in once cobe has drawn its first frame. */
.cwf-about .globe-stage canvas { width: 100%; height: 100%; cursor: grab; opacity: 0; transition: opacity 1.2s ease; border-radius: 50%; touch-action: none; }
.cwf-about .globe-stage canvas:active { cursor: grabbing; }
/* Static fallback: shown when WebGL is unavailable or cobe fails to load. */
.cwf-about .globe-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; border-radius: 50%; overflow: hidden; background: linear-gradient(to bottom right, var(--blue-50), var(--slate-100)); }
.cwf-about .globe-fallback img { width: 100%; height: 100%; object-fit: cover; }

.cwf-about .presence-bento { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .cwf-about .presence-bento { grid-template-columns: repeat(12, 1fr); } }
.cwf-about .presence-card {
  border-radius: var(--r-3xl); border: 1px solid rgba(226,232,240,.8);
  background: rgba(255,255,255,.9); backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.cwf-about .presence-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
@media (min-width: 768px) {
  .cwf-about .presence-card { grid-column: span 4; }
  /* Featured: image on the RIGHT beside the copy (row-reverse, since the DOM
   puts media first for the standard-card layout to share markup) and a
   fixed square, not stretched to the card's full height. */
.cwf-about .presence-card--featured { grid-column: span 8; display: flex; flex-direction: column; }
}
.cwf-about .presence-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: linear-gradient(to bottom right, var(--red-50), var(--rose-50)); }
@media (min-width: 768px) {
  .cwf-about .presence-card--featured { flex-direction: row-reverse; align-items: center; gap: 1.5rem; padding: 1.5rem 2rem; }
  .cwf-about .presence-card--featured .presence-card__media { aspect-ratio: 1/1; width: 16rem; flex: 0 0 16rem; border-radius: var(--r-2xl); }
  .cwf-about .presence-card--featured .presence-card__body { padding: 0; }
}
.cwf-about .presence-card__media img { width: 100%; height: 100%; object-fit: cover; }
.cwf-about .presence-card__mediaicon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--red-500); }
.cwf-about .presence-card__mediaicon .cwf-icon, .cwf-about .presence-card__mediaicon .cwf-icon svg { width: 2.5rem; height: 2.5rem; }
.cwf-about .presence-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.cwf-about .presence-card__tagrow { display: flex; align-items: center; gap: .5rem; }
.cwf-about .presence-card__tagicon {
  flex: 0 0 auto; width: 2.5rem; height: 2.5rem; border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--accent-text, var(--google-blue)) 10%, transparent);
  color: var(--accent-text, var(--google-blue));
}
.cwf-about .presence-card__tag { font-size: .6875rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--accent-text, var(--google-blue)); }
.cwf-about .presence-card__title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.25rem; font-weight: 700; letter-spacing: -.01em; }
@media (min-width: 768px) { .cwf-about .presence-card__title { font-size: 1.5rem; } }
.cwf-about .presence-card__desc { line-height: 1.625; color: var(--slate-600); font-size: .875rem; }
@media (min-width: 768px) { .cwf-about .presence-card__desc { font-size: 1rem; } }
.cwf-about .presence-card__badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .25rem; }
.cwf-about .presence-card__badge {
  font-size: .6875rem; font-weight: 700; padding: .25rem .75rem; border-radius: var(--r-full);
  background: color-mix(in srgb, var(--accent-text, var(--google-blue)) 10%, transparent);
  color: var(--accent-text, var(--google-blue));
}
.cwf-about .presence-card__cta { margin-top: .5rem; display: inline-flex; align-items: center; gap: .375rem; font-size: .875rem; font-weight: 700; color: var(--accent-text, var(--google-blue)); }

.cwf-about .presence-stats {
  margin-top: 2.5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  border-radius: 24px; background: var(--google-blue); color: #fff; padding: 2rem;
}
@media (min-width: 768px) { .cwf-about .presence-stats { margin-top: 3.5rem; grid-template-columns: repeat(4, 1fr); padding: 2.5rem; } }
.cwf-about .presence-stat__value { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.875rem; font-weight: 800; }
@media (min-width: 768px) { .cwf-about .presence-stat__value { font-size: 2.25rem; } }
.cwf-about .presence-stat__label { font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; opacity: .8; margin-top: .25rem; }
@media (min-width: 768px) { .cwf-about .presence-stat__label { font-size: .875rem; } }

/* ==========================================================================
   12. SECTION 9 — DIGITAL PRESENCE
   ========================================================================== */
.cwf-about .digital-accent { font-style: italic; color: var(--google-blue); }
.cwf-about .digital-bento-wrap { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.5rem; }
.cwf-about .digital-bento { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .cwf-about .digital-bento--top { grid-template-columns: repeat(12, 1fr); } }
@media (min-width: 768px) { .cwf-about .digital-bento--fill { grid-template-columns: repeat(var(--fill-cols, 3), 1fr); } }
.cwf-about .digital-card {
  border-radius: var(--r-3xl); border-top: 8px solid var(--accent, var(--google-blue));
  background: rgba(255,255,255,.9); backdrop-filter: blur(12px);
  padding: 2rem; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column; gap: .625rem;
}
@media (min-width: 768px) {
  .cwf-about .digital-bento--top .digital-card { grid-column: span 4; padding: 2.5rem; }
  .cwf-about .digital-bento--top .digital-card--featured { grid-column: span 8; }
}
.cwf-about .digital-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.cwf-about .digital-card__icon {
  width: 123px; height: 123px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent, var(--google-blue));
  margin-bottom: .5rem; overflow: hidden;
}
.cwf-about .digital-card__icon .cwf-icon,
.cwf-about .digital-card__icon .cwf-icon svg,
.cwf-about .digital-card__icon svg { width: 67px; height: 67px; }
.cwf-about .digital-card__icon img { width: 67px; height: 67px; object-fit: contain; }
.cwf-about .digital-card__title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.25rem; font-weight: 700; }
.cwf-about .digital-card--featured .digital-card__title { font-size: 1.5rem; }
@media (min-width: 768px) { .cwf-about .digital-card--featured .digital-card__title { font-size: 1.875rem; } }
.cwf-about .digital-card__desc { font-size: .875rem; line-height: 1.625; color: var(--slate-600); }
@media (min-width: 768px) { .cwf-about .digital-card__desc { font-size: 1rem; } }
/* A real pill BUTTON, not an accent-colored text link with an arrow. */
.cwf-about .digital-card__cta {
  margin-top: auto; align-self: flex-start;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 9999px; border: 1px solid var(--slate-200); background: #fff;
  padding: .625rem 1.5rem; font-size: .875rem; font-weight: 700; color: var(--about-on-surface);
  transition: background .2s ease, border-color .2s ease;
}
.cwf-about .digital-card__cta:hover { border-color: var(--slate-300); background: var(--slate-50); }

.cwf-about .digital-brand {
  margin-top: 2rem;
  border-radius: var(--r-3xl); background: rgba(255,255,255,.9); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.6);
  padding: 1.75rem 2rem; box-shadow: var(--shadow-xl);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem;
}
@media (min-width: 768px) { .cwf-about .digital-brand { margin-top: 3rem; } }
.cwf-about .digital-brand__avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; background: var(--slate-100); flex-shrink: 0; }
.cwf-about .digital-brand__avatar--empty {
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.125rem; font-weight: 700; color: var(--slate-400);
}
.cwf-about .digital-brand__name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
.cwf-about .digital-brand__role { font-size: .875rem; color: var(--about-on-surface-variant); }
.cwf-about .digital-brand__divider { width: 1px; height: 3rem; background: var(--slate-200); }
.cwf-about .digital-brand__stat { display: flex; flex-direction: column; }
.cwf-about .digital-brand__value { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--google-blue); }
.cwf-about .digital-brand__value--ink { color: var(--about-on-surface); }
.cwf-about .digital-brand__label { font-size: .75rem; color: var(--about-on-surface-variant); }
.cwf-about .digital-brand__spacer { flex: 1 1 auto; }

/* ==========================================================================
   13. SECTION 10 — VIDEOS IN MOTION
   Staggered bento: a repeating 4-step cycle of span / offset / aspect ratio.
   ========================================================================== */
.cwf-about .videos-headline { margin-top: .5rem; font-size: 2rem; line-height: 2.5rem; font-weight: 600; color: var(--about-on-surface); }
.cwf-about .videos-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 80rem; margin: 3.5rem auto 0; }
@media (min-width: 768px)  { .cwf-about .videos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cwf-about .videos-grid { grid-template-columns: repeat(12, 1fr); align-items: start; } }

@media (min-width: 1024px) {
  .cwf-about .video-card--span7 { grid-column: span 7; }
  .cwf-about .video-card--span5 { grid-column: span 5; }
  .cwf-about .video-card--offset { margin-top: 4rem; }
}
.cwf-about .video-card {
  display: block; overflow: hidden; border-radius: var(--r-xl);
  border: 1px solid var(--accent-border, rgba(66,133,244,.2));
  background: rgba(255,255,255,.4); backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm); transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}
.cwf-about .video-card:hover { border-color: var(--accent-border-hover, rgba(66,133,244,.4)); }
.cwf-about .video-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-3px); }
.cwf-about .video-card__media { position: relative; overflow: hidden; background: var(--slate-200); }
.cwf-about .video-card__media--video   { aspect-ratio: 16/9; }
.cwf-about .video-card__media--square  { aspect-ratio: 1/1; }
.cwf-about .video-card__media--four3   { aspect-ratio: 4/3; }
.cwf-about .video-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.cwf-about .video-card:hover .video-card__media img { transform: scale(1.04); }
.cwf-about .video-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7), transparent 60%); opacity: .7; }
.cwf-about .video-card__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--youtube-red); filter: drop-shadow(0 4px 6px rgba(0,0,0,.3)); transition: transform .3s ease; }
.cwf-about .video-card:hover .video-card__play { transform: scale(1.1); }
.cwf-about .video-card__play .cwf-icon, .cwf-about .video-card__play .cwf-icon svg { width: 3rem; height: 3rem; }
.cwf-about .video-card__play--sm .cwf-icon, .cwf-about .video-card__play--sm .cwf-icon svg { width: 2.25rem; height: 2.25rem; }
/* Overlaid on the thumbnail's bottom-left corner, not a plain text label
   in the body below it. */
.cwf-about .video-card__tag {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  border-radius: 9999px; padding: .25rem .75rem;
  background: color-mix(in srgb, var(--accent-text, var(--google-blue)) 10%, transparent);
  font-size: .625rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--accent-text, var(--google-blue));
}
.cwf-about .video-card__body { padding: 1.5rem; }
@media (min-width: 768px) { .cwf-about .video-card__body { padding: 2rem; } }
.cwf-about .video-card__title { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.25rem; line-height: 1.75rem; font-weight: 600; font-style: italic; color: var(--about-on-surface); }
.cwf-about .video-card__desc { display: block; margin-top: .5rem; font-size: 1rem; line-height: 1.5rem; color: var(--about-on-surface-variant); }

/* ==========================================================================
   14. UTILITIES
   ========================================================================== */
.cwf-about .cwf-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
