:root {
  --ink: #16211f;
  --muted: #5e6a66;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --line: #d9ded9;
  --teal: #0d766e;
  --coral: #c95540;
  --gold: #c49a42;
  --blue: #315f8f;
  --shadow: 0 18px 46px rgba(19, 32, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

.site-header {
  align-items: center;
  background: rgba(251, 250, 247, 0.86);
  border-bottom: 1px solid rgba(217, 222, 217, 0.8);
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: 68px;
  padding: 14px clamp(20px, 5vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  backdrop-filter: blur(16px);
  z-index: 10;
}

.brand,
nav,
.hero-actions,
.contact-actions,
.resume-heading {
  align-items: center;
  display: flex;
}

.mobile-menu-toggle {
  align-items: center;
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: none;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.mobile-menu-toggle svg {
  height: 21px;
  width: 21px;
}

.mobile-menu-toggle path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.2;
}

.brand {
  font-weight: 800;
  gap: 10px;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: white;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

nav {
  color: var(--muted);
  font-size: 0.94rem;
  gap: clamp(16px, 3vw, 32px);
}

nav a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  gap: clamp(24px, 5vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  min-height: 86vh;
  overflow: hidden;
  padding: 124px clamp(20px, 6vw, 86px) 44px;
  place-items: center;
  position: relative;
}

.hero-image,
.hero-shade {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.88) 38%, rgba(251, 250, 247, 0.18) 72%),
    linear-gradient(0deg, rgba(251, 250, 247, 0.92) 0%, rgba(251, 250, 247, 0) 26%);
}

.hero-content {
  max-width: 720px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.headshot-card {
  align-self: end;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
  cursor: pointer;
  margin: 0;
  overflow: hidden;
  position: relative;
  width: min(100%, 310px);
  z-index: 1;
}

.headshot-card:focus-visible {
  outline: 3px solid rgba(13, 118, 110, 0.45);
  outline-offset: 4px;
}

.headshot-card img {
  aspect-ratio: 1 / 1;
  display: block;
  height: auto;
  object-fit: cover;
  object-position: 50% 18%;
  transition: filter 120ms ease;
  width: 100%;
}

.headshot-card.is-winking img {
  filter: saturate(1.06) brightness(1.03);
}

.headshot-card figcaption {
  display: grid;
  gap: 2px;
  padding: 16px 18px;
}

.headshot-card strong {
  font-size: 1.02rem;
}

.headshot-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.eyebrow,
.section-kicker {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 5.3vw, 4.9rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 24px;
  max-width: 880px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 22px;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-copy {
  color: #34413d;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 650px;
}

.hero-actions,
.contact-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  gap: 9px;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.button.primary {
  background: var(--ink);
  color: white;
}

.button.secondary,
.button.print {
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
}

.button svg,
.icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button svg {
  height: 18px;
  width: 18px;
}

.proof-band {
  background: var(--ink);
  color: white;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.proof-band div {
  background: rgba(255, 255, 255, 0.045);
  min-height: 188px;
  padding: 28px clamp(20px, 4vw, 54px);
}

.proof-band strong,
.proof-band span {
  display: block;
}

.proof-band strong {
  color: #f8d88b;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.proof-band span {
  color: rgba(255, 255, 255, 0.78);
  max-width: 370px;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 6vw, 86px);
}

.muted {
  background: #edf3f1;
}

.split {
  display: grid;
  gap: clamp(28px, 7vw, 96px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.argument {
  color: #34413d;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.clients-section {
  background: #edf3f1;
  overflow: hidden;
}

.clients-heading {
  align-items: end;
  display: grid;
  gap: 24px;
  margin-bottom: 28px;
}

.logo-strip {
  display: flex;
  margin-left: calc(clamp(20px, 6vw, 86px) * -1);
  margin-right: calc(clamp(20px, 6vw, 86px) * -1);
  overflow: hidden;
  padding: 4px 0 16px;
  position: relative;
}

.logo-strip::before,
.logo-strip::after {
  content: "";
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: clamp(42px, 10vw, 130px);
  z-index: 1;
}

.logo-strip::before {
  background: linear-gradient(90deg, #edf3f1, rgba(237, 243, 241, 0));
  left: 0;
}

.logo-strip::after {
  background: linear-gradient(270deg, #edf3f1, rgba(237, 243, 241, 0));
  right: 0;
}

.logo-track {
  animation: logoMarquee 42s linear infinite;
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
  padding-left: 12px;
}

.logo-strip:hover .logo-track {
  animation-play-state: paused;
}

.brand-logo {
  align-items: center;
  background: white;
  border: 1px solid #c7dfd8;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(22, 33, 31, 0.06);
  display: inline-flex;
  flex: 0 0 auto;
  justify-content: center;
  min-height: 86px;
  min-width: clamp(150px, 18vw, 230px);
  padding: 14px 22px;
}

.brand-logo img {
  display: block;
  max-height: 54px;
  max-width: 170px;
  object-fit: contain;
  width: auto;
}

.brand-logo img[alt="Microsoft"],
.brand-logo img[src$="microsoft.png"] {
  max-height: 70px;
  max-width: 190px;
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.customer-success-section {
  background: #f7f8f3;
}

.customer-success-layout {
  display: grid;
  gap: clamp(28px, 6vw, 74px);
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.customer-success-lede {
  color: #34413d;
  font-size: clamp(1.08rem, 1.8vw, 1.24rem);
  max-width: 650px;
}

.customer-success-points {
  display: grid;
  gap: 14px;
}

.customer-success-points article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(22, 33, 31, 0.06);
  display: grid;
  gap: 8px;
  grid-template-columns: 44px minmax(0, 1fr);
  padding: 22px;
}

.customer-success-points article span {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: white;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.customer-success-points h3,
.customer-success-points p {
  grid-column: 2;
}

.customer-success-points p {
  color: var(--muted);
  margin-bottom: 0;
}

.endorsements {
  background: #f4eee5;
  overflow: hidden;
}

.endorsement-heading {
  align-items: end;
  display: grid;
  gap: 24px;
  margin-bottom: 28px;
}

.quote-grid {
  display: flex;
  gap: 14px;
  margin-left: calc(clamp(20px, 6vw, 86px) * -1);
  margin-right: calc(clamp(20px, 6vw, 86px) * -1);
  overflow-x: auto;
  padding: 4px clamp(20px, 6vw, 86px) 20px;
  scroll-snap-type: x proximity;
  scrollbar-color: #d9cbbb transparent;
}

.quote-card {
  background: var(--panel);
  border: 1px solid #e3d8c9;
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  flex: 0 0 clamp(300px, 32vw, 410px);
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  min-height: 330px;
  padding: clamp(20px, 3vw, 28px);
  scroll-snap-align: start;
}

.featured-quote {
  flex-basis: clamp(300px, 32vw, 410px);
}

.compact-quote {
  box-shadow: 0 8px 30px rgba(22, 33, 31, 0.08);
  flex-basis: clamp(300px, 32vw, 410px);
}

.quote-card blockquote {
  color: #26322f;
  font-size: clamp(0.94rem, 1.16vw, 1.05rem);
  line-height: 1.48;
  margin: 0;
}

.featured-quote blockquote {
  font-size: clamp(0.86rem, 1vw, 0.98rem);
}

.quote-card figcaption {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 3px;
  margin-top: 22px;
  padding-top: 14px;
}

.quote-card figcaption strong {
  font-size: 1rem;
}

.quote-card figcaption span {
  color: var(--muted);
}

.strength-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.strength-grid article,
.resume-aside,
.role {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(22, 33, 31, 0.06);
}

.strength-grid article {
  min-height: 230px;
  padding: 26px;
}

.icon {
  align-items: center;
  background: #e7f2ef;
  border: 1px solid #c7dfd8;
  border-radius: 50%;
  color: var(--teal);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  margin-bottom: 22px;
  width: 42px;
}

.icon svg {
  height: 22px;
  width: 22px;
}

.impact-visual-section {
  background: #fbfaf7;
}

.impact-heading {
  margin-bottom: 26px;
}

.impact-visual-frame {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.impact-visual-frame img {
  display: block;
  height: auto;
  width: 100%;
}

.strength-grid p,
.role p,
.resume-note,
.resume-aside li,
.contact p {
  color: var(--muted);
}

.resume-heading {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.resume-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 1fr);
}

.resume-aside,
.role {
  padding: 24px;
}

.resume-aside ul,
.role ul {
  margin: 0 0 28px;
  padding-left: 20px;
}

.resume-aside h3:not(:first-child) {
  margin-top: 28px;
}

.resume-note {
  margin-bottom: 28px;
}

.resume-version {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 4px;
  margin-bottom: 10px;
  padding: 13px 14px;
}

.resume-version span {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.resume-version strong {
  font-size: 0.95rem;
}

.active-version {
  background: #e7f2ef;
  border-color: #b9d8d0;
}

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

.role-meta {
  color: var(--blue);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 10px;
}

.role li {
  margin-bottom: 8px;
}

.faq-section {
  background: #fbfaf7;
}

.faq-heading {
  margin-bottom: 24px;
}

.faq-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-list article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(22, 33, 31, 0.06);
  padding: 24px;
}

.faq-list p {
  color: var(--muted);
  margin-bottom: 0;
}

.contact {
  align-items: center;
  background: #f4eee5;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.contact h2 {
  max-width: 820px;
}

.contact p {
  font-size: 1.08rem;
  max-width: 640px;
}

footer {
  align-items: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
  display: flex;
  justify-content: space-between;
  min-height: 84px;
  padding: 24px clamp(20px, 6vw, 86px);
}

footer span:first-child {
  color: white;
  font-weight: 800;
}

.landing-body,
.utility-body,
.fun-body {
  min-height: 100vh;
}

.landing-body {
  background:
    radial-gradient(circle at 15% 20%, rgba(196, 154, 66, 0.18), transparent 28%),
    radial-gradient(circle at 80% 12%, rgba(13, 118, 110, 0.16), transparent 25%),
    #fbfaf7;
}

.landing-shell,
.utility-shell,
.fun-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(28px, 6vw, 72px);
}

.landing-hero {
  align-items: center;
  display: grid;
  gap: clamp(28px, 6vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(220px, 310px);
  min-height: 46vh;
}

.landing-copy h1,
.form-intro h1,
.fun-copy h1 {
  max-width: 820px;
}

.landing-copy p,
.form-intro p,
.fun-copy p {
  color: #34413d;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  max-width: 710px;
}

.landing-portrait {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  cursor: pointer;
  margin: 0;
  overflow: hidden;
}

.landing-portrait:focus-visible {
  outline: 3px solid rgba(13, 118, 110, 0.45);
  outline-offset: 4px;
}

.landing-portrait img {
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  object-position: 50% 18%;
  transition: filter 120ms ease;
  width: 100%;
}

.landing-portrait.is-winking img {
  filter: saturate(1.06) brightness(1.03);
}

.landing-portrait figcaption {
  color: var(--muted);
  font-size: 0.94rem;
  padding: 14px 16px;
}

.choice-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.choice-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(22, 33, 31, 0.07);
  align-content: start;
  display: grid;
  gap: 14px;
  min-height: 280px;
  padding: 28px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.choice-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.choice-card strong {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1;
}

.choice-card span:last-child {
  color: var(--muted);
  font-size: 1.02rem;
}

.recruiter-choice {
  background: var(--ink);
  color: white;
}

.recruiter-choice span:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.fun-choice {
  background: #f4eee5;
}

.choice-icon {
  align-items: center;
  background: rgba(13, 118, 110, 0.1);
  border: 1px solid rgba(13, 118, 110, 0.2);
  border-radius: 50%;
  color: var(--teal);
  display: inline-flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.recruiter-choice .choice-icon {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: white;
}

.choice-icon svg {
  fill: none;
  height: 24px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 24px;
}

.simple-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
}

.endorsement-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  margin-top: 28px;
  max-width: 780px;
  padding: clamp(22px, 5vw, 42px);
}

.endorsement-form label {
  color: var(--ink);
  display: grid;
  font-weight: 800;
  gap: 8px;
}

.endorsement-form input,
.endorsement-form textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  padding: 13px 14px;
  resize: vertical;
}

.endorsement-form input:focus,
.endorsement-form textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(13, 118, 110, 0.14);
}

.hidden-field {
  display: none;
}

.form-status {
  color: var(--muted);
  font-weight: 800;
  margin: 0;
}

.form-status.is-success {
  color: var(--teal);
}

.form-status.is-error {
  color: #a33b2b;
}

.endorsement-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.fun-body {
  background: #f4eee5;
}

.fun-shell {
  align-items: start;
  display: grid;
  gap: clamp(28px, 6vw, 74px);
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 420px);
}

.game-panel {
  background: white;
  border: 1px solid #e3d8c9;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.game-topline {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

#snakeCanvas {
  background: #16211f;
  border-radius: 8px;
  display: block;
  max-width: 100%;
  width: 100%;
}

.game-note {
  color: var(--muted);
  margin: 14px 0;
}

.direction-pad {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(48px, 64px));
  justify-content: center;
}

.direction-pad button {
  background: #edf3f1;
  border: 1px solid #c7dfd8;
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 1.25rem;
  font-weight: 800;
  min-height: 48px;
}

.direction-pad button:hover {
  background: #dfeee9;
}

.direction-pad .dir-up {
  grid-column: 2;
  grid-row: 1;
}

.direction-pad .dir-left {
  grid-column: 1;
  grid-row: 2;
}

.direction-pad .dir-right {
  grid-column: 3;
  grid-row: 2;
}

.direction-pad .dir-down {
  grid-column: 2;
  grid-row: 3;
}

.leaderboard-panel {
  background: white;
  border: 1px solid #e3d8c9;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(22, 33, 31, 0.08);
  display: grid;
  gap: 10px;
  grid-column: 1 / -1;
  margin-top: 6px;
  padding: clamp(14px, 2.4vw, 22px);
}

.leaderboard-panel h2 {
  font-size: clamp(1.12rem, 1.8vw, 1.55rem);
  margin-bottom: 0;
}

.leaderboard-note {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  margin: 2px 0 0;
}

.latest-score {
  align-items: end;
  background: #f7f8f3;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  font-size: 0.78rem;
  gap: 8px;
  grid-template-columns: minmax(150px, 1fr) minmax(160px, 1fr) minmax(160px, 1fr) auto;
  padding: 9px;
}

.latest-score label {
  color: var(--ink);
  display: grid;
  font-size: 0.72rem;
  font-weight: 800;
  gap: 6px;
}

.latest-score input {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  min-height: 32px;
  padding: 6px 8px;
}

.leaderboard-error {
  color: #a33b2b;
  display: none;
  font-size: 0.72rem;
  font-weight: 900;
  grid-column: 1 / -1;
  margin: 0;
}

.leaderboard-error.is-visible {
  display: block;
}

.leaderboard-list {
  display: grid;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.leaderboard-list li {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  font-size: 0.78rem;
  gap: 6px;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  padding: 7px 9px;
}

.leaderboard-list .rank {
  align-items: center;
  background: #edf3f1;
  border-radius: 50%;
  color: var(--teal);
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 900;
  height: 22px;
  justify-content: center;
  width: 22px;
}

.leaderboard-list strong {
  display: block;
}

.leaderboard-list span {
  color: var(--muted);
}

.leaderboard-list .score-value {
  color: var(--ink);
  font-weight: 900;
}

.leaderboard-list .empty-score {
  color: var(--muted);
  display: block;
}

@media (max-width: 860px) {
  .site-header {
    gap: 12px;
    justify-content: flex-start;
    position: absolute;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .site-header .brand-mark {
    display: none;
  }

  .site-header .brand {
    font-size: 0.98rem;
  }

  nav {
    align-items: stretch;
    background: rgba(251, 250, 247, 0.98);
    border: 1px solid rgba(217, 222, 217, 0.92);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 0;
    left: clamp(20px, 5vw, 72px);
    min-width: 210px;
    padding: 8px;
    position: absolute;
    top: calc(100% + 8px);
  }

  nav.is-open {
    display: flex;
  }

  nav a {
    border-radius: 6px;
    color: var(--ink);
    padding: 10px 12px;
  }

  nav a:hover {
    background: #edf3f1;
  }

  .hero {
    gap: 18px;
    grid-template-columns: 1fr;
    min-height: 0;
    padding-bottom: 28px;
    padding-top: 92px;
  }

  .headshot-card {
    align-self: start;
    justify-self: start;
    width: min(100%, 168px);
  }

  .headshot-card figcaption {
    padding: 10px 12px;
  }

  .headshot-card strong,
  .headshot-card span {
    font-size: 0.86rem;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.82) 68%, rgba(251, 250, 247, 0.42) 100%),
      linear-gradient(0deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0) 35%);
  }

  .proof-band,
  .split,
  .customer-success-layout,
  .clients-heading,
  .endorsement-heading,
  .strength-grid,
  .resume-layout,
  .faq-list,
  .contact {
    grid-template-columns: 1fr;
  }

  .proof-band div {
    min-height: 118px;
  }

  .resume-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    margin-top: 0;
  }

  .customer-success-points article {
    grid-template-columns: 1fr;
  }

  .customer-success-points h3,
  .customer-success-points p {
    grid-column: auto;
  }

  .landing-hero,
  .choice-grid,
  .fun-shell {
    grid-template-columns: 1fr;
  }

  .latest-score {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .landing-portrait {
    max-width: 220px;
  }

  .choice-card {
    min-height: 210px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 2.42rem;
    line-height: 1;
    margin-bottom: 18px;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .section,
  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .landing-shell,
  .utility-shell,
  .fun-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .simple-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .simple-header .button {
    width: auto;
  }

  .leaderboard-list li {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .leaderboard-list .score-value {
    grid-column: 2;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media print {
  .site-header,
  .hero,
  .proof-band,
  .muted,
  .contact,
  footer,
  .print {
    display: none;
  }

  body {
    background: white;
  }

  .section {
    padding: 0;
  }

  .resume-layout {
    grid-template-columns: 1fr;
  }

  .resume-aside,
  .role {
    box-shadow: none;
  }
}
