:root {
  --color-background: #ffffff;
  --color-surface: #ffffff;
  --color-title: #1f2937;
  --color-muted: #6a7282;
  --color-accent: #4f39f6;
  --color-border: #e5e7eb;
  --color-soft: #f8fafc;
  --shadow-card: 0 16px 42px rgba(31, 41, 55, 0.07);
  --shadow-card-hover: 0 20px 52px rgba(31, 41, 55, 0.11);
  --motion-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-snappy: cubic-bezier(0.2, 0.8, 0.2, 1);
  --hero-shift: 0px;
  --hero-depth: 0px;
  --pointer-x: 50%;
  --pointer-y: 50%;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--color-background);
  color: var(--color-title);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--color-background);
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

button,
input,
select,
textarea {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--color-title);
  color: #ffffff;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 12;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  border-bottom: 1px solid rgba(229, 231, 235, 0.78);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.header-title {
  position: absolute;
  left: 50%;
  color: var(--color-title);
  font-size: 17px;
  font-weight: 840;
  letter-spacing: 0;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px) scale(0.96);
  transition:
    opacity 220ms ease,
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.header-title-visible .header-title {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  font-size: 15px;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--color-title);
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0;
}

.site-nav {
  gap: 24px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--color-accent);
}

.section-shell {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 132px 0 86px;
  background: #ffffff;
}

.hero-asset {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(1060px, 76vw);
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.38;
  pointer-events: none;
  transform: translate3d(0, calc(var(--hero-shift) * 0.22), 0) scale(1.04);
}

.hero-atmosphere {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(980px, 74vw);
  height: 100%;
  opacity: 0.95;
  pointer-events: none;
  transform: translate3d(0, calc(var(--hero-shift) * 0.42), 0);
}

.hero-atmosphere .trace {
  fill: none;
  stroke: url("#traceGradient");
  stroke-dasharray: 16 22;
  stroke-linecap: round;
  stroke-width: 2;
  animation: trace-flow 18s linear infinite;
}

.hero-atmosphere .trace-b {
  animation-duration: 24s;
  animation-direction: reverse;
}

.hero-atmosphere .trace-c {
  animation-duration: 28s;
}

.trace-nodes circle {
  fill: rgba(79, 57, 246, 0.22);
  transform-box: fill-box;
  transform-origin: center;
  animation: node-pulse 4.8s var(--motion-smooth) infinite;
}

.trace-nodes circle:nth-child(2n) {
  animation-delay: 900ms;
}

@keyframes trace-flow {
  to {
    stroke-dashoffset: -152;
  }
}

@keyframes node-pulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.88);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.18);
  }
}

.hero-section::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 42%, rgba(255, 255, 255, 0.68) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), #ffffff 96%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
  gap: 56px;
  align-items: end;
}

.eyebrow {
  margin: 0;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-copy h1,
.view-head h2,
.section-heading h2 {
  margin: 0;
  color: var(--color-title);
  font-weight: 840;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-copy h1 {
  margin-top: 18px;
  font-size: 72px;
  line-height: 0.98;
}

.hero-copy {
  transform: translate3d(0, calc(var(--hero-depth) * -0.06), 0);
}

.headline {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--color-title);
  font-size: 26px;
  font-weight: 760;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.headline span + span::before {
  content: " / ";
}

.summary,
.view-head p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.panel-heading p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.82;
  overflow-wrap: anywhere;
}

.summary {
  max-width: 780px;
  margin: 18px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--color-accent);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(79, 57, 246, 0.2);
}

.button-secondary {
  border-color: var(--color-border);
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-title);
}

.profile-card,
.metric-grid article,
.perception-grid article,
.problem-grid article,
.compact-grid article,
.story-grid article,
.timeline-body,
.contact-form {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.profile-card,
.metric-grid article,
.perception-grid article,
.problem-grid article,
.compact-grid article,
.story-grid article,
.timeline-body,
.contact-form {
  position: relative;
  overflow: hidden;
}

.profile-card::after,
.metric-grid article::after,
.perception-grid article::after,
.problem-grid article::after,
.compact-grid article::after,
.story-grid article::after {
  position: absolute;
  inset: -1px auto -1px -72%;
  width: 58%;
  content: "";
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 24%,
    rgba(255, 255, 255, 0.74) 50%,
    rgba(6, 182, 212, 0.13) 66%,
    transparent 100%
  );
  opacity: 0;
  pointer-events: none;
  transform: skewX(-18deg) translate3d(0, 0, 0);
  transition:
    opacity 260ms ease,
    transform 680ms var(--motion-smooth);
}

.profile-card:hover::after,
.profile-card:focus-within::after,
.metric-grid article:hover::after,
.metric-grid article:focus-within::after,
.perception-grid article:hover::after,
.perception-grid article:focus-within::after,
.problem-grid article:hover::after,
.problem-grid article:focus-within::after,
.compact-grid article:hover::after,
.compact-grid article:focus-within::after,
.story-grid article:hover::after,
.story-grid article:focus-within::after {
  opacity: 1;
  transform: skewX(-18deg) translate3d(260%, 0, 0);
}

.profile-card {
  padding: 28px;
}

.card-kicker {
  margin: 0;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.tag-card h2 {
  margin: 12px 0 0;
  color: var(--color-title);
  font-size: 24px;
  font-weight: 840;
  line-height: 1.2;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.tag-cloud span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(79, 57, 246, 0.18);
  border-radius: 999px;
  background: rgba(79, 57, 246, 0.05);
  color: var(--color-title);
  font-size: 13px;
  font-weight: 760;
  padding: 0 12px;
}

.card-note {
  margin: 22px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.75;
}

.overview-section {
  padding: 92px 0 104px;
  background: var(--color-soft);
}

.view-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.view-head h2 {
  margin-top: 14px;
  font-size: 42px;
  line-height: 1.16;
}

.view-head p:not(.eyebrow) {
  max-width: 710px;
  margin: 18px 0 0;
}

.view-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #ffffff;
  padding: 5px;
}

.view-switch button,
.category-tabs button {
  border: 0;
  background: transparent;
  cursor: pointer;
  letter-spacing: 0;
  text-align: left;
}

.view-switch button {
  min-width: 104px;
  border-radius: 6px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 820;
  padding: 10px 14px;
  text-align: center;
}

.view-switch button.is-active {
  background: var(--color-accent);
  color: #ffffff;
}

.view-panel {
  margin-top: 42px;
  transition:
    opacity 260ms ease,
    transform 340ms var(--motion-smooth),
    filter 340ms var(--motion-smooth);
}

.view-panel.is-transitioning,
.category-panel.is-transitioning {
  opacity: 0;
  transform: translate3d(0, 14px, 0) scale(0.992);
  filter: blur(3px);
}

.perception-map {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-card);
  padding: 30px;
}

.perception-heading {
  max-width: 760px;
}

.perception-heading h3 {
  margin: 14px 0 0;
  color: var(--color-title);
  font-size: 34px;
  font-weight: 840;
  line-height: 1.18;
}

.perception-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.75;
}

.perception-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.perception-grid article {
  min-height: 188px;
  padding: 22px;
}

.category-layout {
  margin-top: 38px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
  padding: 30px;
}

.category-layout::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  content: "";
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(79, 57, 246, 0.34) 34%,
    rgba(6, 182, 212, 0.16) 62%,
    transparent 100%
  );
  pointer-events: none;
}

.category-tabs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.category-tabs button {
  display: grid;
  gap: 6px;
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.72);
  color: var(--color-muted);
  min-height: 94px;
  padding: 18px;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.category-tabs button:hover,
.category-tabs button:focus-visible {
  border-color: rgba(79, 57, 246, 0.34);
  box-shadow: 0 14px 34px rgba(31, 41, 55, 0.08);
  transform: translateY(-2px);
}

.category-tabs button.is-active {
  border-color: transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(79, 57, 246, 0.56), rgba(6, 182, 212, 0.2)) border-box;
  box-shadow: 0 14px 34px rgba(31, 41, 55, 0.08);
  color: var(--color-title);
}

.category-tabs span {
  color: var(--color-title);
  font-size: 18px;
  font-weight: 840;
  line-height: 1.2;
}

.category-tabs small {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.category-content {
  position: relative;
  z-index: 1;
}

.category-panel {
  min-height: 0;
  transition:
    opacity 260ms ease,
    transform 340ms var(--motion-smooth),
    filter 340ms var(--motion-smooth);
}

.panel-heading {
  max-width: 760px;
}

.panel-heading h3 {
  margin: 14px 0 0;
  color: var(--color-title);
  font-size: 34px;
  font-weight: 840;
  line-height: 1.18;
}

.panel-heading p:not(.eyebrow) {
  max-width: 780px;
  margin: 16px 0 0;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.dimension-signals {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dimension-scenes {
  margin-top: 18px;
}

.dimension-entry {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
}

.dimension-entry .text-link {
  margin-top: 0;
}

.metric-grid article {
  padding: 22px;
}

.metric-grid span,
.perception-grid span,
.problem-grid span,
.story-grid span,
.timeline-date {
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 840;
  letter-spacing: 0;
  text-transform: uppercase;
}

.metric-grid strong {
  display: block;
  margin-top: 12px;
  color: var(--color-title);
  font-size: 26px;
  line-height: 1.2;
}

.perception-grid strong {
  display: block;
  margin-top: 12px;
  color: var(--color-title);
  font-size: 19px;
  line-height: 1.36;
}

.metric-grid p,
.perception-grid p,
.problem-grid p,
.compact-grid p,
.story-grid p,
.timeline-body p {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.72;
}

.compact-grid,
.problem-grid,
.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.compact-grid article,
.problem-grid article,
.story-grid article {
  padding: 24px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.metric-grid article,
.perception-grid article,
.profile-card {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.compact-grid article:hover,
.problem-grid article:hover,
.story-grid article:hover {
  --card-lift: -3px;

  box-shadow: var(--shadow-card-hover);
}

.metric-grid article:hover,
.perception-grid article:hover,
.profile-card:hover {
  --card-lift: -3px;

  box-shadow: var(--shadow-card-hover);
}

.metric-grid article.is-tilting,
.perception-grid article.is-tilting,
.problem-grid article.is-tilting,
.compact-grid article.is-tilting,
.story-grid article.is-tilting,
.profile-card.is-tilting {
  --card-lift: -3px;
  --card-tilt-x: var(--tilt-x, 0deg);
  --card-tilt-y: var(--tilt-y, 0deg);
}

.compact-grid h4,
.problem-grid h4,
.story-grid h4,
.timeline-body h4 {
  margin: 0;
  color: var(--color-title);
  font-size: 20px;
  font-weight: 820;
  line-height: 1.38;
}

.problem-grid h4 {
  margin-top: 12px;
}

.problem-grid small {
  display: block;
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.6;
}

.problem-grid a {
  color: var(--color-accent);
  font-weight: 820;
}

.story-grid h4 {
  margin-top: 12px;
}

.consulting-grid {
  margin-top: 22px;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 820;
}

.resume-panel {
  scroll-margin-top: 92px;
}

.resume-heading {
  margin-bottom: 30px;
}

.mode-note {
  display: inline-flex;
  margin: 16px 0 0;
  border: 1px solid rgba(79, 57, 246, 0.18);
  border-radius: 999px;
  background: rgba(79, 57, 246, 0.06);
  color: var(--color-accent);
  font-size: 13px !important;
  font-weight: 800;
  line-height: 1.4 !important;
  padding: 7px 11px;
}

.timeline {
  display: grid;
  gap: 20px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
}

.timeline-date {
  padding-top: 22px;
}

.timeline-body {
  padding: 24px;
}

.timeline-body ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.68;
}

.contact-section {
  padding: 104px 0;
  background: #ffffff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: 56px;
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 112px;
  max-width: 360px;
}

.section-heading h2 {
  margin-top: 14px;
  font-size: 42px;
  line-height: 1.16;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-links a,
.contact-links span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 780;
  padding: 0 12px;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  border-color: rgba(79, 57, 246, 0.32);
  color: var(--color-accent);
}

.contact-form {
  display: grid;
  width: min(100%, 560px);
  justify-self: start;
  gap: 16px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--color-title);
  font-size: 14px;
  font-weight: 780;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--color-title);
  font-size: 15px;
  line-height: 1.4;
  padding: 13px 14px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(79, 57, 246, 0.1);
}

.hidden-field,
[hidden] {
  display: none !important;
}

.js [data-reveal] {
  --reveal-y: 26px;
  --reveal-scale: 0.985;

  opacity: 0;
  filter: blur(2px);
  transform: translate3d(0, var(--reveal-y), 0) scale(var(--reveal-scale));
  transition:
    opacity 680ms ease,
    transform 760ms var(--motion-smooth),
    filter 760ms var(--motion-smooth);
}

.js [data-reveal].is-visible {
  --reveal-y: 0px;
  --reveal-scale: 1;

  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, var(--reveal-y), 0) scale(var(--reveal-scale));
}

.js [data-stagger-group].is-staggering [data-stagger-item] {
  transition-delay: calc(var(--stagger-index, 0) * 58ms);
}

.js .hero-copy[data-reveal] {
  transform: translate3d(0, calc((var(--hero-depth) * -0.06) + var(--reveal-y, 0px)), 0) scale(var(--reveal-scale, 1));
}

.metric-grid article,
.perception-grid article,
.problem-grid article,
.compact-grid article,
.story-grid article,
.profile-card,
.js .metric-grid article[data-reveal],
.js .perception-grid article[data-reveal],
.js .problem-grid article[data-reveal],
.js .compact-grid article[data-reveal],
.js .story-grid article[data-reveal],
.js .profile-card[data-reveal] {
  transform: perspective(900px) rotateX(var(--card-tilt-x, 0deg)) rotateY(var(--card-tilt-y, 0deg)) translate3d(0, calc(var(--reveal-y, 0px) + var(--card-lift, 0px)), 0) scale(var(--reveal-scale, 1));
}

.tag-card,
.js .tag-card[data-reveal] {
  transform: perspective(900px) rotateX(var(--card-tilt-x, 0deg)) rotateY(var(--card-tilt-y, 0deg)) translate3d(0, calc((var(--hero-depth) * 0.1) + var(--reveal-y, 0px) + var(--card-lift, 0px)), 0) scale(var(--reveal-scale, 1));
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal],
  .js [data-reveal].is-visible {
    opacity: 1;
    filter: none;
    transform: none !important;
  }

  .hero-atmosphere .trace,
  .trace-nodes circle {
    animation: none;
  }

  .hero-asset,
  .hero-atmosphere,
  .hero-copy,
  .tag-card,
  .metric-grid article,
  .perception-grid article,
  .problem-grid article,
  .compact-grid article,
  .story-grid article,
  .profile-card {
    transform: none !important;
  }

  .header-title {
    transition: none;
  }
}

@media (max-width: 1060px) {
  .hero-grid,
  .view-head,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .category-tabs {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .perception-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading {
    position: static;
    max-width: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: fixed;
    padding: 16px 20px;
  }

  .site-nav {
    gap: 16px;
    font-size: 13px;
  }

  .section-shell {
    width: calc(100vw - 40px);
  }

  .hero-section {
    padding: 116px 0 70px;
  }

  .hero-asset {
    width: 100%;
    height: 440px;
    opacity: 0.22;
    object-position: center top;
  }

  .hero-section::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.72), #ffffff 82%),
      linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.72) 100%);
  }

  .hero-copy h1 {
    font-size: 52px;
  }

  .headline {
    font-size: 21px;
  }

  .headline span {
    display: block;
  }

  .headline span + span::before {
    content: "";
  }

  .summary,
  .view-head p:not(.eyebrow),
  .section-heading p:not(.eyebrow),
  .panel-heading p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .profile-card,
  .metric-grid article,
  .perception-map,
  .category-layout,
  .perception-grid article,
  .problem-grid article,
  .compact-grid article,
  .story-grid article,
  .timeline-body,
  .contact-form {
    padding: 22px;
  }

  .overview-section,
  .contact-section {
    padding: 76px 0;
  }

  .view-head h2,
  .section-heading h2 {
    font-size: 34px;
  }

  .panel-heading h3 {
    font-size: 30px;
  }

  .perception-heading h3 {
    font-size: 30px;
  }

  .view-switch {
    width: 100%;
  }

  .perception-grid,
  .category-tabs,
  .metric-grid,
  .dimension-signals,
  .dimension-scenes,
  .problem-grid,
  .compact-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .category-panel {
    min-height: auto;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .timeline-date {
    padding-top: 0;
  }
}
