:root {
  --ink: #15171f;
  --ink-soft: #2a2d38;
  --muted: #616574;
  --muted-2: #7b7f8c;
  --paper: #f6f3ed;
  --paper-2: #eeebe4;
  --surface: #ffffff;
  --line: #d9d5cc;
  --line-dark: rgba(255,255,255,.15);
  --accent: #6252e9;
  --accent-dark: #4334bc;
  --accent-soft: #e9e6ff;
  --coral: #ee7155;
  --green: #148678;
  --dark: #171a24;
  --dark-2: #222634;
  --shadow-sm: 0 10px 30px rgba(24, 25, 31, .08);
  --shadow-md: 0 28px 70px rgba(24, 25, 31, .13);
  --shadow-lg: 0 38px 100px rgba(17, 18, 23, .18);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --container: 1220px;
  --header-h: 84px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { color: #fff; background: var(--accent); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 12px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}
.narrow { width: min(calc(100% - 48px), 850px); margin-inline: auto; }
.section { padding: 112px 0; }
.section-sm { padding: 72px 0; }
.section-tight { padding: 56px 0; }
.section-dark { color: #fff; background: var(--dark); }
.section-surface { background: var(--surface); }
.section-accent { background: var(--accent-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 26px;
  height: 2px;
  content: "";
  background: currentColor;
}
.section-dark .eyebrow { color: #bdb6ff; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -.035em;
}
h1 { margin-bottom: 26px; font-size: clamp(3.2rem, 7vw, 6.8rem); }
h2 { margin-bottom: 22px; font-size: clamp(2.45rem, 4.8vw, 4.4rem); }
h3 { margin-bottom: 14px; font-size: clamp(1.5rem, 2.3vw, 2.05rem); }
h4 { margin-bottom: 10px; font-size: 1.18rem; }
.display-compact { max-width: 920px; font-size: clamp(3.1rem, 6vw, 5.8rem); }
.lede {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: clamp(1.15rem, 1.8vw, 1.42rem);
  line-height: 1.55;
}
.section-dark .lede { color: rgba(255,255,255,.74); }
.small { font-size: .92rem; }
.muted { color: var(--muted); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent-dark);
  font-weight: 750;
  text-decoration: none;
}
.text-link::after { content: "↗"; transition: transform .2s ease; }
.text-link:hover::after { transform: translate(3px,-3px); }

.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.1;
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.button:active { transform: translateY(0); }
.button.secondary { color: var(--ink); background: transparent; }
.button.secondary:hover { color: #fff; background: var(--ink); }
.button.accent { border-color: var(--accent); background: var(--accent); }
.button.light { color: var(--ink); border-color: #fff; background: #fff; }
.button.light.secondary { color: #fff; border-color: rgba(255,255,255,.45); background: transparent; }
.button.light.secondary:hover { color: var(--ink); background: #fff; }
.button svg { width: 16px; height: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-h);
  border-bottom: 1px solid rgba(21,23,31,.08);
  background: rgba(246,243,237,.88);
  backdrop-filter: blur(18px);
}
.header-inner {
  display: flex;
  min-height: var(--header-h);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  text-decoration: none;
}
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: -.02em;
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-name { font-size: 16px; font-weight: 850; letter-spacing: -.02em; }
.brand-role { margin-top: 5px; color: var(--muted); font-size: 11px; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 5px; }
.site-nav a {
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--ink); background: rgba(21,23,31,.07); }
.site-nav .nav-cta { margin-left: 8px; color: #fff; background: var(--ink); }
.site-nav .nav-cta:hover, .site-nav .nav-cta[aria-current="page"] { color: #fff; background: var(--accent-dark); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(21,23,31,.07);
  cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  width: 20px;
  height: 2px;
  content: "";
  background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle { position: relative; }
.nav-toggle span { position: absolute; }
.nav-toggle::before { position: absolute; transform: translateY(-6px); }
.nav-toggle::after { position: absolute; transform: translateY(6px); }
.nav-open .nav-toggle span { opacity: 0; }
.nav-open .nav-toggle::before { transform: rotate(45deg); }
.nav-open .nav-toggle::after { transform: rotate(-45deg); }

.hero { position: relative; overflow: hidden; padding: 90px 0 92px; }
.hero::before {
  position: absolute;
  top: -180px;
  left: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(98,82,233,.12), transparent 66%);
  content: "";
  pointer-events: none;
}
.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, .98fr);
  gap: 72px;
}
.hero-copy h1 { max-width: 760px; }
.hero-copy .lede { max-width: 690px; }
.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: var(--muted);
  font-size: .9rem;
}
.hero-note::before { width: 8px; height: 8px; border-radius: 50%; background: var(--green); content: ""; box-shadow: 0 0 0 6px rgba(0,113,227,.12); }
.hero-visual {
  position: relative;
  min-height: 610px;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero-float {
  position: absolute;
  right: -24px;
  bottom: 36px;
  width: min(350px, 82%);
  padding: 22px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 22px;
  color: #fff;
  background: rgba(23,26,36,.88);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}
.hero-float strong { display: block; margin-bottom: 8px; font-size: 1.12rem; }
.hero-float p { margin: 0; color: rgba(255,255,255,.72); font-size: .9rem; }

.signal-bar { border-block: 1px solid var(--line); background: rgba(255,255,255,.45); }
.signal-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.signal {
  min-height: 128px;
  padding: 27px 28px;
  border-right: 1px solid var(--line);
}
.signal:last-child { border-right: 0; }
.signal strong { display: block; margin-bottom: 4px; font-size: clamp(1.6rem, 3vw, 2.35rem); letter-spacing: -.05em; line-height: 1.1; }
.signal span { color: var(--muted); font-size: .88rem; font-weight: 650; }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 48px;
}
.section-heading > div { max-width: 790px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading p { max-width: 540px; margin-bottom: 6px; color: var(--muted); }

.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 34px; }
.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(255,255,255,.85) inset;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease;
}
.project-card:hover { transform: translateY(-7px); border-color: #c5c0b5; box-shadow: var(--shadow-md); }
.project-card a { display: block; height: 100%; color: inherit; text-decoration: none; }
.project-art { position: relative; overflow: hidden; aspect-ratio: 1.58 / 1; background: var(--paper-2); }
.project-art img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.project-card:hover .project-art img { transform: scale(1.025); }
.project-content { display: grid; min-height: 220px; padding: 28px; }
.project-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-bottom: 18px; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.project-content h3 { margin-bottom: 11px; }
.project-content p { margin-bottom: 24px; color: var(--muted); }
.project-link { align-self: end; color: var(--accent-dark); font-size: .9rem; font-weight: 800; }
.project-link::after { margin-left: 6px; content: "↗"; }

.logo-cloud { border-block: 1px solid var(--line); }
.logo-cloud-inner { display: grid; grid-template-columns: 180px 1fr; align-items: center; gap: 40px; padding: 34px 0; }
.logo-cloud-label { color: var(--muted); font-size: 12px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.logo-list { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px 36px; }
.logo-list span { color: #30323b; font-size: clamp(1rem, 1.6vw, 1.25rem); font-weight: 800; letter-spacing: -.03em; }

.capability-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.capability-card {
  min-height: 320px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.56);
}
.capability-number { display: grid; width: 46px; height: 46px; margin-bottom: 62px; place-items: center; border-radius: 50%; color: var(--accent-dark); background: var(--accent-soft); font-size: 13px; font-weight: 850; }
.capability-card h3 { font-size: 1.65rem; }
.capability-card p { color: var(--muted); }
.capability-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.pill { display: inline-flex; padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.7); font-size: 12px; font-weight: 750; }

.leadership-feature { display: grid; align-items: center; grid-template-columns: .92fr 1.08fr; gap: 74px; }
.leadership-copy blockquote { margin: 0 0 34px; font-size: clamp(2.35rem, 4.5vw, 4.7rem); font-weight: 730; line-height: 1.05; letter-spacing: -.045em; }
.leadership-copy blockquote span { color: #aaa1ff; }
.leadership-copy p { max-width: 640px; color: rgba(255,255,255,.72); }
.leadership-steps { display: grid; gap: 14px; }
.leadership-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: start;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
}
.leadership-step b { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: var(--dark); background: #fff; font-size: 13px; }
.leadership-step h3 { margin: 4px 0 5px; font-size: 1.18rem; letter-spacing: -.02em; }
.leadership-step p { margin: 0; color: rgba(255,255,255,.64); font-size: .92rem; }

.about-split { display: grid; align-items: center; grid-template-columns: .85fr 1.15fr; gap: 76px; }
.about-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 38px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: linear-gradient(145deg, #2c275c, #171a24 62%);
  box-shadow: var(--shadow-md);
}
.about-card::before {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 32%, #ee7155, #6252e9 55%, transparent 56%);
  content: "";
  opacity: .75;
}
.about-card .monogram { margin-bottom: 135px; color: #c9c4ff; font-size: 13px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.about-card h3 { position: relative; max-width: 360px; font-size: 2.6rem; }
.about-card p { position: relative; max-width: 420px; margin: 0; color: rgba(255,255,255,.68); }
.about-copy p { color: var(--muted); }
.about-copy .lede { color: var(--ink-soft); }

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 54px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: linear-gradient(125deg, #4b3fd0, #6c58ef 55%, #e96d55 150%);
  box-shadow: var(--shadow-md);
}
.cta-panel h2 { max-width: 760px; margin-bottom: 12px; font-size: clamp(2.2rem, 4vw, 4rem); }
.cta-panel p { max-width: 720px; margin: 0; color: rgba(255,255,255,.76); }

.page-hero { padding: 96px 0 72px; }
.page-hero-grid { display: grid; grid-template-columns: 1fr .58fr; gap: 70px; align-items: end; }
.page-hero h1 { max-width: 950px; }
.page-hero-aside { padding-bottom: 14px; color: var(--muted); }
.page-hero-aside strong { display: block; margin-bottom: 10px; color: var(--ink); font-size: .95rem; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 38px; }
.filter-button {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.filter-button:hover, .filter-button.is-active { color: #fff; border-color: var(--ink); background: var(--ink); }
.project-card[hidden] { display: none; }

.case-hero { padding: 42px 0 76px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; margin-bottom: 64px; color: var(--muted); font-size: .86rem; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-dark); }
.case-intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; margin-bottom: 56px; }
.case-intro h1 { max-width: 830px; margin-bottom: 22px; font-size: clamp(3.5rem, 7vw, 7rem); }
.case-subtitle { max-width: 760px; margin: 0; color: var(--muted); font-size: clamp(1.15rem, 1.8vw, 1.4rem); }
.case-facts { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--line); }
.case-fact { padding: 18px 0 10px; border-bottom: 1px solid var(--line); }
.case-fact:nth-child(odd) { padding-right: 20px; }
.case-fact span { display: block; margin-bottom: 4px; color: var(--muted); font-size: 11px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.case-fact strong { font-size: .98rem; }
.case-cover { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.case-cover img { width: 100%; }

.case-layout { display: grid; grid-template-columns: 260px minmax(0,780px); justify-content: center; gap: 72px; }
.case-nav { position: sticky; top: calc(var(--header-h) + 24px); align-self: start; }
.case-nav strong { display: block; margin-bottom: 16px; font-size: 12px; letter-spacing: .15em; text-transform: uppercase; }
.case-nav a { display: block; padding: 8px 0; color: var(--muted); font-size: .9rem; text-decoration: none; }
.case-nav a:hover { color: var(--accent-dark); }
.case-body section { scroll-margin-top: 130px; margin-bottom: 90px; }
.case-body h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); }
.case-body h3 { margin-top: 36px; font-size: 1.6rem; }
.case-body p { color: var(--ink-soft); }
.case-body .lede { color: var(--ink-soft); }
.two-col { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; }
.three-col { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.insight-card, .decision-card, .metric-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.62);
}
.insight-card b, .decision-card b { display: inline-grid; width: 34px; height: 34px; margin-bottom: 28px; place-items: center; border-radius: 50%; color: var(--accent-dark); background: var(--accent-soft); font-size: 12px; }
.insight-card h3, .decision-card h3 { margin: 0 0 9px; font-size: 1.18rem; }
.insight-card p, .decision-card p { margin: 0; color: var(--muted); font-size: .93rem; }
.metric-card strong { display: block; margin-bottom: 8px; font-size: 2.25rem; letter-spacing: -.05em; }
.metric-card span { color: var(--muted); font-size: .9rem; }
.process-line { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.process-step { padding: 22px 20px; border-radius: 18px; color: #fff; background: var(--dark); }
.process-step span { color: #bcb5ff; font-size: 12px; font-weight: 850; letter-spacing: .12em; }
.process-step h3 { margin: 34px 0 8px; color: #fff; font-size: 1.15rem; }
.process-step p { margin: 0; color: rgba(255,255,255,.63); font-size: .85rem; }
.callout {
  margin: 44px 0;
  padding: 30px 34px;
  border-left: 4px solid var(--accent);
  border-radius: 0 18px 18px 0;
  background: var(--accent-soft);
}
.callout p { margin: 0; color: var(--ink); font-size: 1.16rem; font-weight: 680; }
.artifact-panel { overflow: hidden; margin: 32px 0; border: 1px solid var(--line); border-radius: 26px; background: var(--surface); }
.artifact-panel img { width: 100%; }
.artifact-caption { padding: 18px 22px; color: var(--muted); font-size: .83rem; }
.note { padding: 18px 20px; border-radius: 15px; color: var(--muted); background: rgba(21,23,31,.05); font-size: .88rem; }
.next-case { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: 40px; border-radius: 28px; color: #fff; background: var(--dark); }
.next-case p { margin: 0 0 7px; color: rgba(255,255,255,.58); font-size: .8rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.next-case h3 { margin: 0; color: #fff; font-size: 2rem; }

.timeline { position: relative; display: grid; gap: 20px; }
.timeline::before { position: absolute; top: 15px; bottom: 15px; left: 19px; width: 2px; background: var(--line); content: ""; }
.timeline-item { position: relative; display: grid; grid-template-columns: 40px 1fr; gap: 22px; }
.timeline-dot { position: relative; z-index: 2; width: 40px; height: 40px; border: 9px solid var(--paper); border-radius: 50%; background: var(--accent); }
.timeline-content { padding: 0 0 30px; }
.timeline-content span { color: var(--accent-dark); font-size: 12px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.timeline-content h3 { margin: 7px 0 8px; font-size: 1.35rem; }
.timeline-content p { margin: 0; color: var(--muted); }

.principles-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.principle { padding: 28px; border-top: 1px solid var(--line); }
.principle span { display: block; margin-bottom: 36px; color: var(--accent-dark); font-size: 13px; font-weight: 850; }
.principle h3 { font-size: 1.55rem; }
.principle p { margin: 0; color: var(--muted); }

.approach-model { display: grid; gap: 18px; }
.approach-row {
  display: grid;
  grid-template-columns: 90px 1fr 1fr;
  gap: 24px;
  align-items: start;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.approach-row:last-child { border-bottom: 1px solid var(--line); }
.approach-row .step-index { color: var(--accent-dark); font-size: .8rem; font-weight: 850; letter-spacing: .13em; }
.approach-row h3 { margin: 0; font-size: 2rem; }
.approach-row p { margin: 3px 0 0; color: var(--muted); }

.resume-grid { display: grid; grid-template-columns: 340px 1fr; gap: 80px; }
.resume-sidebar { position: sticky; top: calc(var(--header-h) + 34px); align-self: start; }
.resume-sidebar h2 { font-size: 2rem; }
.resume-sidebar p { color: var(--muted); }
.resume-section { padding: 0 0 54px; margin-bottom: 54px; border-bottom: 1px solid var(--line); }
.resume-section h2 { margin-bottom: 28px; font-size: 2.5rem; }
.resume-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px 30px; padding: 0; margin: 0; list-style: none; }
.resume-list li { padding: 12px 0; border-bottom: 1px solid rgba(21,23,31,.1); }
.resume-entry { display: grid; grid-template-columns: 180px 1fr; gap: 24px; padding: 24px 0; border-top: 1px solid var(--line); }
.resume-entry h3 { margin: 0 0 9px; font-size: 1.28rem; }
.resume-entry p { margin: 0; color: var(--muted); }
.resume-entry .label { color: var(--accent-dark); font-size: 12px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.contact-cards { display: grid; gap: 12px; margin-top: 36px; }
.contact-card { display: block; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.55); text-decoration: none; }
.contact-card span { display: block; color: var(--muted); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.contact-card strong { display: block; margin-top: 6px; word-break: break-word; }
.contact-form { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.form-field { display: grid; gap: 8px; margin-bottom: 18px; }
.form-field label { font-size: .86rem; font-weight: 750; }
.form-field input, .form-field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #cbc6bd;
  border-radius: 13px;
  color: var(--ink);
  background: #fcfbf8;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field textarea { min-height: 170px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(98,82,233,.14); }
.form-help { color: var(--muted); font-size: .78rem; }
.form-status { min-height: 24px; margin: 14px 0 0; color: var(--green); font-size: .88rem; font-weight: 700; }

.site-footer { padding: 68px 0 28px; color: #fff; background: var(--dark); }
.footer-top { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start; padding-bottom: 58px; border-bottom: 1px solid var(--line-dark); }
.footer-title { max-width: 720px; margin-bottom: 18px; font-size: clamp(2.4rem, 4.5vw, 4.7rem); }
.footer-top p { max-width: 650px; color: rgba(255,255,255,.62); }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(120px,1fr)); gap: 10px 30px; }
.footer-links a { color: rgba(255,255,255,.75); font-size: .93rem; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 28px; padding-top: 24px; color: rgba(255,255,255,.46); font-size: .78rem; }
.footer-bottom a { text-decoration: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 42px; }
  .hero-visual { min-height: 540px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card { min-height: 0; }
  .capability-number { margin-bottom: 42px; }
  .leadership-feature, .about-split { gap: 48px; }
  .case-layout { grid-template-columns: 210px minmax(0,1fr); gap: 48px; }
  .resume-grid { grid-template-columns: 290px 1fr; gap: 52px; }
}

@media (max-width: 900px) {
  :root { --header-h: 74px; }
  .container, .narrow { width: min(calc(100% - 36px), var(--container)); }
  .section { padding: 88px 0; }
  .site-header { min-height: var(--header-h); }
  .header-inner { min-height: var(--header-h); }
  .nav-toggle { display: grid; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: grid;
    gap: 6px;
    padding: 22px 18px 28px;
    border-bottom: 1px solid var(--line);
    background: rgba(246,243,237,.98);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    transition: transform .3s var(--ease), opacity .2s ease, visibility .2s ease;
  }
  .nav-open .site-nav { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-nav a { padding: 14px 16px; font-size: 1rem; }
  .site-nav .nav-cta { margin: 7px 0 0; text-align: center; }
  .hero { padding-top: 64px; }
  .hero-grid, .leadership-feature, .about-split, .page-hero-grid, .case-intro, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 52px; }
  .hero-visual { min-height: auto; }
  .hero-float { right: 18px; bottom: 18px; }
  .signal-grid { grid-template-columns: repeat(2,1fr); }
  .signal:nth-child(2) { border-right: 0; }
  .signal:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .project-grid { grid-template-columns: 1fr; }
  .logo-cloud-inner { grid-template-columns: 1fr; gap: 22px; }
  .logo-list { justify-content: flex-start; }
  .leadership-feature { gap: 55px; }
  .section-heading { align-items: start; flex-direction: column; }
  .case-layout { grid-template-columns: 1fr; }
  .case-nav { position: static; display: flex; overflow-x: auto; gap: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
  .case-nav strong { display: none; }
  .case-nav a { white-space: nowrap; }
  .case-facts { max-width: 640px; }
  .process-line { grid-template-columns: repeat(2,1fr); }
  .resume-grid { grid-template-columns: 1fr; }
  .resume-sidebar { position: static; }
  .cta-panel { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .section-sm { padding: 56px 0; }
  h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  h2 { font-size: clamp(2.25rem, 11vw, 3.4rem); }
  .brand-role { display: none; }
  .brand-mark { width: 38px; height: 38px; }
  .hero { padding: 48px 0 62px; }
  .hero-copy h1 { font-size: clamp(3.2rem, 15vw, 4.6rem); }
  .hero-float { position: relative; right: auto; bottom: auto; width: calc(100% - 24px); margin: -74px auto 0; }
  .signal-grid { grid-template-columns: 1fr; }
  .signal { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .signal:last-child { border-bottom: 0; }
  .project-content { min-height: 0; }
  .logo-list { display: grid; grid-template-columns: repeat(2,1fr); }
  .capability-card { padding: 24px; }
  .leadership-copy blockquote { font-size: clamp(2.4rem, 12vw, 3.7rem); }
  .leadership-step { grid-template-columns: 44px 1fr; padding: 16px; }
  .about-card { min-height: 430px; padding: 28px; }
  .about-card .monogram { margin-bottom: 100px; }
  .cta-panel { padding: 34px 26px; }
  .page-hero { padding: 64px 0 48px; }
  .case-hero { padding-top: 28px; }
  .breadcrumb { margin-bottom: 44px; }
  .case-intro h1 { font-size: clamp(3.2rem, 16vw, 5.1rem); }
  .case-facts { grid-template-columns: 1fr; }
  .case-fact:nth-child(odd) { padding-right: 0; }
  .two-col, .three-col, .principles-grid { grid-template-columns: 1fr; }
  .process-line { grid-template-columns: 1fr; }
  .next-case { grid-template-columns: 1fr; padding: 28px; }
  .approach-row { grid-template-columns: 56px 1fr; }
  .approach-row p { grid-column: 2; }
  .resume-list { grid-template-columns: 1fr; }
  .resume-entry { grid-template-columns: 1fr; gap: 8px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 26px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media print {
  .site-header, .site-footer, .button-row, .nav-toggle, .skip-link { display: none !important; }
  body { color: #000; background: #fff; font-size: 11pt; }
  .section, .page-hero { padding: 24px 0; }
  .resume-grid { display: block; }
  .resume-sidebar { margin-bottom: 30px; }
  .resume-section { page-break-inside: avoid; }
  a { color: #000; text-decoration: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===== 2026 editorial UX-lead refresh ===== */
:root {
  --acid: #eaf3ff;
  --hot: #ff6fae;
  --sky: #b8d9ff;
  --lav: #c8bbff;
  --cream: #fbf8f1;
  --near-black: #111114;
  --ink: #111114;
  --ink-soft: #34333a;
  --paper: #fbf8f1;
  --paper-2: #f0ede5;
  --accent: #5b45ff;
  --accent-dark: #3f2fd0;
  --accent-soft: #ebe7ff;
  --radius: 28px;
  --radius-lg: 42px;
  --container: 1280px;
}

body {
  background:
    radial-gradient(circle at 10% 0%, rgba(200,187,255,.18), transparent 28rem),
    var(--paper);
}

.site-header {
  min-height: 76px;
  background: rgba(251,248,241,.84);
  border-bottom-color: rgba(17,17,20,.10);
}
.header-inner { min-height: 76px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 14px;
  background: var(--near-black); transform: rotate(-2deg);
}
.brand-mark span { color: var(--acid); margin-left: 1px; }
.brand-role { letter-spacing: .08em; }
.site-nav a { font-weight: 760; }
.site-nav .nav-cta { background: var(--acid); color: var(--near-black); border: 1px solid var(--near-black); }
.site-nav .nav-cta:hover, .site-nav .nav-cta[aria-current="page"] { background: var(--near-black); color: #fff; }

h1,h2,h3,h4 { letter-spacing: -.055em; }
h1 { font-weight: 850; }
h2 { font-weight: 820; }
.eyebrow { color: var(--near-black); letter-spacing: .14em; }
.eyebrow::before { background: var(--accent); }

.button { border-radius: 14px; box-shadow: 3px 3px 0 var(--near-black); }
.button:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--near-black); }
.button.accent { background: var(--accent); border-color: var(--near-black); }
.button.secondary { background: #fff; }
.button.secondary:hover { background: var(--acid); color: var(--near-black); }
.button.light { box-shadow: 3px 3px 0 rgba(255,255,255,.35); }

.trend-hero { padding: 72px 0 80px; overflow: visible; }
.trend-hero::before { display:none; }
.trend-hero-grid {
  display:grid; grid-template-columns:minmax(0,1.03fr) minmax(430px,.97fr); gap:54px; align-items:center;
}
.trend-hero-copy h1 { max-width:760px; font-size:clamp(4.2rem,8.3vw,8rem); line-height:.88; margin:18px 0 30px; }
.trend-hero-copy .lede { max-width:760px; font-size:clamp(1.16rem,1.7vw,1.38rem); }
.status-line { display:inline-flex; gap:10px; align-items:center; padding:8px 12px; border:1px solid var(--near-black); border-radius:999px; background:#fff; font-size:.78rem; font-weight:800; text-transform:uppercase; letter-spacing:.09em; box-shadow:2px 2px 0 var(--near-black); }
.status-dot { width:8px; height:8px; border-radius:50%; background:#32ad70; box-shadow:0 0 0 4px rgba(50,173,112,.14); }
.kicker { margin:22px 0 0; font-size:clamp(.92rem,1.3vw,1.08rem); font-weight:850; text-transform:uppercase; letter-spacing:.11em; }
.kicker i { color:var(--accent); font-style:normal; padding:0 6px; }
.scribble { position:relative; display:inline-block; color:var(--accent); }
.scribble::after { content:""; position:absolute; left:1%; right:0; bottom:-.04em; height:.13em; background:var(--hot); border-radius:100%; transform:rotate(-1.5deg); opacity:.75; }
.tool-ribbon { display:flex; flex-wrap:wrap; gap:8px; margin-top:34px; }
.tool-ribbon span { padding:8px 11px; border:1px solid rgba(17,17,20,.22); border-radius:8px; background:rgba(255,255,255,.75); font-size:.8rem; font-weight:780; }
.tool-ribbon span:nth-child(2n) { transform:rotate(-1deg); }
.tool-ribbon span:nth-child(3n) { transform:rotate(1deg); background:var(--accent-soft); }

.ux-board { position:relative; border:2px solid var(--near-black); border-radius:28px; background:#19191f; box-shadow:16px 18px 0 var(--lav); transform:rotate(1deg); overflow:hidden; }
.board-top,.board-bottom { display:flex; justify-content:space-between; gap:16px; padding:13px 16px; color:#d7d7df; font:800 .67rem/1.2 ui-monospace,SFMono-Regular,Menlo,monospace; letter-spacing:.09em; }
.board-top { border-bottom:1px solid rgba(255,255,255,.15); }
.board-bottom { border-top:1px solid rgba(255,255,255,.12); color:#9b9ba8; }
.board-live { color:var(--acid); }
.board-canvas { position:relative; min-height:540px; background-image:linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px); background-size:28px 28px; overflow:hidden; }
.board-card { position:absolute; left:7%; top:9%; width:56%; padding:24px; border-radius:22px; background:#fff; color:var(--near-black); box-shadow:0 18px 45px rgba(0,0,0,.3); transform:rotate(-2deg); }
.board-card strong { display:block; max-width:320px; font-size:clamp(1.6rem,2.8vw,2.55rem); line-height:1; letter-spacing:-.05em; }
.mini-label { display:inline-block; margin:0 0 12px; font-size:.67rem; font-weight:900; letter-spacing:.15em; text-transform:uppercase; }
.mini-journey { display:flex; align-items:center; gap:5px; margin-top:28px; }
.mini-journey i { height:8px; flex:1; border-radius:99px; background:var(--accent-soft); }
.mini-journey i:nth-child(3){ flex:1.8; background:var(--accent); }
.mini-journey i:nth-child(5){ background:var(--hot); }
.sticky { position:absolute; width:150px; min-height:132px; padding:18px; display:flex; flex-direction:column; justify-content:space-between; color:var(--near-black); font-size:.84rem; box-shadow:0 12px 28px rgba(0,0,0,.28); }
.sticky b { font-size:1.3rem; letter-spacing:-.04em; }
.sticky-lime { right:7%; top:11%; background:var(--acid); transform:rotate(4deg); }
.sticky-pink { left:15%; bottom:10%; background:var(--hot); transform:rotate(3deg); }
.board-mobile { position:absolute; right:12%; bottom:8%; width:148px; height:286px; border:2px solid #fff; border-radius:30px; background:#f8f8fb; padding:34px 14px 16px; box-shadow:0 18px 40px rgba(0,0,0,.38); transform:rotate(-5deg); }
.phone-notch { position:absolute; left:50%; top:9px; width:54px; height:12px; border-radius:99px; background:#17171c; transform:translateX(-50%); }
.phone-title { width:70%; height:14px; border-radius:99px; background:#1c1c22; margin-bottom:22px; }
.phone-row { height:58px; border-radius:15px; background:var(--accent-soft); margin:9px 0; }
.phone-row.short { height:42px; background:#e7e7ea; }
.phone-button { height:38px; border-radius:12px; background:var(--accent); margin-top:18px; }
.figma-cursor { position:absolute; padding:6px 8px 6px 19px; border-radius:4px 8px 8px 8px; color:#fff; font-size:.68rem; font-weight:800; box-shadow:0 8px 18px rgba(0,0,0,.22); }
.figma-cursor::before { content:""; position:absolute; left:-8px; top:-8px; border-width:8px 5px 0; border-style:solid; border-color:currentColor transparent transparent; transform:rotate(-45deg); }
.cursor-one { left:55%; top:55%; background:var(--accent); color:var(--accent); }
.cursor-one::after,.cursor-two::after { content:attr(class); display:none; }
.cursor-one { color:#fff; }
.cursor-one::before { border-top-color:var(--accent); }
.cursor-two { right:7%; top:48%; background:#e54e96; color:#fff; }
.cursor-two::before { border-top-color:#e54e96; }
.a11y-chip { position:absolute; left:47%; bottom:8%; width:94px; height:94px; display:grid; place-content:center; text-align:center; border-radius:50%; background:var(--sky); color:var(--near-black); font-size:.72rem; line-height:1.05; transform:rotate(-8deg); border:2px solid #111; }
.a11y-chip strong { font-size:1rem; }

.proof-strip { padding:0 0 28px; }
.proof-grid { display:grid; grid-template-columns:.8fr .8fr .8fr 1.6fr; border:1px solid var(--near-black); border-radius:22px; overflow:hidden; background:#fff; box-shadow:7px 7px 0 var(--near-black); }
.proof-item { min-height:130px; padding:24px; border-right:1px solid var(--near-black); display:flex; flex-direction:column; justify-content:space-between; }
.proof-item:last-child { border-right:0; background:var(--acid); }
.proof-item b { font-size:clamp(2.35rem,4vw,4rem); line-height:.9; letter-spacing:-.06em; }
.proof-item span { max-width:170px; font-size:.82rem; font-weight:780; line-height:1.25; text-transform:uppercase; letter-spacing:.06em; }
.proof-wide span { max-width:260px; }

.capability-showcase { padding-top:128px; }
.bento-skills { display:grid; grid-template-columns:repeat(12,1fr); grid-auto-rows:minmax(210px,auto); gap:16px; }
.bento { position:relative; overflow:hidden; padding:28px; border:1.5px solid var(--near-black); border-radius:26px; background:#fff; box-shadow:5px 5px 0 rgba(17,17,20,.92); }
.bento h3 { font-size:clamp(1.55rem,2.5vw,2.45rem); margin-bottom:12px; }
.bento p:last-child { margin-bottom:0; }
.bento-research { grid-column:span 7; display:flex; align-items:flex-start; justify-content:space-between; gap:30px; background:var(--sky); }
.bento-workshop { grid-column:span 5; grid-row:span 1; background:#fff5dc; }
.bento-lead { grid-column:span 5; background:var(--lav); }
.bento-figma { grid-column:span 7; display:grid; grid-template-columns:auto 1fr auto; gap:22px; align-items:center; background:#15151a; color:#fff; }
.bento-figma .mini-label { color:var(--acid); }
.bento-access { grid-column:span 5; display:grid; grid-template-columns:auto 1fr; gap:26px; align-items:center; background:var(--acid); }
.bento-mobile { grid-column:span 4; background:var(--hot); }
.bento-discovery { grid-column:span 3; background:#fff; }
.bento-icon { font-size:4.5rem; line-height:1; }
.study-meter { align-self:stretch; width:110px; display:flex; gap:7px; align-items:flex-end; }
.study-meter span { flex:1; border:1px solid var(--near-black); border-radius:999px 999px 3px 3px; background:#fff; }
.study-meter span:nth-child(1){height:38%}.study-meter span:nth-child(2){height:62%}.study-meter span:nth-child(3){height:86%;background:var(--accent)}.study-meter span:nth-child(4){height:54%}.study-meter span:nth-child(5){height:75%}
.tape { position:absolute; top:8px; right:32px; width:88px; height:26px; background:rgba(0,113,227,.12); transform:rotate(5deg); opacity:.75; }
.sticky-stack { display:flex; gap:8px; margin:22px 0 24px; align-items:center; }
.sticky-stack i { display:grid; place-items:center; width:84px; height:84px; background:var(--acid); font-style:normal; font-size:.8rem; font-weight:900; transform:rotate(-4deg); box-shadow:2px 2px 0 #111; }
.sticky-stack i:nth-child(2){background:var(--hot); transform:rotate(3deg)} .sticky-stack i:nth-child(3){background:var(--sky); transform:rotate(-1deg)}
.avatar-row { display:flex; margin-top:24px; }
.avatar-row span { width:48px; height:48px; display:grid; place-items:center; margin-left:-7px; border:2px solid var(--near-black); border-radius:50%; background:#fff; font-size:.68rem; font-weight:900; }
.avatar-row span:first-child { margin-left:0; background:var(--acid); }
.figma-mark { width:56px; display:grid; grid-template-columns:1fr 1fr; }
.figma-mark i { width:26px; height:26px; display:block; background:#ff7262; border-radius:13px 0 0 13px; }
.figma-mark i:nth-child(2){background:#f24e1e;border-radius:0 13px 13px 0}.figma-mark i:nth-child(3){background:#a259ff}.figma-mark i:nth-child(4){background:#1abcfe;border-radius:50%}.figma-mark i:nth-child(5){background:#0acf83;border-radius:13px 0 13px 13px}
.interaction-demo { display:grid; gap:7px; justify-items:center; }
.interaction-demo button { border:1px solid #fff; border-radius:12px; padding:12px 15px; background:var(--acid); color:#111; font-weight:900; pointer-events:none; }
.interaction-demo button span { display:inline-block; transition:transform .25s ease; }.bento-figma:hover .interaction-demo button span { transform:translateX(6px); }
.interaction-demo small { color:#a5a5b0; font:700 .65rem/1 ui-monospace,monospace; }
.contrast-demo { width:100px; height:100px; display:grid; place-content:center; text-align:center; border:2px solid #111; border-radius:18px; background:#111; color:#fff; transform:rotate(-3deg); }.contrast-demo span{font-size:2rem;font-weight:900;line-height:1}.contrast-demo b{font-size:.65rem;color:var(--acid);margin-top:4px}
.device-pair { position:absolute; right:20px; bottom:-28px; width:125px; height:145px; }.device-pair span{position:absolute; display:block; border:2px solid #111; background:#fff; border-radius:22px}.device-pair span:first-child{width:75px;height:138px;right:0;transform:rotate(8deg)}.device-pair span:last-child{width:59px;height:112px;left:0;bottom:0;transform:rotate(-9deg);background:var(--acid)}

.process-section { background:var(--near-black); color:#fff; }
.process-section .eyebrow { color:var(--acid); }.process-section .eyebrow::before{background:var(--hot)}
.process-head { display:grid; grid-template-columns:1.1fr .9fr; gap:50px; align-items:end; margin-bottom:54px; }.process-head h2{font-size:clamp(3rem,6vw,6.2rem)}.process-head .lede{color:#c2c2ca}
.process-track { display:grid; grid-template-columns:repeat(5,1fr); border:1px solid rgba(255,255,255,.25); border-radius:24px; overflow:hidden; }
.process-node { min-height:220px; padding:24px 20px; border-right:1px solid rgba(255,255,255,.22); display:flex; flex-direction:column; justify-content:space-between; background:rgba(255,255,255,.03); transition:background .25s ease, transform .25s ease; }.process-node:last-child{border-right:0}.process-node:hover{background:var(--accent);transform:translateY(-5px)}
.process-node b { color:var(--acid); font:800 .8rem/1 ui-monospace,monospace; }.process-node strong{font-size:1.5rem;letter-spacing:-.04em}.process-node span{color:#aaaab5;font-size:.78rem;text-transform:uppercase;letter-spacing:.07em}.process-node:hover span{color:#fff}

.work-remix .project-card { border:1.5px solid var(--near-black); box-shadow:6px 6px 0 var(--near-black); border-radius:26px; }
.work-remix .project-card:nth-child(2n) { transform:rotate(.45deg); }.work-remix .project-card:nth-child(2n+1) { transform:rotate(-.3deg); }.work-remix .project-card:hover { transform:translate(-3px,-4px) rotate(0); box-shadow:11px 12px 0 var(--accent); }
.center-row { justify-content:center; margin-top:42px; }

.leadership-lab { background:var(--accent); color:#fff; }
.leadership-lab .eyebrow { color:var(--acid); }.leadership-lab .eyebrow::before{background:var(--acid)}.leadership-lab .lede{color:#f2efff}.leadership-lab-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:70px;align-items:start}
.leadership-receipts{display:grid;gap:12px}.leadership-receipts article{display:grid;grid-template-columns:46px 1fr;gap:4px 16px;padding:20px 22px;border:1px solid rgba(255,255,255,.35);border-radius:18px;background:rgba(0,0,0,.12)}.leadership-receipts article span{grid-row:1/3;color:var(--acid);font:900 .75rem/1 ui-monospace,monospace;padding-top:4px}.leadership-receipts strong{font-size:1.3rem}.leadership-receipts p{margin:0;color:#ded9ff}
.trend-cta { background:var(--near-black); border:1px solid var(--near-black); box-shadow:10px 10px 0 var(--hot); }.trend-cta .mini-label{color:var(--acid)}

/* Modernize shared interior pages without sacrificing readability */
.page-hero { background:linear-gradient(135deg,var(--accent-soft),transparent 70%); }
.page-hero h1 { max-width:1050px; }
.capability-card,.decision-card,.approach-row,.resume-card,.contact-card,.about-card { border-color:var(--near-black); box-shadow:4px 4px 0 rgba(17,17,20,.9); }
.pill { border-color:rgba(17,17,20,.3); background:#fff; }
.section-dark { background:var(--near-black); }
.cta-panel { border-radius:28px; }

@media (max-width: 1050px) {
  .trend-hero-grid{grid-template-columns:1fr;}.ux-board{max-width:720px}.board-canvas{min-height:500px}
  .proof-grid{grid-template-columns:repeat(2,1fr)}.proof-item{border-bottom:1px solid var(--near-black)}.proof-item:nth-child(2){border-right:0}.proof-item:nth-child(3){border-bottom:0}.proof-item:nth-child(4){border-bottom:0}
  .bento-research{grid-column:span 12}.bento-workshop{grid-column:span 6}.bento-lead{grid-column:span 6}.bento-figma{grid-column:span 12}.bento-access{grid-column:span 6}.bento-mobile{grid-column:span 6}.bento-discovery{grid-column:span 12}
  .process-track{grid-template-columns:repeat(2,1fr)}.process-node{border-bottom:1px solid rgba(255,255,255,.22)}.process-node:nth-child(2n){border-right:0}.process-node:last-child{grid-column:span 2;border-bottom:0}
  .leadership-lab-grid{grid-template-columns:1fr}
}
@media (max-width: 700px) {
  .trend-hero{padding-top:50px}.trend-hero-copy h1{font-size:clamp(3.7rem,17vw,5.7rem)}.trend-hero-grid{gap:40px}.ux-board{box-shadow:8px 10px 0 var(--lav)}.board-canvas{min-height:430px}.board-card{width:72%;padding:18px}.sticky{width:115px;min-height:100px;padding:12px}.sticky-lime{right:4%;top:29%}.sticky-pink{left:6%;bottom:8%}.board-mobile{width:110px;height:220px;right:7%;bottom:7%;padding:28px 10px 12px}.phone-row{height:42px}.phone-button{height:29px}.a11y-chip{width:74px;height:74px;left:44%;bottom:25%}.figma-cursor{display:none}
  .proof-grid{grid-template-columns:1fr 1fr}.proof-item{min-height:115px;padding:18px}.proof-item b{font-size:2.5rem}.proof-item span{font-size:.67rem}
  .bento-skills{display:block}.bento{margin-bottom:14px;min-height:0}.bento-research,.bento-figma,.bento-access{display:block}.study-meter{height:95px;margin-top:25px}.figma-mark{margin-bottom:20px}.interaction-demo{justify-items:start;margin-top:24px}.contrast-demo{margin-bottom:20px}.bento-mobile{min-height:270px}
  .process-head{grid-template-columns:1fr}.process-track{grid-template-columns:1fr}.process-node,.process-node:nth-child(2n){border-right:0}.process-node:last-child{grid-column:auto}.process-node{min-height:155px}
}

@media (prefers-reduced-motion: reduce) {
  .work-remix .project-card,.work-remix .project-card:hover,.ux-board,.sticky,.board-mobile { transform:none !important; }
  .process-node:hover { transform:none; }
}

/* ===== Refined product-led visual system ===== */
:root {
  --ink: #1d1d1f;
  --ink-soft: #3a3a3c;
  --muted: #6e6e73;
  --muted-2: #8e8e93;
  --paper: #ffffff;
  --paper-2: #f5f5f7;
  --surface: #ffffff;
  --line: rgba(0,0,0,.10);
  --accent: #0071e3;
  --accent-dark: #0066cc;
  --accent-soft: #f5f5f7;
  --dark: #1d1d1f;
  --dark-2: #2c2c2e;
  --shadow-sm: 0 6px 20px rgba(0,0,0,.06);
  --shadow-md: 0 16px 44px rgba(0,0,0,.08);
  --shadow-lg: 0 28px 80px rgba(0,0,0,.10);
  --radius-sm: 16px;
  --radius: 28px;
  --radius-lg: 40px;
  --container: 1180px;
}

body {
  background: #fff;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -.01em;
}

.site-header {
  min-height: 64px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
}
.header-inner { min-height: 64px; }
.brand { gap: 10px; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--ink); transform: none; box-shadow: none;
}
.brand-mark span { color: #fff; }
.brand-name { font-size: 14px; font-weight: 650; }
.brand-role { margin-top: 3px; font-size: 10px; font-weight: 550; letter-spacing: .06em; }
.site-nav { gap: 0; }
.site-nav a { padding: 8px 11px; font-size: 12px; font-weight: 500; border-radius: 8px; }
.site-nav a:hover, .site-nav a[aria-current="page"] { background: rgba(0,0,0,.04); }
.site-nav .nav-cta,
.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] { margin-left: 8px; color:#fff; background: var(--accent); border:0; }

h1,h2,h3,h4 { font-weight: 650; letter-spacing: -.055em; }
h1 { line-height: .98; }
h2 { line-height: 1.02; }
.eyebrow { color: var(--muted); font-size: 12px; font-weight: 650; letter-spacing: .08em; }
.eyebrow::before { display:none; }

.button { min-height: 46px; padding: 11px 18px; border: 0; border-radius: 999px; box-shadow: none; font-size: 14px; font-weight: 600; letter-spacing: 0; }
.button:hover { transform:none; box-shadow:none; filter: brightness(.96); }
.button.accent { border:0; background:var(--accent); }
.button.secondary { border: 1px solid rgba(0,0,0,.10); background: #f5f5f7; }
.button.secondary:hover { color:var(--ink); background:#ededf0; }
.button.light { box-shadow:none; }

.trend-hero { padding: 112px 0 104px; background: linear-gradient(180deg,#fff 0%,#fbfbfd 100%); }
.trend-hero-grid { grid-template-columns:minmax(0,1fr) minmax(430px,.92fr); gap:72px; }
.trend-hero-copy h1 { max-width:760px; margin:22px 0 30px; font-size:clamp(4rem,7.5vw,7rem); line-height:.94; font-weight:650; }
.trend-hero-copy .lede { max-width:720px; color:var(--muted); font-size:clamp(1.2rem,1.8vw,1.48rem); line-height:1.5; }
.status-line { padding:0; border:0; border-radius:0; background:transparent; box-shadow:none; color:var(--muted); font-size:.78rem; font-weight:600; letter-spacing:.04em; }
.status-dot { width:7px; height:7px; box-shadow:none; }
.kicker { margin:28px 0 0; color:var(--muted); font-size:.9rem; font-weight:500; text-transform:none; letter-spacing:0; }
.kicker i { color:#c7c7cc; padding:0 5px; }
.scribble { color:var(--ink); }
.scribble::after { display:none; }
.tool-ribbon { gap:8px; margin-top:34px; }
.tool-ribbon span { padding:8px 12px; border:0; border-radius:999px; color:var(--muted); background:#f5f5f7; font-size:.78rem; font-weight:550; transform:none !important; }

.ux-board { border:1px solid rgba(0,0,0,.08); border-radius:34px; background:#f5f5f7; box-shadow:0 28px 70px rgba(0,0,0,.10); transform:none; }
.board-top,.board-bottom { color:#6e6e73; background:rgba(255,255,255,.82); font-family:-apple-system,BlinkMacSystemFont,"SF Pro Text",sans-serif; font-weight:600; letter-spacing:.02em; }
.board-top { border-bottom:1px solid rgba(0,0,0,.07); }
.board-bottom { border-top:1px solid rgba(0,0,0,.07); color:#8e8e93; }
.board-live { color:#34c759; }
.board-canvas { background:linear-gradient(145deg,#f7f7f9,#ededf1); background-image:none; }
.board-card { border:1px solid rgba(0,0,0,.08) !important; border-radius:22px !important; box-shadow:0 12px 30px rgba(0,0,0,.08) !important; transform:none !important; background:rgba(255,255,255,.92) !important; }
.sticky { border:1px solid rgba(0,0,0,.08) !important; border-radius:18px !important; box-shadow:0 10px 24px rgba(0,0,0,.08) !important; transform:none !important; background:#fff !important; color:var(--ink) !important; }
.board-mobile { border:6px solid #1d1d1f !important; border-radius:30px !important; box-shadow:0 18px 38px rgba(0,0,0,.16) !important; transform:none !important; }
.a11y-chip { border:0 !important; border-radius:18px !important; background:#1d1d1f !important; color:#fff !important; box-shadow:0 12px 26px rgba(0,0,0,.12) !important; transform:none !important; }
.figma-cursor { border-radius:999px !important; box-shadow:none !important; }

.proof-strip { border:0; background:#f5f5f7; }
.proof-grid { gap:1px; background:rgba(0,0,0,.06); border-radius:28px; overflow:hidden; }
.proof-item { min-height:150px; border:0 !important; background:#fff; padding:32px; }
.proof-item b { font-weight:650; }
.proof-item span { color:var(--muted); }

.capability-showcase { background:#fff; }
.section-heading { margin-bottom:56px; }
.section-heading > p { color:var(--muted); }
.bento-skills { gap:18px; grid-auto-rows:minmax(220px,auto); }
.bento { border:0; border-radius:30px; box-shadow:none; background:#f5f5f7 !important; padding:32px; }
.bento:hover { transform:none !important; box-shadow:none !important; }
.bento h3 { font-weight:650; }
.bento p { color:var(--muted); }
.bento-figma { color:var(--ink); background:#1d1d1f !important; }
.bento-figma h3,.bento-figma p { color:#fff; }
.bento-figma p:last-child { color:#c7c7cc; }
.bento-figma .mini-label { color:#a1a1a6; }
.bento-access { background:#f5f5f7 !important; }
.bento-mobile { background:#f2f2f7 !important; }
.bento-workshop { background:#f7f7f9 !important; }
.bento-lead { background:#f5f5f7 !important; }
.bento-research { background:#f5f5f7 !important; }
.sticky-stack i { transform:none !important; border:0 !important; border-radius:14px !important; box-shadow:none !important; background:#fff !important; }
.avatar-row span { border:2px solid #fff !important; background:#1d1d1f !important; color:#fff !important; }
.interaction-demo button { border:0 !important; border-radius:999px !important; background:#fff !important; color:#1d1d1f !important; box-shadow:none !important; }
.contrast-demo { border:0 !important; border-radius:22px !important; box-shadow:none !important; background:#fff !important; }

.process-section { background:#f5f5f7; }
.process-head { margin-bottom:54px; }
.process-track { border:0 !important; border-radius:30px !important; overflow:hidden; background:#fff !important; box-shadow:none !important; }
.process-node { border-color:rgba(0,0,0,.07) !important; background:#fff !important; }
.process-node b { color:var(--accent) !important; }

.work-remix { background:#fff; }
.work-remix .project-card,
.work-remix .project-card:nth-child(2n),
.work-remix .project-card:nth-child(2n+1),
.work-remix .project-card:hover { transform:none; border:0; border-radius:32px; box-shadow:none; background:#f5f5f7; }
.work-remix .project-card:hover { box-shadow:0 20px 50px rgba(0,0,0,.08); }
.project-art { background:#ededf0; }
.project-content { padding:30px; }
.project-meta { color:var(--muted); font-weight:600; letter-spacing:.06em; }
.project-link { color:var(--accent); font-weight:600; }

.leadership-lab { color:var(--ink); background:#f5f5f7; }
.leadership-lab .eyebrow { color:var(--muted); }
.leadership-lab .lede { color:var(--muted); }
.leadership-receipts article { border:0 !important; border-radius:24px !important; background:#fff !important; box-shadow:none !important; }
.leadership-receipts article span { color:var(--accent) !important; }
.leadership-receipts article p { color:var(--muted) !important; }
.leadership-lab .button.light { color:#fff; background:var(--accent); }

.cta-panel.trend-cta { border:0 !important; border-radius:34px !important; background:#1d1d1f !important; box-shadow:none !important; }
.site-footer { padding-top:76px; background:#f5f5f7; color:var(--ink); }
.site-footer .eyebrow { color:var(--muted); }
.footer-title { max-width:800px; color:var(--ink); font-weight:650; }
.site-footer p,.footer-links a,.footer-bottom { color:var(--muted); }
.footer-links a:hover { color:var(--ink); }
.site-footer .button.light { color:#fff; background:var(--accent); }
.footer-bottom { border-top:1px solid rgba(0,0,0,.08); }

.reveal { transform:translateY(10px); transition:opacity .6s ease,transform .6s ease; }
:focus-visible { outline:3px solid rgba(0,113,227,.55); outline-offset:3px; }

@media (max-width:900px) {
  .site-nav { background:rgba(255,255,255,.98); }
  .trend-hero { padding-top:76px; }
  .trend-hero-grid { gap:56px; }
}
@media (max-width:640px) {
  .trend-hero { padding:64px 0 72px; }
  .trend-hero-copy h1 { font-size:clamp(3.3rem,15vw,4.8rem); }
  .ux-board { border-radius:28px; box-shadow:0 20px 50px rgba(0,0,0,.10); }
  .proof-grid { border-radius:22px; }
  .bento { border-radius:24px; }
}


/* ===== Section 508 / WCAG AA accessibility hardening ===== */
/* High-contrast content colors and predictable keyboard focus. */
:root {
  --a11y-blue: #0066cc;
  --a11y-blue-dark: #003b73;
  --a11y-text: #1d1d1f;
  --a11y-secondary: #3a3a3c;
  --a11y-tertiary: #515154;
  --a11y-focus: #005fcc;
}

/* Make focus highly visible on every operable control, including dark surfaces. */
:focus-visible {
  outline: 3px solid var(--a11y-focus);
  outline-offset: 4px;
  box-shadow: 0 0 0 2px #fff;
}
.section-dark :focus-visible,
.cta-panel :focus-visible,
.bento-figma :focus-visible {
  outline-color: #9fd2ff;
  box-shadow: 0 0 0 2px #1d1d1f;
}

/* Ensure common small/secondary copy maintains AA contrast on light surfaces. */
.muted,
.section-heading > p,
.project-meta,
.project-content p,
.capability-card p,
.about-copy p,
.page-hero-aside,
.case-subtitle,
.case-fact span,
.case-nav a,
.insight-card p,
.decision-card p,
.metric-card span,
.resume-meta,
.form-help,
.contact-card span,
.site-footer p,
.footer-links a,
.footer-bottom {
  color: var(--a11y-tertiary);
}

/* Requested process-section corrections. */
.process-section {
  color: var(--a11y-text);
  background: #f5f5f7;
}
.process-head h2 {
  color: var(--a11y-blue-dark);
}
.process-head .lede {
  color: var(--a11y-secondary);
}
.process-section .eyebrow {
  color: var(--a11y-blue-dark);
}
.process-track {
  background: #fff !important;
}
.process-node {
  color: var(--a11y-text);
  background: #fff !important;
  border-color: #d2d2d7 !important;
  transform: none !important;
}
.process-node:hover {
  color: var(--a11y-text);
  background: #fff !important;
  transform: none !important;
}
.process-node b {
  color: var(--a11y-blue) !important;
}
.process-node strong {
  color: var(--a11y-text);
}
.process-node span,
.process-node:hover span {
  color: var(--a11y-tertiary);
}

/* Decorative accessibility demo must itself remain readable. */
.contrast-demo {
  color: var(--a11y-text) !important;
  background: #fff !important;
}
.contrast-demo b {
  color: var(--a11y-blue-dark) !important;
}
.board-bottom {
  color: var(--a11y-tertiary);
}

/* Accessible inputs and status messaging. */
.form-field input,
.form-field textarea {
  min-height: 48px;
  border-color: #8e8e93;
  color: var(--a11y-text);
  background: #fff;
}
.form-field textarea { min-height: 170px; }
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #5f5f63;
  opacity: 1;
}
.form-field input:focus-visible,
.form-field textarea:focus-visible {
  border-color: var(--a11y-focus);
  outline: 3px solid rgba(0,95,204,.32);
  outline-offset: 2px;
  box-shadow: none;
}
.form-status { color: #006b5f; }

/* Keep touch targets comfortably operable. */
.filter-button,
.site-nav a,
.nav-toggle {
  min-height: 44px;
}
.filter-button { padding-inline: 16px; }

/* Do not communicate interactivity on static process cards. */
.process-node { transition: none; }

/* Visible link treatment inside long-form copy without changing navigation styling. */
.case-body p a,
.about-copy p a,
.resume-card p a,
.form-help a {
  color: var(--a11y-blue-dark);
  text-decoration: underline;
  text-decoration-thickness: .08em;
  text-underline-offset: .16em;
}

/* Avoid motion when the user has requested less of it. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  .reveal,
  .reveal.is-visible { opacity: 1 !important; transform: none !important; }
}

/* High Contrast / forced-colors support for core controls. */
@media (forced-colors: active) {
  .button,
  .filter-button,
  .nav-toggle,
  .contact-card,
  .project-card,
  .process-node,
  .bento,
  .contact-form { border: 1px solid CanvasText !important; }
  :focus-visible { outline: 3px solid Highlight !important; box-shadow: none !important; }
}

/* Non-interactive interaction sample styling. */
.interaction-demo .demo-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 15px;
  border-radius: 999px;
  background: #fff;
  color: #1d1d1f;
  font-weight: 700;
}

/* Approach infographic */
.approach-infographic {
  margin: 2rem 0 3rem;
}
.approach-infographic img {
  display: block;
  width: min(100%, 1100px);
  height: auto;
  margin-inline: auto;
  border-radius: 28px;
  box-shadow: 0 18px 60px rgba(18, 29, 61, 0.10);
}
.approach-infographic figcaption {
  max-width: 70ch;
  margin: 0.9rem auto 0;
  color: #3d465b;
  font-size: 0.95rem;
  text-align: center;
}
@media (max-width: 720px) {
  .approach-infographic {
    margin: 1.5rem 0 2.25rem;
  }
  .approach-infographic img {
    border-radius: 20px;
  }
}


/* Approach dark-section paragraph contrast fix */
.section-dark .section-heading > p {
  color: #f2f2f7 !important;
}

/* ===== Main navigation interaction states ===== */
/* Strong hover and current-page treatments for clear orientation and keyboard/mouse feedback. */
.site-nav a {
  transition: color .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.site-nav a:hover:not([aria-current="page"]) {
  color: #003b73;
  background: #e8f2ff;
  box-shadow: inset 0 0 0 1px #8abfff;
}
.site-nav a[aria-current="page"] {
  color: #fff;
  background: #003b73;
  font-weight: 700;
  box-shadow: 0 0 0 2px rgba(0, 102, 204, .22);
}
.site-nav .nav-cta:hover:not([aria-current="page"]) {
  color: #fff;
  background: #0055a8;
  box-shadow: 0 0 0 2px rgba(0, 85, 168, .18);
}
.site-nav .nav-cta[aria-current="page"] {
  color: #fff;
  background: #003b73;
  font-weight: 700;
  box-shadow: 0 0 0 2px #9fd2ff;
}

@media (max-width: 900px) {
  .site-nav a[aria-current="page"] {
    box-shadow: inset 4px 0 0 #9fd2ff;
  }
  .site-nav .nav-cta[aria-current="page"] {
    box-shadow: inset 4px 0 0 #9fd2ff, 0 0 0 2px #9fd2ff;
  }
}

@media (forced-colors: active) {
  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    outline: 2px solid Highlight;
    outline-offset: 2px;
  }
}


/* ===== Swimo-matched Contact navigation treatment ===== */
/* Uses the same aqua-to-teal palette as the Swimo homepage artwork. */
.site-nav .nav-cta {
  color: #073b43;
  background: linear-gradient(135deg, #dff9f6 0%, #72d6d1 100%);
  border: 1px solid #007d82;
  font-weight: 700;
  box-shadow: none;
}
.site-nav .nav-cta:hover:not([aria-current="page"]) {
  color: #fff;
  background: #007d82;
  border-color: #006d77;
  box-shadow: 0 0 0 3px rgba(0, 109, 119, .18);
}
.site-nav .nav-cta[aria-current="page"] {
  color: #fff;
  background: #006d77;
  border-color: #00595f;
  font-weight: 750;
  box-shadow: 0 0 0 3px #baf5f0;
}
@media (max-width: 900px) {
  .site-nav .nav-cta[aria-current="page"] {
    box-shadow: inset 4px 0 0 #baf5f0, 0 0 0 2px #baf5f0;
  }
}

/* Updated brand icon */
.brand-mark {
  width: 42px !important;
  height: 42px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
  overflow: hidden;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* About page portrait card */
.about-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 22px;
  min-height: 520px;
}
.about-card::before {
  display: none !important;
}
.about-card-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,.03));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.about-card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
}
.about-card-body {
  position: relative;
  z-index: 1;
}
.about-card .monogram {
  margin-bottom: 14px;
}
.about-card h3 {
  max-width: 420px;
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  line-height: 1.06;
}
.about-card p {
  max-width: 440px;
  margin: 0;
}
@media (max-width: 720px) {
  .brand-mark {
    width: 34px !important;
    height: 34px !important;
  }
  .about-card {
    min-height: auto;
    padding: 24px;
    gap: 18px;
  }
  .about-card-media {
    border-radius: 22px;
  }
}

/* Slimmer desktop navigation pills */
@media (min-width: 901px) {
  .site-nav a {
    min-height: 34px;
    padding: 5px 10px;
    border-radius: 7px;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .site-nav .nav-cta {
    padding-inline: 12px;
  }
}

/* Showboat case-study artwork gallery */
.showboat-gallery {
  display: grid;
  gap: 20px;
  margin: 32px 0;
}
.showboat-mobile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.showboat-artifact {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.showboat-artifact img {
  display: block;
  width: 100%;
}
.showboat-artifact figcaption {
  padding: 16px 20px 18px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.5;
}
.showboat-artifact-wide img {
  background: #ece8e4;
}
@media (max-width: 700px) {
  .showboat-mobile-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Showboat case-study visual system ===== */
.showboat-case {
  --showboat-navy: #061c31;
  --showboat-teal: #075c63;
  --showboat-teal-bright: #0a7a80;
  --showboat-cream: #fff8eb;
  --showboat-coral: #c93f4c;
  --showboat-gold: #bd8b35;
}
.showboat-case .case-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(10,122,128,.28), transparent 30%),
    linear-gradient(145deg, #061c31 0%, #08263d 58%, #064f58 100%);
}
.showboat-case .case-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 26%, rgba(255,255,255,.75) 0 1px, transparent 1.5px),
    radial-gradient(circle at 66% 20%, rgba(255,255,255,.5) 0 1px, transparent 1.4px),
    radial-gradient(circle at 88% 68%, rgba(255,255,255,.5) 0 1px, transparent 1.4px);
  background-size: 190px 170px, 240px 210px, 280px 250px;
  opacity: .34;
  content: "";
}
.showboat-case .case-hero .container { position: relative; z-index: 1; }
.showboat-case .breadcrumb,
.showboat-case .breadcrumb a,
.showboat-case .case-subtitle { color: #f5efe3; }
.showboat-case .case-hero .eyebrow { color: #f0c26a; }
.showboat-case .case-hero h1 { color: #fff; }
.showboat-case .case-fact { border-color: rgba(255,255,255,.22); }
.showboat-case .case-fact span { color: #d8d7d1; }
.showboat-case .case-fact strong { color: #fff; }

.showboat-case .callout {
  border-color: #d9c79e;
  border-left: 6px solid var(--showboat-coral);
  background: var(--showboat-cream);
  box-shadow: 0 14px 36px rgba(6,28,49,.08);
}
.showboat-case .process-step {
  background: var(--showboat-navy);
  box-shadow: 0 14px 28px rgba(6,28,49,.12);
}
.showboat-case .process-step span { color: #f0c26a; }
.showboat-case .insight-card b,
.showboat-case .decision-card b {
  color: #fff;
  background: var(--showboat-teal);
}

.showboat-final-experience {
  position: relative;
  margin-inline: calc(50% - 50vw);
  padding: 86px max(24px, calc((100vw - var(--container)) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 10% 0%, rgba(201,63,76,.16), transparent 24%),
    radial-gradient(circle at 100% 34%, rgba(10,122,128,.28), transparent 28%),
    linear-gradient(180deg, #061c31 0%, #052336 55%, #063c42 100%);
}
.showboat-final-heading {
  max-width: 820px;
  margin-bottom: 44px;
}
.showboat-final-heading .eyebrow { color: #f0c26a; }
.showboat-final-heading h2 { color: #fff; }
.showboat-final-heading .lede { color: #e9e6df; }
.showboat-final-frame {
  overflow: hidden;
  margin: 0 0 28px;
  border: 1px solid rgba(240,194,106,.42);
  border-radius: 28px;
  background: var(--showboat-cream);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}
.showboat-final-frame img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--showboat-cream);
}
.showboat-final-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  color: #fff;
  background: var(--showboat-teal);
}
.showboat-final-label span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid #f0c26a;
  border-radius: 50%;
  color: #f6d696;
  font-size: .72rem;
  font-weight: 850;
}
.showboat-final-label strong {
  font-size: .88rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.showboat-final-frame figcaption {
  padding: 18px 22px 22px;
  color: #263742;
  background: var(--showboat-cream);
  font-size: .92rem;
  line-height: 1.55;
}
.showboat-final-pair {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 28px;
  align-items: start;
}
.showboat-final-frame-tall img {
  max-height: 940px;
  object-fit: contain;
  object-position: top center;
}
.showboat-final-frame-featured img {
  max-height: 980px;
  object-fit: contain;
  object-position: top center;
}
.showboat-final-frame-wide img {
  object-fit: contain;
}
.showboat-case .showboat-artifact {
  border-color: #d6c7a6;
  background: #fffaf0;
  box-shadow: 0 14px 34px rgba(6,28,49,.09);
}
.showboat-case .showboat-artifact figcaption {
  color: #42505a;
  background: #fffaf0;
}

@media (max-width: 820px) {
  .showboat-final-experience {
    padding-block: 64px;
  }
  .showboat-final-pair {
    grid-template-columns: 1fr;
  }
  .showboat-final-frame-tall img,
  .showboat-final-frame-featured img {
    max-height: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .showboat-final-frame,
  .showboat-artifact { scroll-behavior: auto; }
}

/* Keep the Showboat final-design gallery aligned with the case-study content column. */
.showboat-final-experience {
  margin-inline: 0;
  padding: 54px;
  border-radius: 34px;
}
@media (max-width: 700px) {
  .showboat-final-experience {
    padding: 32px 18px;
    border-radius: 24px;
  }
  .showboat-final-frame,
  .showboat-case .showboat-artifact {
    border-radius: 20px;
  }
}

/* ===== Showboat hero imagery updates ===== */
.showboat-hero-art {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  background: #fff8eb;
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}
.showboat-hero-art img {
  display: block;
  width: 100%;
  height: auto;
}
.showboat-hero-art figcaption {
  padding: 14px 18px 16px;
  color: #f5efe3;
  background: #061c31;
  font-size: .84rem;
}

/* Desktop home hero: use real product work; retain the original board on smaller screens. */
.home-hero-visual { min-width: 0; }
.home-showboat-desktop {
  display: block;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(6,28,49,.12);
  border-radius: 34px;
  background: #061c31;
  box-shadow: 0 28px 70px rgba(0,0,0,.12);
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
}
.home-showboat-desktop:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 78px rgba(0,0,0,.16);
}
.home-showboat-kicker,
.home-showboat-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
}
.home-showboat-kicker span,
.home-showboat-footer span {
  color: #d8e7e6;
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.home-showboat-kicker strong { color: #f0c26a; }
.home-showboat-footer strong { color: #fff; font-size: .85rem; }
.home-showboat-image {
  overflow: hidden;
  height: 520px;
  background: #fff8eb;
}
.home-showboat-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .55s ease;
}
.home-showboat-desktop:hover .home-showboat-image img { transform: scale(1.015); }
.home-ux-board-mobile { display: none; }

@media (max-width: 900px) {
  .home-showboat-desktop { display: none; }
  .home-ux-board-mobile { display: block; }
  .showboat-hero-art { border-radius: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .home-showboat-desktop,
  .home-showboat-image img { transition: none !important; transform: none !important; }
}

/* ===== Fancy Foods case study theme ===== */
.fancy-foods-case {
  --fancy-teal: #0b4d4d;
  --fancy-teal-2: #0e5a5a;
  --fancy-coral: #c83d32;
  --fancy-cream: #fff8f0;
  --fancy-cream-2: #f3e8dc;
  --fancy-sage: #6c9b7b;
  --fancy-gold: #c98a2e;
}
.fancy-foods-case .case-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 16%, rgba(108,155,123,.17), transparent 24%),
    radial-gradient(circle at 12% 82%, rgba(200,61,50,.10), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, var(--fancy-cream) 100%);
}
.fancy-foods-case .case-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--fancy-teal), var(--fancy-coral), var(--fancy-gold));
  content: "";
}
.fancy-foods-case .case-hero .container { position: relative; z-index: 1; }
.fancy-foods-case .case-hero h1 { color: var(--fancy-teal); }
.fancy-foods-case .case-hero .eyebrow { color: var(--fancy-coral); }
.fancy-foods-case .case-subtitle { color: #354345; }
.fancy-foods-case .case-fact { border-color: rgba(11,77,77,.18); }
.fancy-foods-case .case-fact span { color: #5d6667; }
.fancy-foods-case .case-fact strong { color: #163f40; }
.fancy-foods-case .breadcrumb a { color: var(--fancy-teal); }

.fancy-hero-art {
  margin: 34px 0 0;
  border: 1px solid rgba(11,77,77,.15);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(26,43,43,.14);
}
.fancy-hero-art img { display: block; width: 100%; height: auto; }
.fancy-hero-art figcaption {
  padding: 16px 22px 18px;
  border-top: 1px solid #eee4d9;
  color: #4f5a5a;
  background: var(--fancy-cream);
  font-size: .88rem;
  line-height: 1.5;
}
.fancy-foods-case .callout {
  border-left: 6px solid var(--fancy-coral);
  background: var(--fancy-cream);
}
.fancy-foods-case .callout p { color: #253f40; }
.fancy-foods-case .case-nav a:hover,
.fancy-foods-case .case-nav a:focus-visible { color: var(--fancy-coral); }

.fancy-section-band {
  margin-inline: -28px;
  padding: 34px 28px 38px;
  border-radius: 28px;
  background: linear-gradient(145deg, #fffaf4, #f2eee5);
  box-shadow: inset 0 0 0 1px rgba(11,77,77,.08);
}
.fancy-artifact {
  overflow: hidden;
  margin: 26px 0 0;
  border: 1px solid rgba(11,77,77,.14);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(34,55,55,.08);
}
.fancy-artifact img { display: block; width: 100%; height: auto; }
.fancy-artifact figcaption {
  padding: 15px 18px 17px;
  border-top: 1px solid #eee7de;
  color: #4d595a;
  background: #fffdf9;
  font-size: .86rem;
  line-height: 1.5;
}
.fancy-artifact-wide { margin-top: 30px; }
.fancy-persona-grid {
  display: grid;
  grid-template-columns: minmax(0,1.45fr) minmax(260px,.75fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 24px;
}
.fancy-persona-grid .fancy-artifact { margin: 0; }
.fancy-research-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border-radius: 24px;
  color: #fff;
  background: var(--fancy-teal);
}
.fancy-research-summary .mini-label { color: #ffd1c8; }
.fancy-research-summary h3 { margin: 8px 0 18px; color: #fff; font-size: 1.7rem; }
.fancy-research-summary ul { display: grid; gap: 12px; margin: 0; padding-left: 20px; }
.fancy-research-summary li { color: #f7f5ef; }

.fancy-wireframe-grid {
  display: grid;
  grid-template-columns: minmax(0,1.4fr) minmax(260px,.6fr);
  gap: 24px;
  align-items: start;
  margin-top: 26px;
}
.fancy-wireframe-grid .fancy-artifact { margin: 0; }
.fancy-wireframe-phone img {
  width: min(100%, 390px);
  margin-inline: auto;
  background: #fff;
}

.fancy-final-experience {
  position: relative;
  margin-inline: -32px;
  padding: 42px 32px 38px;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 5%, rgba(200,61,50,.18), transparent 28%),
    linear-gradient(145deg, #083f40 0%, #0b4d4d 55%, #0a4243 100%);
}
.fancy-final-heading .eyebrow { color: #f3b9af; }
.fancy-final-heading h2 { color: #fff; }
.fancy-final-heading .lede { color: #f4f0e9; }
.fancy-final-frame {
  overflow: hidden;
  margin: 28px 0 0;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 24px;
  background: var(--fancy-cream);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}
.fancy-final-frame img { display: block; width: 100%; height: auto; }
.fancy-final-frame figcaption {
  padding: 16px 20px 18px;
  color: #304748;
  background: var(--fancy-cream);
  font-size: .88rem;
  line-height: 1.5;
}
.fancy-principles-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 14px;
  margin-top: 22px;
}
.fancy-principles-grid article {
  position: relative;
  padding: 20px 20px 20px 60px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
}
.fancy-principles-grid span {
  position: absolute;
  top: 20px;
  left: 18px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--fancy-coral);
  font-size: 11px;
  font-weight: 800;
}
.fancy-principles-grid h3 { margin: 0 0 6px; color: #fff; font-size: 1rem; }
.fancy-principles-grid p { margin: 0; color: #e9e6df; font-size: .88rem; }

.fancy-foods-case .insight-card b,
.fancy-foods-case .decision-card b {
  color: #fff;
  background: var(--fancy-teal);
}
.fancy-foods-case .decision-card:nth-child(even) b { background: var(--fancy-coral); }
.fancy-foods-case .next-case { background: linear-gradient(135deg, var(--fancy-teal), #123d4a); }

@media (max-width: 900px) {
  .fancy-persona-grid,
  .fancy-wireframe-grid { grid-template-columns: 1fr; }
  .fancy-wireframe-phone img { width: min(100%, 470px); }
}
@media (max-width: 640px) {
  .fancy-section-band,
  .fancy-final-experience { margin-inline: -10px; padding: 28px 18px; border-radius: 22px; }
  .fancy-hero-art { border-radius: 22px; }
  .fancy-principles-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .fancy-foods-case .fancy-artifact,
  .fancy-foods-case .fancy-final-frame { scroll-behavior: auto; }
}

/* Give Fancy Foods research artifacts a little more editorial width. */
.fancy-foods-case .case-layout {
  grid-template-columns: 230px minmax(0, 920px);
  gap: 52px;
}
@media (max-width: 1080px) {
  .fancy-foods-case .case-layout {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 40px;
  }
}
@media (max-width: 900px) {
  .fancy-foods-case .case-layout { grid-template-columns: 1fr; }
}

/* ===== Swimo case study theme ===== */
.swimo-case {
  --swimo-deep: #102f3e;
  --swimo-deep-2: #17495c;
  --swimo-teal: #0d7473;
  --swimo-aqua: #2aa6b7;
  --swimo-mint: #dceeed;
  --swimo-mist: #f2f9f8;
  --swimo-lilac: #6252e9;
  --swimo-coral: #b65773;
}

.swimo-case .case-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 10%, rgba(98,82,233,.12), transparent 28%),
    radial-gradient(circle at 12% 78%, rgba(42,166,183,.14), transparent 30%),
    linear-gradient(180deg, #fbfdfc 0%, #eaf4f3 100%);
}
.swimo-case .case-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--swimo-deep), var(--swimo-aqua), var(--swimo-lilac));
  content: "";
}
.swimo-case .case-hero .container { position: relative; z-index: 1; }
.swimo-case .case-hero h1 { color: var(--swimo-deep); }
.swimo-case .case-hero .eyebrow { color: var(--swimo-teal); }
.swimo-case .case-subtitle { color: #38515b; }
.swimo-case .case-fact { border-color: rgba(16,47,62,.16); }
.swimo-case .case-fact span { color: #68757c; }
.swimo-case .case-fact strong { color: var(--swimo-deep); }
.swimo-case .breadcrumb a { color: var(--swimo-teal); }
.swimo-case .case-nav a:hover,
.swimo-case .case-nav a:focus-visible { color: var(--swimo-teal); }

.swimo-hero-stage {
  position: relative;
  min-height: 620px;
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 20%, rgba(98,82,233,.24), transparent 26%),
    radial-gradient(circle at 82% 88%, rgba(42,166,183,.25), transparent 31%),
    linear-gradient(145deg, #0e2b3a 0%, #123d4d 48%, #0f5660 100%);
  box-shadow: 0 34px 90px rgba(16,47,62,.22);
}
.swimo-hero-stage::before,
.swimo-hero-stage::after {
  position: absolute;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.swimo-hero-stage::before { top: -180px; right: -120px; width: 460px; height: 460px; }
.swimo-hero-stage::after { bottom: -220px; left: 25%; width: 520px; height: 520px; }
.swimo-hero-note {
  position: absolute;
  top: 48px;
  left: 48px;
  z-index: 4;
  max-width: 350px;
  color: #fff;
}
.swimo-hero-note .mini-label { color: #8edee1; }
.swimo-hero-note strong {
  display: block;
  margin: 8px 0 12px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}
.swimo-hero-note p { max-width: 300px; margin: 0; color: rgba(255,255,255,.72); }
.swimo-hero-phone,
.swimo-hero-watch {
  position: absolute;
  z-index: 3;
  max-width: none;
  filter: drop-shadow(0 24px 28px rgba(2,18,28,.32));
}
.swimo-hero-phone-primary { right: 44px; bottom: -55px; width: 350px; }
.swimo-hero-phone-secondary { right: 344px; bottom: -80px; width: 295px; }
.swimo-hero-watch { left: 34px; bottom: 34px; width: 575px; }

.swimo-case .callout {
  border-left: 6px solid var(--swimo-aqua);
  background: linear-gradient(135deg, #eef8f7, #e7f1f3);
}
.swimo-case .callout p { color: var(--swimo-deep); }

.swimo-case .case-layout {
  grid-template-columns: 230px minmax(0, 920px);
  gap: 52px;
}

.swimo-job-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 34px;
}
.swimo-job-grid article {
  position: relative;
  min-height: 190px;
  padding: 24px 22px 22px;
  border: 1px solid rgba(16,47,62,.12);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16,47,62,.06);
}
.swimo-job-grid span,
.swimo-flow-number,
.swimo-watch-steps span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--swimo-lilac);
  font-size: 11px;
  font-weight: 800;
}
.swimo-job-grid article:nth-child(2) span { background: var(--swimo-aqua); }
.swimo-job-grid article:nth-child(3) span { background: var(--swimo-teal); }
.swimo-job-grid h3 { margin: 18px 0 8px; font-size: 1.25rem; }
.swimo-job-grid p { margin: 0; font-size: .94rem; }

.swimo-section-band {
  margin-inline: -30px;
  padding: 38px 30px 42px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 8%, rgba(98,82,233,.10), transparent 26%),
    linear-gradient(145deg, #f4faf9, #e7f2f1);
  box-shadow: inset 0 0 0 1px rgba(16,47,62,.08);
}
.swimo-evolution-grid {
  display: grid;
  grid-template-columns: minmax(0,.88fr) minmax(0,1.12fr);
  gap: 24px;
  align-items: start;
  margin-top: 28px;
}
.swimo-device-card,
.swimo-flow-card,
.swimo-archive-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(16,47,62,.12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(16,47,62,.09);
}
.swimo-device-card {
  padding: 20px 20px 0;
  background: linear-gradient(180deg, #fff 0%, #f8fbfb 100%);
}
.swimo-device-card-refined { background: linear-gradient(180deg, #ffffff 0%, #eef7f6 100%); }
.swimo-device-card img {
  width: min(100%, 420px);
  margin: 12px auto 0;
}
.swimo-figure-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 4px 14px;
}
.swimo-figure-label span {
  color: var(--swimo-teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}
.swimo-figure-label strong { color: var(--swimo-deep); font-size: .95rem; }
.swimo-device-card figcaption,
.swimo-watch-figure figcaption,
.swimo-archive-card figcaption {
  padding: 16px 18px 18px;
  border-top: 1px solid rgba(16,47,62,.08);
  color: #53636a;
  background: #fbfdfd;
  font-size: .86rem;
  line-height: 1.5;
}
.swimo-device-card figcaption { margin-inline: -20px; }

.swimo-flow-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 24px;
  margin-top: 30px;
}
.swimo-flow-card {
  position: relative;
  padding: 24px 22px 0;
  background: linear-gradient(180deg, #fff 0%, #f4f9f9 100%);
}
.swimo-flow-number { position: absolute; top: 22px; right: 22px; }
.swimo-flow-copy { padding-right: 54px; }
.swimo-flow-copy .mini-label { color: var(--swimo-teal); }
.swimo-flow-copy h3 { margin: 8px 0 10px; font-size: 1.55rem; }
.swimo-flow-copy p { font-size: .94rem; }
.swimo-flow-card img {
  width: min(100%, 410px);
  margin: 22px auto -1px;
}

.swimo-watch-band {
  position: relative;
  margin-inline: -34px;
  padding: 44px 34px 36px;
  overflow: hidden;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(98,82,233,.22), transparent 26%),
    linear-gradient(145deg, var(--swimo-deep) 0%, #0c3e4c 60%, #0f5660 100%);
}
.swimo-watch-band::before {
  position: absolute;
  top: -140px;
  left: -100px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  content: "";
}
.swimo-watch-heading,
.swimo-watch-figure,
.swimo-watch-steps { position: relative; z-index: 1; }
.swimo-watch-heading .eyebrow { color: #88dfe2; }
.swimo-watch-heading h2 { color: #fff; }
.swimo-watch-heading .lede { color: rgba(255,255,255,.76); }
.swimo-watch-figure {
  overflow: hidden;
  margin: 28px 0 0;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 22px 54px rgba(0,0,0,.22);
}
.swimo-watch-figure img { width: 100%; height: auto; }
.swimo-watch-figure figcaption { color: #43545b; background: #f5fbfb; }
.swimo-watch-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 20px;
}
.swimo-watch-steps article {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  background: rgba(255,255,255,.07);
}
.swimo-watch-steps span { margin-bottom: 14px; background: var(--swimo-aqua); }
.swimo-watch-steps strong { display: block; margin-bottom: 6px; color: #fff; font-size: 1rem; }
.swimo-watch-steps p { margin: 0; color: rgba(255,255,255,.72); font-size: .88rem; }

.swimo-archive-section {
  padding-top: 4px;
}
.swimo-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 24px;
  margin-top: 28px;
}
.swimo-archive-card {
  padding: 22px 22px 0;
  background: #fff;
}
.swimo-archive-card img {
  width: min(100%, 390px);
  margin-inline: auto;
}
.swimo-archive-card figcaption { margin-inline: -22px; }
.swimo-archive-card figcaption strong { color: var(--swimo-deep); }

.swimo-case .decision-card b { color: #fff; background: var(--swimo-teal); }
.swimo-case .decision-card:nth-child(even) b { background: var(--swimo-lilac); }

.swimo-accessibility {
  margin-inline: -26px;
  padding: 34px 26px 36px;
  border-radius: 28px;
  background: #eef6f5;
  box-shadow: inset 0 0 0 1px rgba(16,47,62,.08);
}
.swimo-access-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-top: 24px;
}
.swimo-access-grid article {
  padding: 20px;
  border: 1px solid rgba(16,47,62,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
}
.swimo-access-grid strong { display: block; margin-bottom: 5px; color: var(--swimo-deep); }
.swimo-access-grid p { margin: 0; font-size: .9rem; }

.swimo-case .next-case {
  background:
    radial-gradient(circle at 90% 10%, rgba(98,82,233,.28), transparent 30%),
    linear-gradient(135deg, var(--swimo-deep), #174f5d);
}

@media (max-width: 1080px) {
  .swimo-case .case-layout { grid-template-columns: 200px minmax(0,1fr); gap: 40px; }
  .swimo-hero-stage { min-height: 570px; }
  .swimo-hero-phone-primary { right: 24px; width: 315px; }
  .swimo-hero-phone-secondary { right: 296px; width: 260px; }
  .swimo-hero-watch { left: 26px; width: 500px; }
  .swimo-hero-note { top: 40px; left: 36px; max-width: 300px; }
}

@media (max-width: 900px) {
  .swimo-case .case-layout { grid-template-columns: 1fr; }
  .swimo-job-grid,
  .swimo-watch-steps { grid-template-columns: 1fr; }
  .swimo-evolution-grid,
  .swimo-flow-pair { grid-template-columns: 1fr; }
  .swimo-hero-stage { min-height: 650px; }
  .swimo-hero-phone-primary { right: 28px; width: 310px; }
  .swimo-hero-phone-secondary { right: 265px; width: 250px; }
  .swimo-hero-watch { left: 24px; bottom: 28px; width: 440px; }
}

@media (max-width: 640px) {
  .swimo-section-band,
  .swimo-watch-band,
  .swimo-accessibility { margin-inline: -10px; padding: 28px 18px; border-radius: 22px; }
  .swimo-hero-stage {
    display: grid;
    min-height: 0;
    gap: 8px;
    padding: 26px 18px 0;
    border-radius: 24px;
  }
  .swimo-hero-note { position: relative; top: auto; left: auto; max-width: none; padding: 4px 2px 8px; }
  .swimo-hero-note strong { font-size: 2.25rem; }
  .swimo-hero-phone,
  .swimo-hero-watch { position: relative; right: auto; bottom: auto; left: auto; filter: drop-shadow(0 16px 18px rgba(2,18,28,.25)); }
  .swimo-hero-phone-secondary { display: none; }
  .swimo-hero-phone-primary { width: min(100%, 350px); margin-inline: auto; }
  .swimo-hero-watch { width: 100%; margin-top: -26px; }
  .swimo-flow-copy { padding-right: 44px; }
  .swimo-archive-grid,
  .swimo-access-grid { grid-template-columns: 1fr; }
  .swimo-device-card img,
  .swimo-flow-card img { width: min(100%, 360px); }
}

@media (prefers-reduced-motion: reduce) {
  .swimo-case .swimo-hero-phone,
  .swimo-case .swimo-hero-watch { transition: none !important; }
}


/* ===== September 2026 portfolio asset integration ===== */
/* Home leadership graphic supplied as a real portfolio asset. */
.home-leadership-visual { min-width: 0; }
.home-leadership-art {
  position: relative;
  margin: 0;
  overflow: visible;
}
.home-leadership-art > img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(17,17,20,.08);
  border-radius: 34px;
  background: #252831;
  box-shadow: 0 28px 70px rgba(0,0,0,.12);
}
.home-leadership-art figcaption {
  position: absolute;
  right: -20px;
  bottom: -112px;
  width: min(360px, 78%);
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 22px;
  color: #fff;
  background: rgba(45,46,54,.94);
  box-shadow: 0 22px 50px rgba(0,0,0,.17);
  backdrop-filter: blur(16px);
}
.home-leadership-art figcaption strong { display:block; margin-bottom:8px; font-size:1.05rem; }
.home-leadership-art figcaption span { display:block; color:rgba(255,255,255,.74); font-size:.88rem; line-height:1.5; }
.home-leadership-visual { margin-bottom: 76px; }

/* HELP final-screen gallery, using the real project UI screens. */
.help-case { --help-navy:#0e2a5a; --help-blue:#2f66b2; --help-yellow:#f4bf19; --help-mist:#eef4f8; }
.help-case .case-hero {
  background:
    radial-gradient(circle at 85% 16%, rgba(244,191,25,.14), transparent 24%),
    radial-gradient(circle at 8% 78%, rgba(47,102,178,.12), transparent 27%),
    linear-gradient(180deg,#fbfcfd 0%,#eef4f8 100%);
}
.help-case .case-hero h1 { color: var(--help-navy); }
.help-case .case-hero .eyebrow { color: #194b8d; }
.help-final-experience {
  margin-inline: -28px;
  padding: 42px 28px 34px;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 10%, rgba(244,191,25,.18), transparent 22%),
    linear-gradient(145deg,#0e2a5a,#153b7c 68%,#194b8d);
}
.help-final-heading { max-width: 780px; margin-bottom: 28px; }
.help-final-heading .eyebrow { color: #ffe18a; }
.help-final-heading h2 { color:#fff; }
.help-final-heading .lede { color:rgba(255,255,255,.78); }
.help-feature-frame,
.help-screen-frame {
  overflow:hidden;
  margin:0;
  border:1px solid rgba(255,255,255,.20);
  border-radius:24px;
  background:#f7fafc;
  box-shadow:0 20px 48px rgba(0,0,0,.18);
}
.help-feature-frame img { width:100%; height:auto; }
.help-feature-frame figcaption,
.help-screen-frame figcaption {
  padding:15px 18px 18px;
  color:#304052;
  background:#fff;
  font-size:.87rem;
  line-height:1.5;
}
.help-screen-frame figcaption strong { color:var(--help-navy); }
.help-screen-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
  margin-top:22px;
}
.help-screen-frame { padding:18px 18px 0; }
.help-screen-frame img {
  width:min(100%,420px);
  height:auto;
  margin-inline:auto;
  border-radius:18px;
}
.help-screen-frame figcaption { margin:0 -18px; }

/* Use all supplied archive/reference assets without overpowering the main story. */
.showboat-gallery .showboat-artifact-wide img { width:100%; height:auto; object-fit:contain; }
.swimo-archive-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
.dds-current-reference { margin-top:28px; }

@media (max-width: 900px) {
  .home-leadership-art { max-width:720px; margin-inline:auto; }
  .home-leadership-art figcaption { right:18px; bottom:-104px; }
  .swimo-archive-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 700px) {
  .home-leadership-art > img { border-radius:28px; }
  .home-leadership-art figcaption {
    position:relative;
    right:auto;
    bottom:auto;
    width:calc(100% - 24px);
    margin:-34px auto 0;
  }
  .home-leadership-visual { margin-bottom: 0; }
  .help-final-experience { margin-inline:-10px; padding:30px 18px; border-radius:24px; }
  .help-screen-grid { grid-template-columns:1fr; }
  .swimo-archive-grid { grid-template-columns:1fr; }
}
