:root {
  --bg: #f8fafc;
  --bg-section: #f3f8fe;
  --bg-section-strong: #eaf2ff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-border: #d7e3f4;
  --text: #0f172a;
  --muted: #475569;
  --accent: #0a66c2;
  --accent-strong: #1d4ed8;
  --accent-soft: rgba(10, 102, 194, 0.09);
  --accent-border: rgba(10, 102, 194, 0.18);
  --shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 24px 48px rgba(15, 23, 42, 0.1);
  --max-width: 1240px;
  --header-height: 96px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --sans: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(10, 102, 194, 0.28);
  outline-offset: 3px;
}

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

.site-shell {
  min-height: 100vh;
  position: relative;
  overflow: visible;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: #0a3d91;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: #0a3d91;
  border-bottom-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  min-height: var(--header-height);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.nav-toggle:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 3px;
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle-bar + .nav-toggle-bar {
  margin-top: 4px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.3rem 0;
}

.brand-mark {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  opacity: 1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.42rem;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 0.35rem 0.4rem 0.35rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.45rem;
  height: 2px;
  border-radius: 999px;
  background: #93c5fd;
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 220ms ease, transform 220ms ease;
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.social-row {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding-left: 0.15rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.social-link:hover {
  transform: translateY(-1px);
  color: #ffffff;
  background: #0b4da2;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

main {
  padding: calc(var(--header-height) + 1.5rem) 0 5rem;
}

.hero {
  text-align: center;
  padding: 4.25rem 0 3.5rem;
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid var(--surface-border);
}

.eyebrow {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent-border);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 1.25rem auto 1rem;
  max-width: 12ch;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.9rem);
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  max-width: 10ch;
}

.hero .lede,
.page-hero .lede {
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  line-height: 1.72;
  color: var(--muted);
}

.hero-actions,
.button-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button {
  background: var(--accent);
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 14px 28px rgba(10, 102, 194, 0.2);
}

.button:hover {
  transform: translateY(-2px);
  background: var(--accent-strong);
  box-shadow: 0 18px 34px rgba(29, 78, 216, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  border: 1px solid rgba(10, 102, 194, 0.16);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.button-secondary:hover {
  background: rgba(243, 248, 254, 0.88);
  border-color: rgba(10, 102, 194, 0.32);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(10, 102, 194, 0.1);
}

.hero-panel,
.panel {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel {
  margin-top: 3rem;
  padding: 1rem;
  background: var(--bg-section-strong);
  border-color: #dbe7f5;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.metric {
  padding: 1.35rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--surface-border);
  text-align: left;
}

.metric-icon,
.stage-icon,
.meta-icon,
.kicker-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.metric-icon svg,
.stage-icon svg,
.meta-icon svg,
.kicker-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.metric-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 0.85rem;
  border-radius: 10px;
  background: rgba(10, 102, 194, 0.08);
  border: 1px solid rgba(10, 102, 194, 0.12);
}

.metric strong {
  display: block;
  font-size: 1.7rem;
  font-family: var(--serif);
}

.metric span {
  display: block;
  color: var(--muted);
  margin-top: 0.3rem;
}

.section {
  padding: 3.5rem 0;
  border-top: 1px solid var(--surface-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.section-tint {
  background: var(--bg-section-strong);
}

.section-white {
  background: #ffffff;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.9fr);
  align-items: end;
  column-gap: 2.4rem;
  row-gap: 1rem;
  margin-bottom: 2.2rem;
}

.section-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 15ch;
}

.section-header p,
.section-intro {
  margin: 0;
  max-width: 660px;
  color: var(--muted);
  line-height: 1.7;
  justify-self: start;
}

.section-header > div {
  max-width: 860px;
}

.grid-3,
.grid-2,
.article-list,
.talk-list,
.contact-grid {
  display: grid;
  gap: 1.35rem;
}

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

.grid-2,
.article-list,
.talk-list,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.article-card,
.talk-card,
.contact-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  border: 1px solid var(--surface-border);
  border-top: 3px solid rgba(10, 102, 194, 0.14);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover,
.article-card:hover,
.talk-card:hover,
.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 102, 194, 0.18);
  box-shadow: 0 22px 42px rgba(10, 102, 194, 0.1);
}

.card h3,
.article-card h3,
.talk-card h3,
.contact-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.25rem;
}

.card p,
.article-card p,
.talk-card p,
.contact-card p,
.list-copy {
  margin: 0;
  color: var(--muted);
}

.article-card.featured,
.talk-card.featured,
.about-snapshot {
  background: var(--surface-strong);
  border-color: rgba(10, 102, 194, 0.16);
  border-top-color: rgba(10, 102, 194, 0.32);
}

.about-container {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

.about-photo img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.meta {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 0.9rem;
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meta-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.list li {
  padding: 0.65rem 0;
  border-top: 1px solid var(--surface-border);
}

.list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.pull-quote {
  padding: 2rem;
  border: 1px solid var(--surface-border);
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.2;
  box-shadow: var(--shadow);
}

.signature-model {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.signature-stage {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-top: 3px solid rgba(10, 102, 194, 0.28);
  box-shadow: var(--shadow);
  text-align: center;
  gap: 0.8rem;
}

.signature-label {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.15;
  color: var(--text);
}

.stage-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(10, 102, 194, 0.08);
  border: 1px solid rgba(10, 102, 194, 0.12);
}

.signature-connector {
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.signature-copy {
  max-width: 760px;
  margin: 1.5rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.proof-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

.proof-card {
  padding: 1.75rem;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-top: 3px solid rgba(10, 102, 194, 0.28);
  box-shadow: var(--shadow);
}

.proof-card h3 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.proof-card p {
  margin: 0;
  max-width: 860px;
  color: var(--muted);
  line-height: 1.72;
}

.chart-placeholder {
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-border);
  background: #ffffff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0;
}

.chart-placeholder-inner {
  width: 100%;
  padding: 1.25rem 1.5rem 1.5rem;
  text-align: left;
  border-top: 1px solid var(--surface-border);
  background: #ffffff;
}

.chart-placeholder img {
  width: 100%;
  height: auto;
  display: block;
}

.chart-placeholder h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
}

.chart-placeholder p {
  margin: 0;
  color: var(--muted);
}

.proof-actions {
  justify-content: flex-start;
  margin-top: 1.5rem;
}

.talk-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.talk-proof-card {
  text-align: center;
}

.talk-badge {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0 1.25rem;
}

.talk-badge img {
  width: min(100%, 260px);
  height: auto;
  display: block;
}

.talk-proof-copy h3 {
  margin: 0 0 0.45rem;
}

.talk-proof-copy p {
  margin: 0;
  color: var(--muted);
}

.talk-session-label {
  margin-top: 1rem;
  color: var(--accent);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.talk-session-title {
  margin-top: 0.35rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.5;
}

.talk-proof-card .button-row {
  margin-top: 1.2rem;
}

.featured-talk-card {
  display: grid;
  gap: 1.5rem;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-top: 3px solid rgba(10, 102, 194, 0.28);
  box-shadow: var(--shadow);
}

.featured-talk-copy h2 {
  margin: 0 0 0.9rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

.featured-talk-copy p:last-child {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow);
  background: #0f172a;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.speaking-teaser {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 1.35rem;
}

.speaking-teaser-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--surface-border);
  background: var(--bg-section);
}

.speaking-teaser-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.speaking-teaser-copy h3 {
  margin: 0 0 0.65rem;
}

.speaking-teaser-copy p {
  margin: 0;
  color: var(--muted);
}

.speaking-teaser .button-row {
  justify-content: flex-start;
  margin-top: 1rem;
}

.page-hero {
  padding: 3.75rem 0 2.9rem;
  background: #ffffff;
  border-bottom: 1px solid var(--surface-border);
}

.page-hero .content-stack {
  max-width: 1100px;
}

.page-hero h1,
.page-hero .lede {
  margin-left: 0;
  margin-right: 0;
}

.page-hero h1 {
  max-width: 14ch;
}

.page-hero .lede {
  max-width: 900px;
}

.content-stack {
  display: grid;
  gap: 1.2rem;
}

.site-footer {
  padding: 2rem 0 3rem;
  color: var(--muted);
  background: #f8fafc;
  border-top: 1px solid var(--surface-border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid var(--surface-border);
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 620ms ease, transform 620ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal[data-delay="1"] {
  transition-delay: 80ms;
}

.reveal[data-delay="2"] {
  transition-delay: 150ms;
}

.reveal[data-delay="3"] {
  transition-delay: 220ms;
}

.kicker {
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.84rem;
}

.kicker-icon {
  width: 16px;
  height: 16px;
  margin-right: 0.45rem;
  vertical-align: -2px;
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .button-secondary,
  .card,
  .article-card,
  .talk-card,
  .contact-card,
  .social-link,
  .nav a {
    transition: none;
  }
}

@media (max-width: 960px) {
  .section-header {
    grid-template-columns: 1fr;
  }

  .talk-proof-grid,
  .signature-model {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .speaking-teaser {
    grid-template-columns: 1fr;
  }

  .signature-connector {
    justify-self: center;
    transform: rotate(90deg);
  }

  .metrics,
  .grid-3,
  .grid-2,
  .article-list,
  .talk-list,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 800px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-width: 200px;
  }
}

@media (max-width: 860px) {
  .site-header .container {
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    flex: 0 0 auto;
  }

  .nav-group {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    left: 0;
    display: grid;
    gap: 0.9rem;
    align-items: stretch;
    justify-content: stretch;
    padding: 1rem;
    border-radius: 22px;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(10, 61, 145, 0.98);
    box-shadow: 0 16px 30px rgba(4, 16, 43, 0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .site-header.menu-open .nav-group {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header.menu-open .nav-toggle {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
  }

  .site-header.menu-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.menu-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav {
    display: grid;
    gap: 0.35rem;
    justify-content: stretch;
  }

  .nav a {
    width: 100%;
    padding: 0.85rem 0.95rem;
  }

  .social-row {
    justify-content: flex-start;
    padding-left: 0;
    padding-top: 0.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 0.1rem;
    padding-top: 0.9rem;
  }
}

@media (max-width: 720px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    text-align: left;
    padding-top: 2rem;
  }

  .hero .lede,
  .page-hero .lede,
  .hero h1,
  .page-hero h1 {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }

  .hero-actions,
  .button-row {
    justify-content: flex-start;
  }

  .signature-copy {
    margin-left: 0;
  }

  .metrics,
  .grid-3,
  .grid-2,
  .article-list,
  .talk-list,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
