/* =========================================================
   DECIPHER MARKETING - Redesigned site styles
   WordPress-friendly: standard sections, utility classes, no JS frameworks.
   ========================================================= */

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

:root {
  /* Brand */
  --brand-primary: #1e40af;
  --brand-deep:    #0b1d59;
  --brand-accent:  #3b82f6;
  --brand-soft:    #e6efff;
  --brand-tint:    #f3f7ff;
  --brand-chip:    #dbe7ff;

  /* Neutrals */
  --ink:    #0f172a;
  --slate:  #334155;
  --muted:  #64748b;
  --line:   #e2e8f0;
  --bg:     #ffffff;
  --bg-soft:#f8fafc;

  /* Effects */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.04), 0 1px 4px rgba(15,23,42,.04);
  --shadow:    0 4px 14px rgba(15,23,42,.06), 0 2px 6px rgba(15,23,42,.04);
  --shadow-lg: 0 24px 60px -20px rgba(11,29,89,.25);

  /* Layout */
  --container: 1200px;
  --gutter: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id], [id] { scroll-margin-top: 90px; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--brand-primary); text-decoration: none; }
a:hover { color: var(--brand-deep); }

h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 800; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { margin: 0 0 1em; color: var(--slate); }
.lead { font-size: 1.125rem; color: var(--slate); }

/* ============ Layout ============ */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: 96px 0; }
section.tight { padding: 64px 0; }
@media (max-width: 720px) { section { padding: 64px 0; } }

/* ============ Buttons ============ */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 22px; border-radius: 999px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 0.95rem; letter-spacing: -0.01em; border: 1.5px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease; white-space: nowrap; }
@media (max-width: 600px) {
  .btn, .btn-cta, .btn-youtube { white-space: normal; max-width: 100%; }
  .win-grid > span { min-width: 0; }
}
.btn-primary { background: var(--brand-primary); color: #fff; box-shadow: 0 8px 20px -8px rgba(30,64,175,.55); }
.btn-primary:hover { background: var(--brand-deep); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--brand-primary); border-color: var(--brand-primary); }
.btn-ghost:hover { background: var(--brand-primary); color: #fff; }
.btn-light { background: #fff; color: var(--brand-primary); border-color: var(--line); }
.btn-light:hover { border-color: var(--brand-primary); transform: translateY(-1px); }
.btn-lg { padding: 18px 38px; font-size: 1.1rem; }
.btn-cta { padding: 20px 46px; font-size: 1.2rem; letter-spacing: -0.01em; border: 0; background: var(--brand-primary); background-image: linear-gradient(120deg, var(--brand-accent), var(--brand-primary) 70%); box-shadow: 0 14px 30px -14px rgba(30,64,175,.55); }
.btn-cta:hover { background-image: linear-gradient(120deg, var(--brand-accent), var(--brand-primary) 70%); transform: translateY(-2px); box-shadow: 0 20px 40px -14px rgba(30,64,175,.7); }
.btn-youtube { background: #ff0000; color: #fff; box-shadow: 0 12px 28px -10px rgba(255,0,0,.55); }
.btn-youtube:hover { background: #e60000; color: #fff; transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(255,0,0,.7); }
.btn-youtube::before { content: "▶"; font-size: 0.78rem; margin-right: 2px; }
.btn-arrow::after { content: "→"; margin-left: 4px; transition: transform .2s ease; }
.btn-arrow:hover::after { transform: translateX(3px); }

/* ============ Header / Nav ============ */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.85); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid rgba(226,232,240,.7); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px var(--gutter); }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; letter-spacing: 0.02em; color: var(--brand-primary); font-size: 0.95rem; line-height: 1.1; }
.brand-mark { width: 36px; height: 36px; background: var(--brand-primary); border-radius: 8px; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 18px; letter-spacing: -0.02em; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text span:last-child { font-weight: 600; color: var(--ink); font-size: 0.85rem; margin-top: 2px; letter-spacing: 0.05em; }
.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--slate); font-weight: 500; font-size: 0.95rem; position: relative; padding: 6px 0; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--brand-primary); }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--brand-primary); border-radius: 2px; }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.social { display: flex; gap: 12px; color: var(--slate); }
.social a { color: var(--slate); display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; }
.social a:hover { color: var(--brand-primary); background: var(--brand-soft); }
@media (max-width: 920px) { .nav-links { display: none; } }

/* ============ Hero ============ */
.hero { position: relative; background: #eef3ff; padding: 72px 0 36px; overflow: hidden; }
.hero::before { content: none; }
.hero-inner { position: relative; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--brand-chip); color: var(--brand-deep); padding: 6px 14px; border-radius: 999px; font-size: 0.825rem; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 20px; }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-primary); }
.hero h1 .accent { color: var(--brand-primary); }
.hero h1 .underline { background: linear-gradient(180deg, transparent 60%, rgba(59,130,246,.25) 60%); }
.hero p.lead { max-width: 900px; margin-left: auto; margin-right: auto; font-size: 1.2rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 400; color: var(--ink); letter-spacing: normal; line-height: 1.4; }
.desk-break { display: none; }
@media (min-width: 601px) { .desk-break { display: inline; } }
.hero p.lead b { font-weight: 800; }
.mob-break { display: none; }
@media (max-width: 600px) { .mob-break { display: inline; } }
.cap-short { display: none; }
@media (max-width: 600px) { .cap-full { display: none; } .cap-short { display: inline; } }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; justify-content: center; }
/* Email-capture CTA */
.audit-cta { margin-top: 32px; }
.audit-cta-head { max-width: none; white-space: nowrap; margin: 0 auto 16px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--brand-primary); font-size: 1.08rem; line-height: 1.4; }
@media (max-width: 760px) { .audit-cta-head { white-space: normal; max-width: 420px; font-size: 1rem; } }
.email-pill { display: flex; align-items: center; gap: 8px; max-width: 660px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 8px 8px 20px; box-shadow: var(--shadow-lg); }
.email-pill .wave { font-size: 1.25rem; line-height: 1; }
.email-pill input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--ink); }
.email-pill input::placeholder { color: var(--muted); }
.btn-doit { border: 0; cursor: pointer; white-space: nowrap; background: var(--brand-primary); color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1rem; padding: 15px 28px; border-radius: 999px; transition: background .2s ease, transform .15s ease; }
.btn-doit, .btn-doit:hover, .btn-doit:focus, .btn-doit:visited { color: #fff; }
.btn-doit:hover { background: var(--brand-deep); transform: translateY(-1px); }
.btn-doit-wide { display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; width: 100%; max-width: 560px; padding: 22px 40px; font-size: 1.2rem; box-shadow: var(--shadow-lg); }
.apply-row { display: flex; gap: 12px; max-width: 560px; margin: 14px auto 0; }
.apply-row .btn { flex: 1; justify-content: center; }
@media (max-width: 480px) { .apply-row { flex-direction: column; } }
.audit-cta-foot { margin-top: 14px; color: var(--slate); font-size: 0.92rem; }
.audit-cta-foot .stars { color: #f5b301; letter-spacing: 1px; margin-right: 6px; }
.audit-cta-alt { margin-top: 18px; font-size: 0.92rem; color: var(--muted); }
.audit-cta-alt a { color: var(--brand-primary); font-weight: 600; }
@media (max-width: 560px) { .email-pill { flex-wrap: wrap; border-radius: 22px; padding: 12px; gap: 10px; } .email-pill input { flex: 1 1 100%; padding: 4px 6px; } .btn-doit { flex: 1 1 100%; padding: 15px; } }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 44px; border-radius: 20px; overflow: hidden; background: linear-gradient(115deg, #3f6fe0 0%, var(--brand-primary) 50%, var(--brand-deep) 100%); }
.hero-stats.hero-stats-4 { grid-template-columns: repeat(4, 1fr); }
.hero-stat { padding: 32px 28px; border-left: 1px solid rgba(255,255,255,.13); text-align: center; }
.hero-stat:first-child { border-left: none; }
.hero-stat .cap { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.hero-stat .num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1; }
.hero-stat .label { color: rgba(255,255,255,.82); font-size: 0.95rem; margin-top: 14px; }
@media (max-width: 920px) { .hero-stats.hero-stats-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .hero-stats, .hero-stats.hero-stats-4 { grid-template-columns: 1fr 1fr; } .hero-stat { border-left: none; border-top: 1px solid rgba(255,255,255,.13); padding: 16px 12px; } .hero-stat:first-child, .hero-stat:nth-child(2) { border-top: none; } .hero-stat .cap { font-size: 0.6rem; letter-spacing: 0.12em; margin-bottom: 8px; } .hero-stat .num { font-size: 1.55rem; } }
@media (max-width: 420px) { .hero-stat { padding: 14px 8px; } .hero-stat .num { font-size: 1.35rem; } }

/* Inner-page hero - matches home hero (~723px) so all four pages are uniform */
.hero-inner-page {
  padding: 24px 0 36px;
  text-align: center;
  background: linear-gradient(180deg, var(--brand-soft) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
  min-height: 497px;
  display: flex;
  align-items: center;
}
.hero-inner-page::after { content: ""; position: absolute; right: -160px; top: 30px; bottom: 0; width: 45%; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 220' fill='%23bcd0ff'><polygon points='100,0 200,100 150,100 150,220 50,220 50,100 0,100' opacity='.55'/><polygon points='100,40 180,120 145,120 145,220 55,220 55,120 20,120' opacity='.35'/></svg>") center/contain no-repeat; pointer-events: none; }
.hero-inner-page .container { position: relative; z-index: 1; width: 100%; }
.hero-inner-page p.lead { max-width: 620px; margin: 0 auto; }

/* ============ Sections ============ */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .eyebrow { background: var(--brand-tint); }
.section-head p { max-width: 640px; margin: 0 auto; color: var(--muted); }

/* Logo strip (legacy) */
.logo-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 32px; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); opacity: .8; }
.logo-strip span { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--muted); letter-spacing: -0.01em; font-size: 1.1rem; filter: grayscale(1); opacity: .65; }

/* Card grid */
.grid { display: grid; gap: 24px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) { .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; } }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(30,64,175,.25); }
.card .icon { width: 48px; height: 48px; border-radius: 12px; background: var(--brand-soft); color: var(--brand-primary); display: grid; place-items: center; margin-bottom: 18px; font-size: 22px; font-weight: 800; }
.card h4 { margin-bottom: 8px; }
.card p { font-size: 0.95rem; margin: 0; }

/* Dark cards */
.card-dark { background: var(--brand-deep); color: #fff; border: none; border-radius: var(--radius); padding: 32px; }
.card-dark h3, .card-dark h4 { color: #fff; }
.card-dark p { color: rgba(255,255,255,.78); }
.card-dark .icon { background: rgba(255,255,255,.08); color: #fff; }
.card-dark.gradient { background: linear-gradient(140deg, var(--brand-deep) 0%, #1e40af 50%, #2855c5 100%); }

/* Numbered list cards (legacy vertical) */
.numlist { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.numlist li { display: flex; gap: 16px; align-items: flex-start; padding: 18px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10); border-radius: 12px; }
.numlist .n { flex: 0 0 auto; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.12); display: grid; place-items: center; color: #fff; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; }
.numlist h4 { margin-bottom: 4px; }
.numlist p { color: rgba(255,255,255,.78); font-size: 0.92rem; margin: 0; }

/* ============ Pod Card (Industry-specific pods section) ============ */
.pod-card {
  background: linear-gradient(140deg, var(--brand-deep) 0%, #1e40af 60%, #2855c5 100%);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.pod-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(255,255,255,.18), transparent 45%);
  pointer-events: none;
}
.pod-card > * { position: relative; }
.pod-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.pod-tag {
  background: rgba(255,255,255,.14);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.pod-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}
.pod-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,.25);
}
.pod-industry {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.pod-members {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.pod-member {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pod-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  flex: 0 0 auto;
}
.pod-meta { min-width: 0; }
.pod-name { color: #fff; font-weight: 600; font-size: 0.92rem; }
.pod-role { color: rgba(255,255,255,.65); font-size: 0.75rem; line-height: 1.3; }
.pod-divider {
  border: 0;
  border-top: 1px solid rgba(255,255,255,.12);
  margin: 0 0 18px;
}
.pod-features {
  display: grid;
  gap: 10px;
}
.pod-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.88);
  font-size: 0.92rem;
}
.pod-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-accent);
  flex: 0 0 auto;
}
@media (max-width: 600px) {
  .pod-members { grid-template-columns: 1fr; }
}

/* ============ Meet the team - marquee carousel ============ */
.team-marquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0 16px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.team-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: team-scroll 60s linear infinite;
}
.team-marquee:hover .team-track { animation-play-state: paused; }
@keyframes team-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.team-member {
  flex: 0 0 auto;
  width: 200px;
  text-align: center;
}
.team-photo {
  width: 200px;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--brand-soft);
  margin-bottom: 14px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-member:hover .team-photo {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.team-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.98rem;
  margin-bottom: 4px;
}
.team-role {
  color: var(--muted);
  font-size: 0.85rem;
}

/* ============ Roadmap (connected disciplines) ============ */
.roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.roadmap::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(30,64,175,.15) 0%, var(--brand-primary) 30%, var(--brand-primary) 70%, rgba(30,64,175,.15) 100%);
  z-index: 0;
}
.roadmap-step { text-align: center; position: relative; z-index: 1; padding: 0 8px; }
.roadmap-node {
  width: 72px; height: 72px; border-radius: 50%;
  background: #fff; border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
  display: grid; place-items: center;
  margin: 0 auto 18px;
  position: relative;
  box-shadow: 0 6px 16px -8px rgba(30,64,175,.4);
  transition: transform .25s ease, box-shadow .25s ease;
}
.roadmap-step:hover .roadmap-node { transform: translateY(-3px); box-shadow: 0 12px 28px -10px rgba(30,64,175,.55); }
.roadmap-icon { font-size: 26px; font-weight: 800; }
.roadmap-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.roadmap-step:hover .roadmap-card {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30,64,175,.25);
}
.roadmap-card h4 { margin-bottom: 8px; }
.roadmap-card p { font-size: 0.92rem; color: var(--slate); margin: 0; }
.roadmap.cols-3 { grid-template-columns: repeat(3, 1fr); }
.roadmap.cols-3::before { left: 16.66%; right: 16.66%; }
@media (max-width: 920px) { .roadmap, .roadmap.cols-3 { grid-template-columns: 1fr 1fr; gap: 40px 24px; } .roadmap::before { display: none; } }
@media (max-width: 600px) { .roadmap { grid-template-columns: 1fr; } }

/* ============ Wavy journey roadmap (pin drops weaving down the page) ============ */
#how-it-works { background: linear-gradient(180deg, #eef3ff 0%, #f6f9ff 45%, #ffffff 100%); }
.wroad { position: relative; max-width: none; margin: 0 auto; }
.wroad::before {
  content: ""; position: absolute; top: 20px; bottom: 20px; left: 11px; width: 3px;
  background: rgba(30,64,175,.16); border-radius: 3px; pointer-events: none;
}
.wroad-progress { position: absolute; top: 20px; left: 11px; width: 3px; height: 0; border-radius: 3px; z-index: 0; pointer-events: none; background: linear-gradient(180deg, var(--brand-accent), var(--brand-primary)); transition: height .12s linear; }
/* scroll reveal (only active once JS marks it ready) */
.wroad.reveal-ready .wroad-step { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.wroad.reveal-ready .wroad-step.in-view { opacity: 1; transform: none; }
.wroad.reveal-ready .wroad-pin { transform: scale(.35); opacity: 0; transition: transform .45s ease .1s, opacity .45s ease .1s; }
.wroad.reveal-ready .wroad-step.in-view .wroad-pin { transform: scale(1); opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .wroad.reveal-ready .wroad-step, .wroad.reveal-ready .wroad-pin { opacity: 1 !important; transform: none !important; transition: none; }
}
.wroad-step { position: relative; display: grid; grid-template-columns: 24px 1fr; column-gap: 24px; align-items: start; margin-bottom: 0; }
.wroad-step + .wroad-step { margin-top: 20px; }
.wroad-pin { grid-column: 1; justify-self: center; align-self: start; margin-top: 30px; width: 20px; height: 20px; border-radius: 50%; background: var(--brand-primary); border: 4px solid #fff; box-shadow: 0 0 0 3px rgba(30,64,175,.2); z-index: 1; }
.wroad-card { grid-column: 2; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 30px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.wroad-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: rgba(30,64,175,.25); }
.wroad-card .eyebrow { margin-bottom: 10px; }
.wroad-card h3 { margin: 0 0 10px; }
.wroad-card p { margin: 0; }
.journey-list { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 12px; }
.journey-list li { display: flex; gap: 11px; align-items: flex-start; color: var(--slate); font-size: 0.98rem; }
.journey-list li b { color: var(--ink); }
.journey-check { color: var(--brand-primary); font-weight: 800; flex: 0 0 auto; }
.pods-highlight { display: block; max-width: 560px; margin: 18px auto 0; color: var(--brand-primary); font-weight: 600; font-style: italic; font-size: 1.08rem; line-height: 1.5; }
/* Landing page mobile sticky CTA (hidden until scrolled) */
.lp-sticky-cta { display: none; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200; align-items: center; justify-content: center; text-align: center; background: var(--brand-primary); color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.05rem; padding: 16px; border-radius: 999px; text-decoration: none; box-shadow: 0 14px 36px -8px rgba(30,64,175,.55); opacity: 0; transform: translateY(140%); transition: opacity .25s ease, transform .3s ease; }
.lp-sticky-cta.show { opacity: 1; transform: translateY(0); }
@media (max-width: 720px) {
  .lp-sticky-cta { display: flex; }
  .lp .site-header .nav-actions { display: none; }
}
.win-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 16px; }
.win-grid span { display: flex; align-items: center; justify-content: center; text-align: center; gap: 8px; background: transparent; border: 1.5px solid var(--brand-primary); border-radius: 12px; padding: 16px 12px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--brand-deep); font-size: 0.92rem; }
@media (max-width: 720px) { .win-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .win-grid { grid-template-columns: 1fr; } }
@media (max-width: 760px) {
  .wroad-step { grid-template-columns: 22px 1fr; column-gap: 16px; }
  .wroad-card { padding: 22px 20px; }
}

/* ============ Values grid (Mission - editorial core behaviours layout) ============ */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.value-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  padding: 40px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background .2s ease, transform .2s ease;
}
.value-block:hover {
  background: var(--brand-tint);
}
.value-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
}
.value-block h3 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  color: var(--ink);
  letter-spacing: -0.02em;
}
.value-block p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
  max-width: 38ch;
}
@media (max-width: 720px) {
  .values-grid { grid-template-columns: 1fr; }
  .value-block { padding: 32px 24px; gap: 20px; }
}

/* ============ Join feature (Careers - direct the future + how we invest) ============ */
.join-feature {
  padding: 72px 64px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.join-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(255,255,255,.18), transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(255,255,255,.10), transparent 50%);
  pointer-events: none;
}
.join-feature > * { position: relative; }
.join-tag {
  display: inline-block;
  background: rgba(255,255,255,.14);
  color: #fff;
  padding: 5px 14px;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 32px;
}
.join-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: start;
}
.join-headline {
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
}
.join-highlight {
  background: linear-gradient(180deg, transparent 65%, rgba(59,130,246,.55) 65%);
  padding: 0 2px;
}
.join-body p {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 1em;
}
.join-cta {
  margin-top: 24px;
  background: #fff;
  color: var(--brand-primary);
}
.join-cta:hover {
  background: var(--brand-soft);
  color: var(--brand-deep);
}
.join-divider {
  border: 0;
  border-top: 1px solid rgba(255,255,255,.12);
  margin: 64px 0 40px;
}
.join-points-head { margin-bottom: 32px; max-width: 720px; }
.join-points-head h3 { color: #fff; margin-bottom: 8px; }
.join-points-head p { color: rgba(255,255,255,.75); margin: 0; }

@media (max-width: 920px) {
  .join-feature { padding: 56px 32px; }
  .join-grid { grid-template-columns: 1fr; gap: 28px; }
  .join-divider { margin: 48px 0 32px; }
}
@media (max-width: 600px) {
  .join-feature { padding: 40px 24px; }
}

/* Numbered card (4-col grid, used inside dark gradient) - white floating */
.num-card {
  padding: 32px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 40px -18px rgba(0,0,0,.45);
  transition: transform .22s ease, box-shadow .22s ease;
  position: relative;
  overflow: hidden;
}
.num-card::before {
  /* subtle brand accent stripe on top edge */
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
}
.num-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px -18px rgba(0,0,0,.55);
}
.num-card-n {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  display: grid; place-items: center;
  color: #fff;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px -6px rgba(30,64,175,.55);
}
.num-card h4 {
  color: var(--ink);
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.num-card p {
  color: var(--slate);
  font-size: 0.92rem;
  margin: 0;
}

/* Two-column feature */
.feature { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.feature.reverse { grid-template-columns: .95fr 1.05fr; direction: rtl; }
.feature.reverse > * { direction: ltr; }
@media (max-width: 920px) { .feature, .feature.reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; } }

.media { border-radius: var(--radius); overflow: hidden; background: var(--brand-soft); aspect-ratio: 4/3; position: relative; box-shadow: var(--shadow-lg); }
.media .placeholder { position: absolute; inset: 0; display: grid; place-items: center; background: radial-gradient(circle at 30% 20%, rgba(59,130,246,.25), transparent 50%), linear-gradient(135deg, var(--brand-soft) 0%, #c8dcff 100%); }
.media .placeholder .wordmark { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; color: var(--brand-deep); font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -0.02em; text-align: center; line-height: 1.05; }
.media .placeholder .wordmark span { display: block; color: var(--ink); font-weight: 600; font-size: .55em; letter-spacing: .25em; margin-top: 6px; }
.media .tag { position: absolute; left: 18px; top: 18px; background: rgba(255,255,255,.92); color: var(--brand-deep); padding: 6px 12px; border-radius: 999px; font-size: 0.78rem; font-weight: 600; backdrop-filter: blur(6px); }

/* Clean placeholder (no wordmark) for image slots */
.placeholder.placeholder-clean { background: linear-gradient(135deg, #dbe7ff 0%, #b9d0ff 100%); }
.placeholder-label { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; color: rgba(11,29,89,.45); font-size: .8rem; letter-spacing: 0.18em; text-transform: uppercase; }

/* ============ Logo Marquee ============ */
.logo-marquee { position: relative; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 24px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.logo-track { display: flex; gap: 64px; align-items: center; width: max-content; animation: logo-scroll 32s linear infinite; }
.logo-track span { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--muted); letter-spacing: -0.01em; font-size: 1.1rem; white-space: nowrap; opacity: .55; filter: grayscale(1); }
@keyframes logo-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-track img { height: 60px; width: auto; border-radius: 10px; opacity: .9; flex: 0 0 auto; transition: opacity .2s ease, transform .2s ease; }
.logo-track img:hover { opacity: 1; transform: translateY(-3px); }

/* ============ Founder Carousel ============ */
.founder-carousel { max-width: 980px; margin: 0 auto; position: relative; }
.founder-viewport { overflow: hidden; border-radius: var(--radius-lg); }
.founder-track { display: flex; transition: transform .5s cubic-bezier(.4,.2,.2,1); }
.founder-slide { flex: 0 0 100%; padding: 40px 44px; border-radius: var(--radius-lg); display: grid; grid-template-columns: 130px 1fr; gap: 36px; align-items: center; }
.founder-photo img { width: 130px; height: 150px; object-fit: cover; border-radius: 14px; display: block; box-shadow: 0 14px 34px -14px rgba(0,0,0,.6); }
@media (max-width: 640px) { .founder-slide { grid-template-columns: 1fr; gap: 20px; text-align: center; } .founder-photo img { width: 110px; height: 130px; margin: 0 auto; } .founder-meta { justify-content: center; } }
.founder-tag { display: inline-block; background: rgba(255,255,255,.14); color: #fff; padding: 3px 10px; border-radius: 999px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; margin-bottom: 14px; }
.founder-quote { color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 500; margin: 0; }
.founder-quote p { color: #fff; font-size: 0.95rem; line-height: 1.55; margin: 0 0 .85em; }
.founder-quote p:last-child { margin-bottom: 0; }
.founder-meta { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.founder-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.18); display: grid; place-items: center; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; color: #fff; font-size: 0.85rem; }
.founder-name { color: #fff; font-weight: 600; font-size: 0.95rem; }
.founder-role { color: rgba(255,255,255,.7); font-size: .82rem; }
.founder-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 24px; }
.founder-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--brand-primary); cursor: pointer; display: grid; place-items: center; transition: background .2s ease, border-color .2s ease, transform .15s ease; }
.founder-btn:hover { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); transform: translateY(-1px); }
.founder-dots { display: flex; gap: 8px; }
.founder-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line); border: 0; cursor: pointer; padding: 0; transition: background .2s ease, transform .2s ease; }
.founder-dot.active { background: var(--brand-primary); transform: scale(1.4); }

/* ============ CTA banners ============ */
.cta-banner { background: var(--brand-tint); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 48px; display: grid; grid-template-columns: 1.4fr 1fr; align-items: center; gap: 32px; }
.cta-banner h3 { margin-bottom: 8px; }
.cta-banner p { margin-bottom: 18px; max-width: 480px; }
.cta-banner .wordmark-block { text-align: right; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; color: var(--brand-primary); font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.02em; line-height: 1; }
.cta-banner .wordmark-block span { display: block; color: var(--slate); font-weight: 600; font-size: .55em; letter-spacing: .25em; margin-top: 8px; }
@media (max-width: 800px) { .cta-banner { grid-template-columns: 1fr; padding: 32px; } .cta-banner .wordmark-block { text-align: left; } }

.cta-dark { background: linear-gradient(140deg, var(--brand-deep) 0%, #1e40af 60%, #2855c5 100%); border-radius: var(--radius-lg); padding: 64px; color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-dark::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.18), transparent 40%), radial-gradient(circle at 10% 90%, rgba(255,255,255,.10), transparent 40%); }
.cta-dark > * { position: relative; }
.cta-dark h2 { color: #fff; max-width: 720px; margin-left: auto; margin-right: auto; }
.cta-dark p { color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto 24px; }
.cta-dark .btn-primary { background: #fff; color: var(--brand-primary); }
.cta-dark .btn-primary:hover { background: var(--brand-soft); color: var(--brand-deep); }
.cta-dark .btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.cta-dark .btn-ghost:hover { background: #fff; color: var(--brand-primary); }
@media (max-width: 720px) { .cta-dark { padding: 40px 24px; } }

/* ============ Footer ============ */
footer.site-footer { background: var(--brand-tint); padding: 72px 0 28px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.footer-grid h5 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--ink); margin-bottom: 14px; font-size: 0.95rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-grid a, .footer-grid li { color: var(--slate); font-size: 0.95rem; }
.footer-grid a:hover { color: var(--brand-primary); }
.footer-grid p { font-size: 0.95rem; max-width: 320px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; color: var(--slate); }
.footer-contact-item svg { color: var(--brand-primary); flex: 0 0 auto; }
.trustpilot { display: inline-flex; align-items: center; gap: 6px; background: #fff; padding: 8px 12px; border-radius: 8px; border: 1px solid var(--line); font-size: 0.82rem; color: var(--ink); font-weight: 600; margin-top: 12px; }
.trustpilot .stars { color: #00b67a; letter-spacing: -2px; font-size: 1rem; }
.footer-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: var(--muted); }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============ Form ============ */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 0.875rem; color: var(--ink); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; font-family: inherit; font-size: 0.95rem; color: var(--ink); background: var(--bg-soft); transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--brand-primary); background: #fff; box-shadow: 0 0 0 4px rgba(30,64,175,.12); }
.form-group textarea { min-height: 140px; resize: vertical; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ============ FAQ ============ */
.faq { display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; transition: border-color .2s ease; }
.faq details[open] { border-color: var(--brand-primary); }
.faq summary { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand-primary); font-size: 1.4rem; font-weight: 400; transition: transform .2s ease; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: 12px; margin-bottom: 0; }

/* ============ Misc ============ */
.bg-soft { background: var(--bg-soft); }
.bg-tint { background: var(--brand-tint); }
.text-center { text-align: center; }
.divider { border: 0; border-top: 1px solid var(--line); margin: 0; }
.tag-pill { display: inline-block; background: var(--brand-chip); color: var(--brand-deep); padding: 4px 10px; border-radius: 6px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em; }

/* ============ Nav dropdown (Pods) ============ */
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown > a { display: inline-flex; align-items: center; gap: 6px; }
.nav-caret { transition: transform .2s ease; }
.nav-links .has-dropdown:hover .nav-caret,
.nav-links .has-dropdown:focus-within .nav-caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 224px; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow-lg); padding: 8px; margin: 10px 0 0;
  list-style: none; opacity: 0; visibility: hidden;
  transition: opacity .18s ease, transform .18s ease; z-index: 60;
}
/* invisible hover bridge so the menu doesn't close in the gap */
.dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }
.nav-links .has-dropdown:hover .dropdown,
.nav-links .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown li { display: block; }
.dropdown a { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 10px; color: var(--slate); font-size: 0.92rem; font-weight: 500; }
.dropdown a::after { display: none; }
.dropdown a:hover { background: var(--brand-tint); color: var(--brand-primary); }
.dropdown a .pd-ico { width: 30px; height: 30px; border-radius: 8px; background: var(--brand-soft); color: var(--brand-primary); display: grid; place-items: center; font-size: 15px; flex: 0 0 auto; }
.dropdown a .pd-text { display: flex; flex-direction: column; line-height: 1.2; }
.dropdown a .pd-text small { color: var(--muted); font-size: 0.72rem; font-weight: 500; }

/* ============ Editable content placeholder marker ============ */
.ph { color: var(--muted); background: var(--brand-tint); border: 1px dashed var(--brand-chip); padding: 1px 7px; border-radius: 6px; font-style: italic; }

/* ============ Brand logo image ============ */
.brand-logo { height: 34px; width: auto; display: block; }
.site-footer .brand-logo { height: 42px; }
@media (max-width: 480px) { .brand-logo { height: 30px; } }

/* ============ Featured case study note bubble + video ============ */
.case-note { position: relative; max-width: 640px; margin: 6px auto 30px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px 30px; box-shadow: var(--shadow); text-align: center; }
.case-note p { margin: 0; color: var(--ink); font-size: 1.05rem; line-height: 1.55; }
.case-note::after { content: ""; position: absolute; left: 50%; bottom: -10px; transform: translateX(-50%) rotate(45deg); width: 20px; height: 20px; background: #fff; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.case-video { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); background: #0b1640; }
.case-video wistia-player { display: block; }

/* ============ Results stat strip + quote (in roadmap card) ============ */
.res-stats { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--brand-tint); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; margin: 20px 0 22px; }
.res-stats .rs { display: flex; align-items: baseline; justify-content: center; gap: 6px; padding: 12px 8px; text-align: center; }
.res-stats .rs + .rs { border-left: 1px solid var(--line); }
.res-stats .rs .n { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--brand-primary); line-height: 1; letter-spacing: -0.02em; }
.res-stats .rs .l { color: var(--muted); font-size: 0.78rem; margin-top: 0; }
.res-quote { border-left: 3px solid var(--brand-primary); padding-left: 18px; margin: 0; }
.res-quote p { font-style: italic; color: var(--ink); font-size: 1.02rem; line-height: 1.5; margin: 0 0 12px; }
.res-quote .who { font-weight: 400; color: var(--muted); }
.res-quote .org { color: var(--muted); font-size: 0.9rem; }
@media (max-width: 440px) { .res-stats { grid-template-columns: 1fr; } .res-stats .rs + .rs { border-left: none; border-top: 1px solid var(--line); } }

/* ============ Reviews wall (masonry) ============ */
.reviews-wall { columns: 3 300px; column-gap: 22px; max-width: 1120px; margin: 0 auto; }
@media (max-width: 900px) { .reviews-wall { columns: 2 260px; } }
@media (max-width: 560px) { .reviews-wall { columns: 1; } }
.review-card { break-inside: avoid; -webkit-column-break-inside: avoid; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; margin: 0 0 22px; box-shadow: var(--shadow-sm); }
.review-stars { color: #f5b301; letter-spacing: 1px; font-size: 0.95rem; margin-bottom: 10px; }
.review-card p { color: var(--slate); font-size: 0.94rem; line-height: 1.55; margin: 0 0 14px; }
.review-who { font-weight: 700; color: var(--ink); font-size: 0.92rem; font-family: 'Plus Jakarta Sans', sans-serif; }
.review-date { color: var(--muted); font-size: 0.82rem; margin-top: 2px; }

/* ============ Client win cards (with embedded video) ============ */
.win-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.win-video { position: relative; aspect-ratio: 16 / 9; background: #0b1640; }
.win-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.win-body { padding: 22px 26px 26px; }
.win-body .win-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--ink); margin: 0 0 4px; }
.win-result { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.98rem; color: var(--brand-primary); margin-bottom: 14px; }
.win-quote { font-style: italic; color: var(--slate); margin: 0; font-size: 0.98rem; line-height: 1.55; }
.case-years { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 22px 0; }
.case-years .yr { text-align: center; padding: 16px 10px; background: var(--brand-tint); border-radius: 12px; }
.case-years .yr .y { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; color: var(--muted); }
.case-years .yr .rev { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--brand-deep); line-height: 1; margin: 6px 0 4px; }
.case-years .yr .lds { color: var(--slate); font-size: 0.85rem; }
@media (max-width: 600px) { .case-years { grid-template-columns: 1fr; } }

/* ============ Case study bar chart ============ */
.case-chart { max-width: 760px; margin: 24px auto 10px; }
.case-chart .chart { display: flex; align-items: flex-end; gap: 30px; height: 360px; border-bottom: 2px solid var(--line); padding: 0 6px; }
.case-chart .chart-col { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; }
.case-chart .chart-val { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.35rem; color: var(--ink); margin-bottom: 12px; white-space: nowrap; }
.case-chart .chart-val .fc { color: var(--brand-primary); }
.case-chart .chart-val .fc-note { font-weight: 600; font-size: 0.85rem; color: var(--brand-primary); }
.case-chart .chart-bar { width: 100%; max-width: 190px; border-radius: 14px 14px 0 0; }
.case-chart .bar-2024 { height: 42px; background: #a9c3f5; }
.case-chart .bar-2025 { height: 262px; background: #3f6fe0; }
.case-chart .bar-2026 { width: 100%; max-width: 190px; height: 300px; display: flex; flex-direction: column; }
.case-chart .bar-2026 .fcast { flex: 1; background: repeating-linear-gradient(45deg, #e6edfb, #e6edfb 7px, #ffffff 7px, #ffffff 14px); border: 2px dashed var(--brand-primary); border-bottom: none; border-radius: 14px 14px 0 0; }
.case-chart .bar-2026 .ytd { height: 125px; background: var(--brand-deep); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; }
.case-chart .bar-2026 .ytd .v { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.2rem; }
.case-chart .bar-2026 .ytd .t { font-size: 0.78rem; opacity: 0.8; }
.case-chart .chart-x { display: flex; gap: 30px; padding: 0 6px; }
.case-chart .chart-x > div { flex: 1; text-align: center; padding-top: 14px; }
.case-chart .chart-x .yr-l { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--ink); }
.case-chart .chart-x .ld-l { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }
@media (max-width: 560px) { .case-chart .chart, .case-chart .chart-x { gap: 14px; } .case-chart .chart-val { font-size: 1.05rem; } .case-chart .chart-x .ld-l { font-size: 0.78rem; } }

/* ============ Industries chip grid ============ */
.industries { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 920px; margin: 0 auto; }
.industry-chip { display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line); color: var(--ink); padding: 12px 20px; border-radius: 999px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 0.95rem; box-shadow: var(--shadow-sm); transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.industry-chip::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--brand-accent); flex: 0 0 auto; }
.industry-chip:hover { transform: translateY(-2px); border-color: var(--brand-primary); box-shadow: var(--shadow); }
.industry-chip.more { background: var(--brand-tint); border-style: dashed; color: var(--brand-primary); }
.industry-chip.more::before { display: none; }
@media (max-width: 600px) {
  .industries { gap: 8px; }
  .industry-chip { padding: 8px 13px; font-size: 0.82rem; gap: 6px; }
  .industry-chip::before { width: 6px; height: 6px; }
}

/* ============ Free-audit standout band (full-bleed, light, drifting #044cac shapes) ============ */
.audit-section { position: relative; overflow: hidden; background: #eef3ff; padding: 100px 0; text-align: center; }
.audit-section .blob { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; z-index: 0; }
.audit-section .blob-1 { width: 440px; height: 440px; top: 70px; left: 4%; background: radial-gradient(circle, rgba(4,76,172,.45), transparent 70%); animation: audit-float1 16s ease-in-out infinite; }
.audit-section .blob-2 { width: 380px; height: 380px; bottom: 70px; right: 6%; background: radial-gradient(circle, rgba(4,76,172,.42), transparent 70%); animation: audit-float2 19s ease-in-out infinite; }
.audit-section .blob-3 { width: 300px; height: 300px; top: 25%; left: 58%; background: radial-gradient(circle, rgba(4,76,172,.32), transparent 70%); animation: audit-float3 22s ease-in-out infinite; }
.audit-inner { position: relative; z-index: 1; }
.audit-inner h2 { color: var(--ink); max-width: 20ch; margin: 0 auto 16px; font-size: clamp(1.9rem, 3.4vw, 2.9rem); letter-spacing: -0.02em; }
.audit-inner p { color: var(--slate); max-width: 640px; margin: 0 auto 30px; font-size: 1.08rem; line-height: 1.6; }
.audit-inner .btn { background: var(--brand-primary); color: #fff; border: 0; padding: 18px 40px; font-size: 1.1rem; box-shadow: 0 14px 30px -12px rgba(30,64,175,.6); }
.audit-inner .btn:hover { background: var(--brand-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(30,64,175,.75); }
@keyframes audit-float1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(150px,80px) scale(1.15); } }
@keyframes audit-float2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-130px,-70px) scale(1.12); } }
@keyframes audit-float3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-90px,60px) scale(1.2); } }
@media (prefers-reduced-motion: reduce) { .audit-section .blob { animation: none; } }
@media (max-width: 600px) { .audit-section { padding: 64px 0; } .audit-section .blob { display: none; } }

/* Hero triple-CTA wrap on small screens */
.hero-cta { flex-wrap: wrap; }
