/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --ink:          #0D1117;
  --ink-dim:      #6B7280;
  --surface:      #FFFFFF;
  --panel:        #F4F5F6;
  --panel-mid:    #ECEEF0;
  --dark:         #0F1B2D;
  --navy:         #1A3A5C;
  --blue:         #2563AE;
  --biz-blue:     #003087;
  --biz-blue-mid: #00266d;
  --cp-red:       #df2228;
  --cp-red-dark:  #b81a1f;
  --bar-before:   #a8a9ac;
  --bar-before-h: #9b9c9e;
  --border-l:     #E5E7EB;
  --radius:       12px;
  --radius-lg:    18px;
  --nav-h:        56px;
  --chart-h:      300px;

  /* ── motion tokens (same as index) ── */
  --ease-out-expo: cubic-bezier(.16,1,.3,1);
  --ease-spring:   cubic-bezier(.34,1.56,.64,1);
  --ease-gentle:   cubic-bezier(.25,.46,.45,.94);
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'Noto Sans', sans-serif;
  color: var(--ink); background: var(--surface);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a   { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul  { list-style: none; }

/* ─── NAV ────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: var(--nav-h);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-l);
  transition: box-shadow .3s var(--ease-out-expo);
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.07); }

.nav-left { display: flex; align-items: center; gap: 20px; }
.nav-logo {
  font-family: 'Noto Sans', sans-serif; font-weight: 700;
  font-size: 15px; letter-spacing: -.3px;
  color: var(--ink); display: flex; align-items: center; gap: 8px;
  transition: opacity .2s;
}
.nav-logo:hover { opacity: .75; }
.nav-logo span {
  display: inline-block; width: 20px; height: 20px;
  border: 2px solid var(--ink); border-radius: 4px;
}
.nav-status { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ink-dim); }
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22C55E; animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; color: var(--ink-dim); transition: color .2s; }

/* Lime underline — plain links only, NOT .nav-cta */
.nav-links a:not(.nav-cta) {
  position: relative;
  padding-bottom: 2px;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: #A8C832;
  border-radius: 2px;
  transition: width .25s var(--ease-out-expo);
}
.nav-links a:not(.nav-cta):hover        { color: var(--ink); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-active { font-weight: 600; color: var(--ink) !important; }
.nav-active:not(.nav-cta)::after { width: 100% !important; }

/* Contact CTA — grey pill, black text with !important */
.nav-cta {
  font-size: 13px; font-weight: 600; padding: 8px 16px;
  background: #d0d0d0;
  color: var(--ink) !important;
  border-radius: 8px;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: #e1e1e1; transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s var(--ease-out-expo), opacity .2s;
}

/* Hamburger → X when open */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--surface); border-bottom: 1px solid var(--border-l);
  padding: 20px 32px 24px; z-index: 99; flex-direction: column; gap: 4px;
  transform: translateY(-6px);
  opacity: 0;
  transition: transform .25s var(--ease-out-expo), opacity .2s;
}
.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu a {
  font-size: 16px; color: var(--ink-dim);
  padding: 12px 0; border-bottom: 1px solid var(--border-l);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--ink); }
.mobile-menu a:last-child { border-bottom: none; }

/* ─── PAGE LAYOUT ────────────────────────────────────────────── */
.showcase-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: auto 1fr;
  min-height: 100vh;
  padding-top: var(--nav-h);
  align-items: start;
}
.study-banner {
  grid-column: 1; grid-row: 1;
  width: 100%; height: 225px;
  position: relative;
  border-bottom: 1px solid var(--border-l);
  border-right: 1px solid var(--border-l);
  overflow: hidden; flex-shrink: 0;
}
.showcase-panel {
  grid-column: 1; grid-row: 2;
  background: var(--surface);
  border-right: 1px solid var(--border-l);
  display: flex; flex-direction: column;
  min-width: 0; overflow-x: hidden;
}
.meta-panel {
  grid-column: 2; grid-row: 1 / 3;
  position: sticky; top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow-y: auto;
  background: var(--panel);
  border-left: 1px solid var(--border-l);
  -webkit-overflow-scrolling: touch;
}
.meta-panel::-webkit-scrollbar { width: 4px; }
.meta-panel::-webkit-scrollbar-track { background: transparent; }
.meta-panel::-webkit-scrollbar-thumb { background: var(--border-l); border-radius: 4px; }

/* ─── SHOWCASE INNER ─────────────────────────────────────────── */
.showcase-inner {
  flex: 1; padding: 52px 52px 40px;
  display: flex; flex-direction: column; gap: 52px;
}
.showcase-header { display: flex; flex-direction: column; gap: 16px; }
.header-eyebrow  { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center;
  font-family: 'Noto Sans', sans-serif;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--blue); background: rgba(37,99,174,.08);
  border: 1px solid rgba(37,99,174,.2); padding: 5px 12px; border-radius: 20px;
}
.showcase-title {
  font-family: 'Noto Sans', sans-serif; font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -1.2px; color: var(--ink); line-height: 1.05;
}

/* ─── SUBTITLE ────────────────────────────────────────────────
   Responsive single-line headline that scales with viewport.
   - clamp() handles the font scaling from 16px up to 28px.
   - No max-width: previously 540px was forcing "by +75%" onto
     a new line because the full headline needs ~600px at the
     top end of the clamp. Removing the cap lets the line stay
     intact at every desktop size and only wrap naturally on
     genuinely narrow viewports.
   ────────────────────────────────────────────────────────────── */
.showcase-subtitle {
  font-size: clamp(16px, 2.2vw, 28px);
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: -28px;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  min-width: 0;
}
.showcase-subtitle strong { color: var(--ink); font-weight: 600; }
.section-label {
  font-family: 'Noto Sans', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--ink); letter-spacing: -.4px;
  line-height: 1.2; margin-bottom: 20px; display: block;
}

/* ─── STAT CARDS ─────────────────────────────────────────────── */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat-card {
  background: var(--panel); border: 1px solid var(--border-l);
  border-radius: var(--radius-lg); padding: 24px 20px;
  display: flex; flex-direction: column; gap: 5px;
  transition: box-shadow .25s var(--ease-gentle), transform .25s var(--ease-spring);
}
.stat-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.07); transform: translateY(-3px); }
.stat-number {
  font-family: 'Noto Sans', sans-serif; font-weight: 800;
  font-size: clamp(30px, 3.5vw, 44px);
  color: black; line-height: 1; letter-spacing: -1.5px;
}
.stat-label {
  font-family: 'Noto Sans', sans-serif;
  font-size: 18px; font-weight: 800; color: var(--ink); margin-top: 4px;
}
.stat-desc  { font-size: 12px; color: var(--ink-dim); line-height: 1.6; }
.stat-tag {
  display: inline-block; font-family: 'Noto Sans', sans-serif;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .9px;
  color: var(--blue); background: rgba(37,99,174,.08);
  border: 1px solid rgba(37,99,174,.2);
  padding: 2px 8px; border-radius: 99px; margin-top: 6px; width: fit-content;
}

/* ─── BODY TEXT ──────────────────────────────────────────────── */
.section-body { font-size: 15px; line-height: 1.85; color: var(--ink); }
.section-body + .section-body { margin-top: 16px; }
.section-body strong { font-weight: 700; }
.pullquote {
  margin: 22px 0; padding: 18px 22px;
  border-left: 3px solid var(--biz-blue);
  background: rgba(0,48,135,.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pullquote p {
  font-size: 16px; font-style: italic;
  color: var(--navy); line-height: 1.75; font-weight: 600;
}

/* ─── IMAGE PLACEHOLDERS ─────────────────────────────────────── */
.img-placeholder {
  width: 100%; position: relative;
  border: 2px dashed var(--border-l);
  border-radius: var(--radius); background: var(--panel); overflow: hidden;
}
.img-placeholder::before       { content: ''; display: block; padding-top: 52%; }
.img-placeholder--sq::before   { padding-top: 68%; }
.img-placeholder-body {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; padding: 20px; text-align: center;
}
.placeholder-icon  { color: var(--panel-mid); }
.placeholder-label { font-size: 13px; font-weight: 700; color: var(--ink-dim); }
.placeholder-hint  { font-size: 11px; color: var(--ink-dim); opacity: .7; max-width: 260px; line-height: 1.55; }
.img-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.img-pair-card { display: flex; flex-direction: column; gap: 8px; }
.img-caption { font-size: 12px; font-weight: 600; color: var(--ink-dim); text-align: center; }

/* ─── IMAGE PAIR PHOTOS ──────────────────────────────────────── */
/* This class is used on the <img> tags in the User Insights section.
   It constrains the image to a consistent size, crops it neatly,
   and applies the site's standard rounded corners automatically.
   Do not remove it from the <img> tags in the HTML. */
.img-pair-photo {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ─── WHAT CHANGED SECTION ───────────────────────────────────────
   Before / after label change cards used in the "What Changed"
   section. Desktop shows them as 3-column rows (Before → After).
   - align-items: center on the list centers each card horizontally
     inside its container.
   - width: 75% on each card reduces their width by ~25% vs. full.
   On small screens the arrow rotates 90° and the card stacks.
   ────────────────────────────────────────────────────────────── */
.changes-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
  align-items: center;
}
.change-item {
  width: 75%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px 22px;
  background: var(--panel);
  border: 1px solid var(--border-l);
  border-radius: var(--radius);
  transition: box-shadow .25s var(--ease-gentle), transform .25s var(--ease-spring);
}
.change-item:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
  transform: translateY(-2px);
}
.change-side {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.change-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--ink-dim);
}
.change-label {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}
.change-side--before .change-label {
  color: var(--ink-dim);
  text-decoration: line-through;
  text-decoration-color: rgba(107,114,128,.45);
  text-decoration-thickness: 1.5px;
}
.change-side--after .change-label {
  color: var(--biz-blue);
}
.change-arrow {
  color: var(--biz-blue);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── VERTICAL BAR CHART ─────────────────────────────────────── */
.chart-card {
  background: var(--panel); border: 1px solid var(--border-l);
  border-radius: var(--radius-lg); overflow: hidden;
}
.chart-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 20px 24px 16px; border-bottom: 1px solid var(--border-l);
  gap: 16px; flex-wrap: wrap;
}
.chart-subtitle { font-size: 12px; color: var(--ink-dim); margin-top: 3px; line-height: 1.5; }
.chart-legend   { display: flex; align-items: center; gap: 16px; flex-shrink: 0; margin-top: 2px; }
.legend-item    { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--ink); }
.legend-swatch  { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }
.legend-swatch--before { background: var(--bar-before); }
.legend-swatch--after  { background: var(--biz-blue); }
.chart-scroll {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding: 28px 24px 20px; width: 100%; max-width: 100%;
}
.chart-scroll::-webkit-scrollbar { height: 4px; }
.chart-scroll::-webkit-scrollbar-track { background: var(--panel-mid); border-radius: 4px; }
.chart-scroll::-webkit-scrollbar-thumb { background: var(--bar-before); border-radius: 4px; }
.vchart { display: flex; gap: 12px; min-width: 460px; }
.vchart-yaxis {
  display: flex; flex-direction: column; justify-content: space-between;
  height: var(--chart-h); width: 32px; flex-shrink: 0;
}
.vchart-yaxis span { font-size: 10px; font-weight: 600; color: var(--ink-dim); text-align: right; display: block; line-height: 1; }
.vchart-plot { flex: 1; position: relative; padding-bottom: 360px; height: var(--chart-h); overflow: visible; }
.vchart-gridline { position: absolute; left: 0; right: 0; height: 1px; background: var(--border-l); }
.vbar-groups {
  display: flex; gap: 12px; height: var(--chart-h);
  align-items: flex-start; position: relative; z-index: 1;
}
.task-group { flex: 1; display: flex; flex-direction: column; align-items: center; }
.task-group:hover .vbar--before .vbar-fill { background: var(--bar-before-h); }
.task-group:hover .vbar--after  .vbar-fill {
  background: var(--biz-blue-mid);
  box-shadow: 0 -8px 24px rgba(0,48,135,.28);
}
.vbars { display: flex; gap: 5px; align-items: flex-end; height: var(--chart-h); }
.vbar {
  width: 52px; height: var(--chart-h); position: relative;
  display: flex; align-items: flex-end; cursor: pointer;
}
.vbar-fill {
  width: 100%; height: 0; border-radius: 4px 4px 0 0; position: relative;
  transition: height .95s cubic-bezier(0.16, 1, 0.3, 1), background .18s, box-shadow .18s;
}
.vbar--before .vbar-fill { background: var(--bar-before); }
.vbar--after  .vbar-fill { background: var(--biz-blue); }
.vbar-pct-label {
  position: absolute; top: 15%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px; font-weight: 800;
  color: #fff; white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity .4s;
}
.vbar-pct-label.visible { opacity: 1; }

/* Percentage label inside the grey "Before" bars uses black text
   for legibility against the lighter fill. */
.vbar--before .vbar-pct-label { color: #000; }

.task-group-footer {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding-top: 10px; text-align: center;
}
.task-short { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.3; max-width: 76px; }
.task-delta { font-size: 14px; font-weight: 700; color: var(--biz-blue); }
.chart-tooltip-fixed {
  position: fixed; z-index: 9999;
  font-size: 13px; font-weight: 800;
  padding: 6px 14px; border-radius: 99px;
  white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity .15s;
  transform: translateX(-50%);
}
.chart-tooltip-fixed.tip-after {
  background: var(--biz-blue); color: #fff;
  box-shadow: 0 3px 12px rgba(0,48,135,.35);
}
.chart-tooltip-fixed.tip-before {
  background: var(--panel-mid); color: var(--ink-dim);
  border: 1px solid var(--border-l); box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

/* ─── DISCLAIMER ─────────────────────────────────────────────── */
.disclaimer-block {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px 22px;
  background: var(--panel); border: 1px solid var(--border-l); border-radius: var(--radius);
}
.disclaimer-icon   { flex-shrink: 0; color: var(--ink-dim); margin-top: 1px; }
.disclaimer-body   { display: flex; flex-direction: column; gap: 5px; }
.disclaimer-title  {
  font-size: 11px; font-weight: 700; color: var(--ink-dim);
  text-transform: uppercase; letter-spacing: 1px;
}
.disclaimer-text   { font-size: 12.5px; color: var(--ink-dim); line-height: 1.7; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.showcase-footer {
  padding: 24px 52px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; border-top: 1px solid var(--border-l);
}
.footer-copy   { font-size: 12px; color: var(--ink-dim); }
.footer-links  { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: var(--ink-dim); transition: color .2s; }
.footer-links a:hover { color: var(--ink); }

/* ─── META PANEL INTERNALS ───────────────────────────────────── */
.meta-inner { padding: 48px 40px; display: flex; flex-direction: column; gap: 28px; }
.meta-divider { height: 1px; background: var(--border-l); }
.glance-card {
  background: var(--surface); border: 1px solid var(--border-l);
  border-radius: var(--radius-lg); overflow: hidden;
}
.glance-card-header { padding: 14px 20px; background: #df2228; }
.glance-card-title  {
  font-size: 1.15em; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: #fff;
}
.glance-list { display: flex; flex-direction: column; }
.glance-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 11px 20px; border-bottom: 1px solid var(--border-l); gap: 12px;
}
.glance-row:last-child { border-bottom: none; }
.glance-key { color: var(--ink); font-size: 16px; font-weight: 500; flex-shrink: 0; }
.glance-val { color: var(--ink); font-size: 16px; font-weight: 600; text-align: right; line-height: 1.5; }
.finding-card {
  background: #003087; border-radius: var(--radius-lg);
  padding: 22px 20px; display: flex; flex-direction: column; gap: 11px;
}
.finding-label {
  font-size: 1.1em; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: #fff;
}
.finding-text { font-size: 20px; line-height: 2; color: #fff; }

/* ─── CTA CARD (desktop meta panel, hidden on mobile) ────────── */
.cta-card {
  background: var(--surface);
  border: 1px solid var(--border-l);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .25s var(--ease-gentle), transform .25s var(--ease-spring);
}
.cta-card:hover {
  box-shadow: 0 8px 32px rgba(0,48,135,.12);
  transform: translateY(-3px);
}
.cta-card-accent { height: 15px; }
.cta-card-body {
  padding: 28px 24px 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.cta-eyebrow {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.8px; color: var(--cp-red);
}
.cta-headline {
  font-family: 'Noto Sans', sans-serif; font-weight: 800;
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--ink); line-height: 1.2; letter-spacing: -.4px; margin-bottom: 10px;
}
.cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; margin-top: 4px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 32px; font-weight: 700;
  color: #fff;
  background: var(--cp-red);
  padding: 14px 20px; border-radius: 10px;
  transition: background .2s, transform .2s var(--ease-spring), box-shadow .2s;
}
.cta-btn:hover {
  background: var(--cp-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(223,34,40,.30);
}
.cta-btn svg { flex-shrink: 0; transition: transform .2s; }
.cta-btn:hover svg { transform: translateX(4px); }

/* ─── MOBILE CONTACT SECTION ─────────────────────────────────── */
.mobile-contact-section { display: none; }

.mc-header {
  background: var(--dark);
  position: relative;
  padding: 48px 40px 44px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.mc-header::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 40%, rgba(0,48,135,.45) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 85% 75%, rgba(26,58,92,.5) 0%, transparent 70%);
  pointer-events: none;
}
.mc-header::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--cp-red) 0%, #003087 100%);
}
.mc-eyebrow {
  position: relative; z-index: 1;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.8px; color: rgba(255,255,255,.55);
  margin-bottom: 10px;
}
.mc-headline {
  position: relative; z-index: 1;
  font-family: 'Noto Sans', sans-serif; font-weight: 800;
  font-size: clamp(26px, 4vw, 38px);
  color: #fff; line-height: 1.15; letter-spacing: -.6px;
  margin-bottom: 12px;
}
.mc-sub {
  position: relative; z-index: 1;
  font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,.60);
}

.mc-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border-l);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 36px 40px 40px;
}
.mc-form { display: flex; flex-direction: column; gap: 12px; }
.mc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mc-form-group { display: flex; flex-direction: column; }
.mc-form-group--select { position: relative; }

.mc-input,
.mc-select,
.mc-textarea {
  width: 100%; padding: 13px 16px;
  font-family: 'Noto Sans', sans-serif; font-size: 14px;
  color: var(--ink); background: var(--panel);
  border: 1.5px solid transparent; border-radius: var(--radius);
  outline: none; transition: border-color .2s, background .2s, box-shadow .2s;
  appearance: none; -webkit-appearance: none;
}
.mc-input::placeholder, .mc-textarea::placeholder { color: var(--ink-dim); }
.mc-input:focus, .mc-select:focus, .mc-textarea:focus {
  border-color: var(--biz-blue);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(0,48,135,.08);
}
.mc-input-error { border-color: #EF4444 !important; animation: mc-shake .35s ease; }
@keyframes mc-shake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-6px); }
  75%       { transform: translateX(6px); }
}
.mc-select { padding-right: 40px; cursor: pointer; }
.mc-select-chevron {
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%); color: var(--ink-dim); pointer-events: none;
}
.mc-textarea { resize: vertical; min-height: 120px; line-height: 1.65; }

.mc-btn-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; margin-top: 4px; padding: 15px 24px;
  background: var(--biz-blue); color: #fff;
  font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700;
  border: none; border-radius: 10px; cursor: pointer;
  transition: background .2s, transform .2s var(--ease-spring), box-shadow .2s;
}
.mc-btn-submit:hover:not(:disabled) {
  background: var(--biz-blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0,48,135,.25);
}
.mc-btn-submit:active:not(:disabled) { transform: translateY(0); }
.mc-btn-submit:disabled { opacity: .65; cursor: not-allowed; }
.mc-btn-submit svg { flex-shrink: 0; transition: transform .2s; }
.mc-btn-submit:hover svg { transform: translateX(4px); }

.mc-success {
  display: none; align-items: center; gap: 10px;
  padding: 16px 20px;
  background: rgba(34,197,94,.07); border: 1px solid rgba(34,197,94,.2);
  border-radius: var(--radius);
  font-size: 14px; color: var(--ink); line-height: 1.65;
  margin-top: 4px;
}
.mc-success.visible { display: flex; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   Mirrors work.css / about.css / contact.css / process.css
   exactly: 1100 → 960 → 768 → 480
   ═══════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .showcase-inner { padding: 44px 40px 32px; }
  .meta-inner     { padding: 40px 32px; }
}

@media (max-width: 960px) {
  .showcase-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    max-width: 100%; overflow-x: hidden;
  }
  .study-banner {
    grid-column: 1; grid-row: 1; order: 1;
    border-right: none; border-bottom: 1px solid var(--border-l);
  }
  .meta-panel {
    grid-column: 1; grid-row: 2; order: 2;
    position: relative; top: auto;
    height: auto; overflow-y: visible;
    border-left: none;
    border-top: 1px solid var(--border-l);
    border-bottom: 1px solid var(--border-l);
    max-width: 100%; overflow-x: hidden;
  }
  .showcase-panel {
    grid-column: 1; grid-row: 3; order: 3;
    border-right: none; max-width: 100%; overflow-x: hidden;
  }
  .meta-inner      { padding: 40px 36px; }
  .showcase-inner  { padding: 40px 36px 28px; gap: 40px; }
  .showcase-footer { padding: 24px 36px; }
  .chart-header    { flex-direction: column; align-items: flex-start; gap: 10px; }

  .cta-card               { display: none; }
  .mobile-contact-section { display: block; }

  :root           { --chart-h: 200px; }
  .chart-scroll   { padding-top: 20px; }
  .vbar           { width: 44px; }
  .vchart         { min-width: 400px; }
  .vbar-pct-label { font-size: 13px; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links, .nav-status, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .showcase-inner  { padding: 32px 24px 24px; gap: 32px; }
  .showcase-footer { padding: 20px 24px; flex-direction: column; align-items: flex-start; }
  .meta-inner      { padding: 32px 24px; }

  .stat-grid         { grid-template-columns: 1fr 1fr; }
  .img-pair          { grid-template-columns: 1fr; }
  .section-label     { font-size: 19px; }
  .glance-row        { flex-direction: column; gap: 3px; }
  .glance-val        { text-align: left; }
  .glance-key, .glance-val { font-size: 14px; }
  .finding-text      { font-size: 15px; line-height: 1.75; }

  /* What Changed — stack before/after vertically, rotate arrow */
  .change-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 18px;
  }
  .change-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }
  .change-label { font-size: 15px; }

  .mc-header    { padding: 40px 28px 36px; }
  .mc-form-wrap { padding: 28px 28px 32px; }
  .mc-form-row  { grid-template-columns: 1fr; }

  :root            { --chart-h: 170px; }
  .chart-scroll    { padding-top: 14px; }
  .vbar            { width: 36px; }
  .vchart          { min-width: 320px; }
  .task-short      { font-size: 11px; max-width: 60px; }
  .task-delta      { font-size: 11px; }
  .vbar-pct-label  { font-size: 11px; }
}

@media (max-width: 480px) {
  .showcase-inner    { padding: 28px 20px 20px; gap: 28px; }
  .meta-inner        { padding: 28px 20px; }
  .showcase-footer   { padding: 20px; flex-direction: column; align-items: flex-start; }
  .stat-grid         { grid-template-columns: 1fr; }
  .section-label     { font-size: 18px; }
  .showcase-title    { letter-spacing: -.8px; }
  .study-banner      { height: 160px; }
  .glance-key, .glance-val { font-size: 13px; }

  .mc-header    { padding: 32px 20px 28px; }
  .mc-headline  { font-size: 24px; }
  .mc-form-wrap { padding: 24px 20px 28px; }

  :root            { --chart-h: 150px; }
  .chart-scroll    { padding-top: 10px; }
  .vbar            { width: 28px; }
  .vchart          { min-width: 260px; }
  .task-short      { font-size: 10px; max-width: 50px; }
  .task-delta      { font-size: 10px; }
  .vbar-pct-label  { font-size: 10px; }
}
