/* =====================================================================
   1440Sports — Temporary Marketing Site
   Consolidated stylesheet: brand tokens + site shell + "warm-to-gold" hover.
   Sourced from the design handoff (colors_and_type.css, website-styles.css)
   and reconciled with the Ops style guide (radius tiers, token-first, the
   shared gold bloom / line-draw hover). Single fixed navy-and-cream palette.
   ===================================================================== */

/* ---------- Fonts --------------------------------------------------
   Montserrat is loaded via Google Fonts in index.html for the hosted
   preview. For a self-hosted production build, drop the Google <link>
   and uncomment the @font-face rules below (variable font shipped in
   /fonts) per the design-system handoff.

   @font-face {
     font-family: "Montserrat"; font-style: normal; font-weight: 100 900;
     font-display: swap;
     src: url("fonts/Montserrat-VariableFont_wght.ttf") format("truetype-variations");
   }
   @font-face {
     font-family: "Montserrat"; font-style: italic; font-weight: 100 900;
     font-display: swap;
     src: url("fonts/Montserrat-Italic-VariableFont_wght.ttf") format("truetype-variations");
   }
------------------------------------------------------------------- */

/* ---------- Tokens ------------------------------------------------- */
:root {
  /* Brand core */
  --navy:        #1C2355;
  --navy-900:    #131737;
  --navy-800:    #1C2355;
  --navy-700:    #262E6E;
  --navy-600:    #313A87;

  --gold:        #CAAF7F;
  --gold-700:    #A88E62;
  --gold-600:    #B89B6F;
  --gold-500:    #CAAF7F;
  --gold-400:    #D8C29A;
  --gold-300:    #E5D4B5;
  --gold-200:    #F1E6D1;
  --gold-100:    #F8F2E5;
  --gold-soft:   #D8C29A;

  --white:       #FFFFFF;
  --cream:       #FFF4E5;
  --paper:       #FAF8F4;

  /* Neutrals */
  --ink-900:     #0E1129;
  --ink-800:     #1C2355;
  --ink-700:     #2E335D;
  --ink-600:     #4A507A;
  --ink-500:     #6B7099;
  --ink-400:     #9296B5;
  --ink-300:     #BCBFD0;
  --ink-200:     #DEDFE6;
  --ink-100:     #EFEFF3;
  --ink-050:     #F7F7F9;

  /* Semantic */
  --fg-on-dark:   var(--white);
  --fg-on-dark-2: #C9CBDD;
  --fg-on-dark-3: #7B82A6;
  --fg-on-light:  var(--ink-900);
  --fg-on-light-2:#3B416A;
  --fg-on-light-3:#6B7099;

  --hairline:    rgba(255,255,255,0.12);
  --hairline-dk: rgba(28,35,85,0.12);

  /* Type */
  --font-sans:    'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:    ui-monospace, Menlo, monospace;

  /* Radius tiers (Ops style-guide 3-tier scale) */
  --radius-card:    16px;
  --radius-panel:   12px;
  --radius-control: 8px;
  --r-pill:         999px;

  /* Elevation */
  --shadow-2: 0 12px 32px -16px rgba(14,17,41,0.35);

  /* Motion */
  --ease-out:    cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-hover:  cubic-bezier(0.2, 0.7, 0.2, 1);
  --dur-1: 120ms;
  --dur-2: 220ms;
  --dur-3: 360ms;
  --dur-4: 600ms;
}

/* ---------- Base -------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--fg-on-light);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body { margin: 0; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-400); }
img { display: block; max-width: 100%; }

h1, h2, h3 { margin: 0; }

/* ---------- Kicker chip ------------------------------------------- */
.kicker {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-700); background: none;
  border: 1px solid var(--gold-700); border-radius: var(--radius-control);
  padding: 6px 15px; margin-bottom: 24px;
}
.kicker.on-dark { color: var(--gold); border-color: rgba(202,175,127,.55); }

.lede {
  font-size: 20px; line-height: 1.55; font-weight: 400; color: var(--fg-on-light-2);
}
.body { font-size: 17px; line-height: 1.55; font-weight: 400; text-wrap: pretty; }
.meta {
  font-size: 13px; letter-spacing: .02em; text-transform: uppercase;
  font-weight: 500; color: var(--fg-on-light-3);
}

/* ---------- Buttons ----------------------------------------------- */
.btn {
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: 16px 26px; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  border-radius: var(--radius-control);
  transition: background-color var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out);
}
.btn-primary { background: var(--gold); color: var(--navy); border: 1px solid var(--gold); font-weight: 700; }
.btn-primary:hover { background: var(--gold-400); }
.btn-primary:active { background: var(--gold-700); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.32); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost { background: transparent; color: var(--gold); padding: 16px 0; position: relative; }
.btn-ghost::after {
  content: ""; display: inline-block; width: 24px; height: 1px; background: var(--gold);
  margin-left: 6px; transition: width var(--dur-2) var(--ease-out);
}
.btn-ghost:hover::after { width: 40px; }
.btn i, .insight-more i, .footer-social i { display: inline-flex; }
.btn svg, .insight-more svg, .footer-social svg { width: 1em; height: 1em; }
.ic { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.insight-more .ic { width: 14px; height: 14px; }

/* ---------- Header ------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 56px;
  background: var(--navy);
  border-bottom: 1px solid var(--hairline);
  transition: background var(--dur-2);
}
.site-header.scrolled { background: rgba(28,35,85,.85); backdrop-filter: blur(24px); }
.site-header .brand img { height: 22px; }
.primary-nav { display: flex; gap: 36px; }
.primary-nav a {
  color: #fff; font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  position: relative; padding: 8px 0; transition: color var(--dur-2);
}
.primary-nav a:hover { color: var(--gold); }
.primary-nav a.active { color: var(--gold); }
.primary-nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--gold);
}
.contact-cta {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700;
  color: var(--navy); background: var(--gold); border: 1px solid var(--gold); padding: 12px 18px;
  border-radius: var(--radius-control); transition: background var(--dur-2);
}
.contact-cta:hover { background: var(--gold-400); }

/* ---------- Hero -------------------------------------------------- */
.hero {
  position: relative; background: var(--navy); color: #fff;
  padding: 56px; overflow: hidden;
  min-height: calc(100vh - 140px);
  min-height: calc(100svh - 140px);
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(19,23,55,.70) 0%, rgba(19,23,55,.40) 42%, rgba(19,23,55,.12) 100%),
    linear-gradient(180deg, rgba(11,14,36,.12) 0%, rgba(11,14,36,.34) 100%),
    url("assets/hero.jpg") center/cover no-repeat;
}
.hero-vignette { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 62%, rgba(14,17,41,.5) 100%); }
.hero-inner { position: relative; max-width: 980px; text-shadow: 0 1px 18px rgba(11,14,36,.35); }
.hero-inner .kicker { margin-bottom: 28px; }
.hero-h1 {
  font-size: clamp(48px, 7vw, 96px); font-weight: 500; letter-spacing: -0.025em;
  line-height: 1; margin: 0 0 32px; max-width: 12ch;
}
.hero-lede { font-size: 20px; line-height: 1.55; color: #C9CBDD; max-width: 580px; margin: 0 0 40px; font-weight: 400; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  position: absolute; right: 56px; bottom: 48px; display: flex; gap: 14px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.45); font-weight: 500;
}

/* ---------- Section heads ----------------------------------------- */
.section-head { padding: 0 56px; max-width: 1280px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(36px, 4vw, 56px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.05; max-width: 16ch; margin: 0 0 18px; }
.section-head .lede { font-size: 19px; line-height: 1.55; color: var(--fg-on-light-2); max-width: 640px; margin: 0; }

/* ---------- About ------------------------------------------------- */
.about { background: var(--cream); padding: 128px 0; }
.about-grid {
  display: grid; grid-template-columns: 5fr 7fr; gap: 96px; align-items: start;
  max-width: 1280px; margin: 0 auto; padding: 0 56px;
}
.about-title { font-size: clamp(32px,3.6vw,48px); font-weight: 500; letter-spacing: -.025em; line-height: 1.08; margin: 16px 0 0; color: var(--navy); }
.about-copy .lede { margin: 0 0 24px; color: var(--fg-on-light-2); }
.about-copy .body { margin: 0; color: var(--fg-on-light-2); }
.about-copy .body + .body { margin-top: 24px; }
.about-stats {
  list-style: none; padding: 32px 0 0; margin: 40px 0 0;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
  border-top: 1px solid var(--hairline-dk);
}
.about-stats .stat-big { font-size: 40px; font-weight: 500; color: var(--navy); letter-spacing: -.02em; }
.about-stats .meta { margin-top: 6px; }

/* ---------- Services ---------------------------------------------- */
.services { padding: 128px 0; background: var(--paper); }
.services-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 1280px; margin: 0 auto; padding: 0 56px; }
.service { padding: 56px 48px 56px 0; border-right: 1px solid rgba(28,35,85,.1); }
.service:last-child { padding: 56px 0 56px 48px; border-right: 0; }
.service .kicker { margin-bottom: 18px; }
.service-title { font-size: 32px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 20px; max-width: 14ch; }
.service-copy { font-size: 17px; line-height: 1.55; color: var(--fg-on-light-2); margin: 0 0 32px; max-width: 42ch; }
.service-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid rgba(28,35,85,.1); counter-reset: svc; }
.service-list li { padding: 18px 0 18px 28px; border-bottom: 1px solid rgba(28,35,85,.1); font-size: 15px; line-height: 1.5; color: var(--navy); position: relative; counter-increment: svc; }
.service-list li::before { content: "0" counter(svc); position: absolute; left: 0; top: 18px; font-family: var(--font-mono); font-size: 11px; color: var(--gold-700); letter-spacing: .04em; }

/* ---------- Stat panel -------------------------------------------- */
.stat-panel { background: linear-gradient(90deg, rgba(19,23,55,.94) 0%, rgba(19,23,55,.82) 55%, rgba(19,23,55,.70) 100%), url("assets/why.jpg") center/cover no-repeat; color: #fff; padding: 128px 0; }
.stat-panel-inner { max-width: 1280px; margin: 0 auto; padding: 0 56px; display: grid; grid-template-columns: 7fr 5fr; gap: 96px; align-items: center; }
.stat-h2 { font-size: clamp(32px, 3.6vw, 52px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.05; margin: 0 0 32px; }
.stat-quote { font-style: italic; font-size: 19px; line-height: 1.55; color: rgba(255,255,255,.78); border-left: 2px solid var(--gold); padding-left: 24px; margin: 0 0 28px; max-width: 60ch; }
.stat-attribution { display: flex; flex-direction: column; gap: 4px; font-size: 13px; color: rgba(255,255,255,.6); letter-spacing: .04em; }
.stat-attribution strong { color: #fff; font-weight: 600; }
.stat-figure { text-align: left; }
.stat-num { font-size: clamp(140px, 18vw, 240px); font-weight: 500; letter-spacing: -0.04em; line-height: .85; color: var(--gold); }
.stat-pct { color: #fff; }
.stat-cap { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,.7); margin-top: 24px; max-width: 36ch; }

/* ---------- Insights ---------------------------------------------- */
.insights { padding: 128px 0; background: var(--paper); }
.insights-rail {
  /* left/right edge = the content column's inner edge, so cards line up with the
     copy above and the fade sits entirely outside the copy (no card clipped). */
  --rail-edge: max(56px, calc((100% - 1280px) / 2 + 56px));
  display: flex; gap: 28px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--rail-edge);
  padding: 6px var(--rail-edge) 28px; scrollbar-width: none;
  -webkit-mask: linear-gradient(90deg, transparent 0, #000 var(--rail-edge), #000 calc(100% - var(--rail-edge)), transparent 100%);
          mask: linear-gradient(90deg, transparent 0, #000 var(--rail-edge), #000 calc(100% - var(--rail-edge)), transparent 100%);
}
.insights-rail::-webkit-scrollbar { display: none; }
.insight {
  background: #fff; border: 1px solid rgba(28,35,85,.08);
  border-radius: var(--radius-card); overflow: hidden;
  flex: 0 0 358px; scroll-snap-align: start; display: flex; flex-direction: column;
  transition: border-color var(--dur-2) var(--ease-hover);
}
.insight-img { aspect-ratio: 16/10; position: relative; overflow: hidden; background: var(--ink-100); }
.insight-img-blue   { background: linear-gradient(135deg, #2A3F8F 0%, #131737 100%); }
.insight-img-green  { background: linear-gradient(135deg, #1F2E5C 0%, #0E1129 100%); }
.insight-img-violet { background: linear-gradient(135deg, #34317A 0%, #131737 100%); }
.insight-img-amber  { background: linear-gradient(135deg, #4A3F2C 0%, #1C2355 100%); }
.insight-img-teal   { background: linear-gradient(135deg, #1F4A5C 0%, #131737 100%); }
.insight-img-indigo { background: linear-gradient(135deg, #3B408A 0%, #1C2355 100%); }
/* Placeholder label overlay — client is supplying photography */
.insight-img-stamp {
  position: absolute; right: 22px; top: 22px;
  font-size: 9px; letter-spacing: .25em; color: rgba(255,255,255,.5); font-weight: 600; text-transform: uppercase;
}
.insight-img-rule { position: absolute; left: 22px; top: 22px; width: 32px; height: 2px; background: var(--gold); }
.insight-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.insight-cat { font-size: 13px; font-weight: 600; color: var(--gold-700); margin: 0 0 14px; }
.insight-title { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.25; margin: 0; color: var(--navy); text-wrap: pretty; }
.insight-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: auto; padding-top: 20px; }
.insight-meta { font-size: 11px; letter-spacing: .14em; color: var(--ink-500); font-weight: 500; }
.insight-more { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-700); white-space: nowrap; }
.insight-more i { width: 14px; height: 14px; }
.insight:hover .insight-more { color: var(--gold); }
.insight:hover .insight-title { color: var(--gold-700); }
.insights-foot { max-width: 1280px; margin: 56px auto 0; padding: 0 56px; }

/* ---------- Partners strip (white per client feedback) ------------ */
.client-strip { background: #fff; padding: 64px 0; border-top: 1px solid var(--hairline-dk); border-bottom: 1px solid var(--hairline-dk); }
.client-strip-inner { max-width: 1280px; margin: 0 auto; padding: 0 56px; }
.client-strip-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; row-gap: 46px; column-gap: 40px; margin-top: 12px; }
.logo-cell { flex: 0 0 calc((100% - 4 * 40px) / 5); display: flex; align-items: center; justify-content: center; }
.client-name { font-weight: 600; font-size: 18px; color: var(--ink-700); letter-spacing: .04em; opacity: .85; transition: opacity var(--dur-2), color var(--dur-2); }
.client-name:hover { opacity: 1; color: var(--navy); }

/* ---------- CTA / Contact ----------------------------------------- */
.cta-section { background: var(--navy); color: #fff; padding: 128px 0; border-top: 1px solid var(--hairline); }
.cta-inner { max-width: 1280px; margin: 0 auto; padding: 0 56px; }
.cta-h2 { font-size: clamp(40px, 5vw, 72px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.05; margin: 0 0 28px; max-width: 16ch; }
.cta-copy { font-size: 19px; line-height: 1.55; color: rgba(255,255,255,.7); max-width: 56ch; margin: 0 0 40px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.contact-grid { display: grid; grid-template-columns: repeat(2,auto); gap: 56px; border-top: 1px solid var(--hairline); padding-top: 32px; }
.contact-grid a { font-size: 15px; color: #fff; }
.contact-grid a:hover { color: var(--gold); }

/* ---------- Footer ------------------------------------------------ */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.7); padding: 96px 56px 32px; border-top: 1px solid var(--hairline); }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; }
.footer-brand img { height: 24px; margin-bottom: 24px; }
.footer-blurb { font-size: 14px; line-height: 1.6; max-width: 38ch; margin: 0; color: rgba(255,255,255,.55); }
.footer-h { font-size: 13px; letter-spacing: 0; text-transform: none; font-weight: 600; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col address { font-size: 14px; color: rgba(255,255,255,.7); font-style: normal; line-height: 1.6; transition: color var(--dur-2); }
.footer-col a:hover { color: var(--gold); }
.footer-mail { display: block; margin-bottom: 20px; font-size: 14px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-control); color: rgba(255,255,255,.7); transition: all var(--dur-2); }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg, .footer-social i { width: 16px; height: 16px; }
.footer-rule { max-width: 1280px; margin: 64px auto 24px; height: 1px; background: rgba(255,255,255,.12); }
.footer-legal { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.4); letter-spacing: .04em; }

/* ---------- Scroll reveal ----------------------------------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity var(--dur-4) var(--ease-out), transform var(--dur-4) var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

/* =====================================================================
   "Warm-to-gold" hover — white bloom + gold line-draw from bottom-right,
   meeting at top-left. No lift, no scale, no shadow. (Shared with Ops
   .btn-bloom language.)
   ===================================================================== */
@property --draw { syntax: '<number>'; inherits: true; initial-value: 0; }

.warm { position: relative; overflow: hidden; isolation: isolate; }
.warm:hover { transform: none !important; box-shadow: none !important; }
.tile-glow, .tile-edge {
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0;
  transition: opacity var(--warm-dur, 700ms) var(--ease-hover);
}
.tile-glow {
  z-index: -1;
  background: radial-gradient(ellipse var(--glow-size, 105% 80%) at var(--bloom-origin, 100% 100%),
    var(--glow-color, rgba(255,255,255,0.22)), transparent 74%);
}
.tile-edge {
  z-index: 2; border: 1px solid var(--edge-color, rgba(202,175,127,0.5));
  transition: opacity var(--warm-dur, 700ms) var(--ease-hover), --draw var(--warm-dur, 700ms) var(--ease-hover);
  -webkit-mask: conic-gradient(from 135deg, #000 0deg, #000 calc(var(--draw) * 180deg), transparent calc(var(--draw) * 180deg), transparent calc(360deg - var(--draw) * 180deg), #000 calc(360deg - var(--draw) * 180deg), #000 360deg);
          mask: conic-gradient(from 135deg, #000 0deg, #000 calc(var(--draw) * 180deg), transparent calc(var(--draw) * 180deg), transparent calc(360deg - var(--draw) * 180deg), #000 calc(360deg - var(--draw) * 180deg), #000 360deg);
}
.btn-in { position: relative; z-index: 3; display: inline-flex; align-items: center; gap: 10px; }
.warm:hover .tile-glow, .warm:focus-visible .tile-glow { opacity: 1; }
.warm:hover .tile-edge, .warm:focus-visible .tile-edge { opacity: 1; --draw: 1; }

/* per-surface tuning */
.btn.warm, .contact-cta.warm { --warm-dur: 220ms; --glow-size: 120% 90%; }
.btn-primary.warm, .contact-cta.warm { --glow-color: rgba(255,252,246,0.22); --edge-color: var(--gold-soft); }
/* Gold CTA hover follows the Ops style guide's .btn-bloom-primary: a subtle
   warm-white sheen + a gold-soft edge draw. The navy label is pinned so the
   global a:hover gold rule can't tint it into the fill. */
.btn-primary:hover, .contact-cta:hover { background: var(--gold-400); color: var(--navy); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .tile-edge { transition: opacity 200ms ease; }
  .reveal { transition: opacity 200ms ease; transform: none; }
}

/* ---------- Responsive -------------------------------------------- */
@media (max-width: 860px) {
  .primary-nav { display: none; }
  .site-header, .hero, .site-footer { padding-left: 24px; padding-right: 24px; }
  .section-head, .about-grid, .services-split, .stat-panel-inner, .insights-foot,
  .insights-grid, .client-strip-inner, .cta-inner { padding-left: 24px; padding-right: 24px; }
  .hero-meta { right: 24px; }
  .services-split { grid-template-columns: 1fr; }
  .service, .service:last-child { padding: 40px 0; border-right: 0; border-bottom: 1px solid rgba(28,35,85,.1); }
  .stat-panel-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .insights-rail { --rail-edge: 24px; }
  .insight { flex-basis: 80vw; }
  .section-head { padding-left: 24px; padding-right: 24px; }
}

/* ---------- Article pages & Insights index ------------------------ */
.article-hero { position: relative; background: var(--navy); color: #fff; padding: 116px 56px 72px; overflow: hidden; }
.article-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 85% 12%, rgba(202,175,127,.10), transparent 60%), linear-gradient(180deg, var(--navy-900) 0%, var(--navy) 72%); }
.article-hero-inner { position: relative; max-width: 820px; margin: 0 auto; }
.article-back { display: flex; width: fit-content; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 30px; }
.article-back:hover { color: var(--gold-400); }
.article-title { font-size: clamp(32px, 4.4vw, 58px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.07; margin: 18px 0 20px; max-width: 20ch; }
.article-meta { font-size: 13px; letter-spacing: .04em; color: rgba(255,255,255,.6); }
.article-body { max-width: 720px; margin: 0 auto; padding: 64px 56px 8px; }
.article-body > p { font-size: 18px; line-height: 1.75; color: var(--ink-700); margin: 0 0 26px; text-wrap: pretty; }
.article-body h2 { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; color: var(--navy); margin: 46px 0 16px; }
.article-body h3 { font-size: 21px; font-weight: 600; color: var(--navy); margin: 36px 0 12px; }
.article-body blockquote { margin: 34px 0; padding: 4px 0 4px 26px; border-left: 2px solid var(--gold); font-style: italic; font-size: 21px; line-height: 1.55; color: var(--navy); }
.article-body ul, .article-body ol { margin: 0 0 26px; padding-left: 22px; }
.article-body li { font-size: 18px; line-height: 1.7; color: var(--ink-700); margin-bottom: 10px; }
.article-foot { max-width: 720px; margin: 0 auto; padding: 40px 56px 112px; }
.article-foot-top { border-top: 1px solid var(--hairline-dk); padding-top: 32px; }
.insights-index { max-width: 1280px; margin: 0 auto; padding: 64px 56px 128px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.insights-index .insight { flex: none; }
.insight-soon { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-400); white-space: nowrap; }
@media (max-width: 860px) {
  .article-hero { padding: 96px 24px 56px; }
  .article-body, .article-foot { padding-left: 24px; padding-right: 24px; }
  .insights-index { grid-template-columns: 1fr; padding-left: 24px; padding-right: 24px; }
}

/* ---------- Powered by Vercel ------------------------------------- */
.footer-powered { max-width: 1280px; margin: 18px auto 0; text-align: center; }
.footer-powered a { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: .04em; color: rgba(255,255,255,.42); transition: color var(--dur-2); }
.footer-powered a:hover { color: #fff; }
.footer-powered .vercel-logo { height: 15px; width: auto; display: inline-block; }

/* ---------- Insights grid (home 3-up) + clickable titles --------- */
.insights-grid { max-width: 1280px; margin: 0 auto; padding: 0 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.insights-grid .insight { flex: none; }
a.insight-img { display: block; }
.insight-title a { color: inherit; transition: color var(--dur-2); }
.insight-title a:hover { color: var(--gold-700); }
.insights-foot { text-align: center; }
/* Article breadcrumb (home + insights) */
.article-crumbs { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 30px; }
.article-crumbs a { color: var(--gold); }
.article-crumbs a:hover { color: var(--gold-400); }
.article-crumbs span { color: rgba(255,255,255,.4); }
@media (max-width: 860px) {
  .insights-grid { grid-template-columns: 1fr; padding-left: 24px; padding-right: 24px; }
}

/* ---------- Partner logo wall (white on navy) -------------------- */
.partner-logo { max-height: 44px; max-width: 190px; width: auto; height: auto; object-fit: contain; }
/* Text wordmarks — heights normalised so the visible letter body (x-height for
   lowercase, cap-height for caps) reads at a consistent size across the set.
   Values derived from each logo's ink-to-body ratio; SVGs cropped to tight bounds. */
.partner-logo[alt="Coursera"] { max-height: 20px; }
.partner-logo[alt="Concentrix"] { max-height: 29px; }
.partner-logo[alt="Medallia"] { max-height: 29px; }
.partner-logo[alt="AVEVA"] { max-height: 28px; }
.partner-logo[alt="TDK"] { max-height: 28px; }
.partner-logo[alt="Vercel"] { max-height: 28px; }
.partner-logo[alt="Udemy"] { max-height: 42px; }
.partner-logo[alt="Dow"] { max-height: 42px; }
/* Square / stacked lockups — need height to carry their detail */
.partner-logo[alt="Formula E"] { max-height: 44px; }
.partner-logo[alt="TrendAI"] { max-height: 54px; }
.partner-logo[alt="Jaguar TCS Racing"] { max-height: 56px; }
.partner-logo[alt="Cadillac F1"] { max-height: 58px; }
.partner-logo[alt="McLaren Racing"] { max-height: 58px; }
.partner-logo[alt="Mercedes Petronas F1 Team"] { max-height: 60px; }
.partner-logo[alt="Porsche Motorsport"] { max-height: 38px; }
@media (max-width: 860px) { .client-strip-row { row-gap: 34px; column-gap: 26px; } .logo-cell { flex-basis: calc((100% - 2 * 26px) / 3); } .partner-logo { max-height: 30px; } }
@media (max-width: 480px) { .logo-cell { flex-basis: calc((100% - 1 * 26px) / 2); } }
