:root {
  color-scheme: light;
  --ink: #111318;
  --ink-soft: #2d333a;
  --muted: #66717c;
  --paper: #f7f8f5;
  --paper-strong: #ffffff;
  --mist: #e8efec;
  --ice: #edf3f8;
  --night: #0b0d12;
  --night-soft: #12161d;
  --line: rgba(17, 19, 24, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --blue: #3157d5;
  --green: #087b61;
  --coral: #d95f52;
  --gold: #a8792d;
  --shadow: 0 18px 50px rgba(17, 19, 24, 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;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: rgba(8, 123, 97, 0.22);
}

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

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

p {
  color: var(--muted);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.92);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(17, 19, 24, 0.09);
  background: rgba(247, 248, 245, 0.86);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.95rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  font-size: 0.68rem;
  opacity: 0.62;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  content: "";
  width: 15px;
  height: 22px;
  border: 1px solid currentColor;
  background: linear-gradient(145deg, rgba(49, 87, 213, 0.34), rgba(8, 123, 97, 0.18));
  opacity: 0.8;
  transform: rotate(45deg) skew(-8deg, -8deg);
}

.brand-mark::before {
  top: 1px;
}

.brand-mark::after {
  bottom: 1px;
  opacity: 0.34;
  transform: rotate(45deg) skew(-8deg, -8deg) scaleY(0.75);
}

.brand-mark span {
  display: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 30px);
  width: 100%;
  color: currentColor;
  font-size: 0.9rem;
  opacity: 0.78;
  white-space: nowrap;
}

.main-nav a,
.nav-cta,
.button,
.sources-grid a,
.evidence-grid a,
.dossier-grid a {
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease,
    opacity 160ms ease;
}

.main-nav a:hover {
  opacity: 1;
}

.main-nav a[aria-current="true"] {
  opacity: 1;
}

.main-nav a[aria-current="true"]::after {
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 5px;
  background: var(--green);
  content: "";
}

.nav-cta {
  min-width: max-content;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 0.82rem;
  opacity: 0.86;
}

.language-switcher {
  display: inline-flex;
  min-width: max-content;
  overflow: hidden;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  opacity: 0.9;
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 34px;
  padding: 8px 10px;
  color: currentColor;
}

.language-switcher a + a {
  border-left: 1px solid currentColor;
}

.language-switcher a[aria-current="true"] {
  background: #ffffff;
  color: var(--ink);
}

.site-header.is-scrolled .language-switcher a[aria-current="true"] {
  background: var(--ink);
  color: #ffffff;
}

.language-switcher a:not([aria-current="true"]):hover {
  background: rgba(255, 255, 255, 0.1);
}

.site-header.is-scrolled .language-switcher a:not([aria-current="true"]):hover {
  background: rgba(17, 19, 24, 0.06);
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.site-header.is-scrolled .nav-cta:hover {
  background: rgba(17, 19, 24, 0.06);
}

.hero {
  position: relative;
  display: flex;
  min-height: 88svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background-image: url("assets/hero-ethereum-italia.png");
  background-position: center;
  background-size: cover;
  filter: saturate(0.86) contrast(1.04);
  transform: scale(1.01);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 8, 12, 0.92) 0%, rgba(6, 8, 12, 0.76) 42%, rgba(6, 8, 12, 0.2) 100%),
    linear-gradient(0deg, rgba(11, 13, 18, 1) 0%, rgba(11, 13, 18, 0) 26%);
}

.hero-content {
  width: min(100%, 1040px);
  margin: auto 0 0;
  padding: 116px clamp(20px, 5vw, 72px) 38px;
}

.eyebrow,
.section-kicker,
.panel-label {
  margin-bottom: 15px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

h1,
h2,
.role-copy h3 {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-weight: 520;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 7rem;
  line-height: 0.9;
}

.hero-lede {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.32rem;
  line-height: 1.42;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 17px;
  font-weight: 820;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  border-color: rgba(255, 255, 255, 0.92);
  background: #ffffff;
  color: var(--ink);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.button.tertiary {
  border-color: rgba(168, 121, 45, 0.3);
  background: rgba(168, 121, 45, 0.08);
  color: var(--ink);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 920px);
  margin: 42px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stats div {
  min-height: 94px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  padding: 18px 18px 18px 0;
}

.hero-stats div + div {
  padding-left: 18px;
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats dt {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.65rem;
  font-weight: 850;
  line-height: 1;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

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

section:not(.hero) {
  padding: clamp(74px, 9vw, 124px) 0;
}

.intro-band {
  background: var(--paper);
}

.intro-grid,
.archive-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 4.35rem;
  line-height: 1;
}

.intro-copy {
  display: grid;
  gap: 20px;
}

.intro-copy p,
.whitepaper-lead p,
.ai-answer p,
.role-copy > p,
.press-copy > p,
.archive-copy p,
.source-note {
  color: var(--muted);
  font-size: 1.15rem;
}

.whitepaper-section {
  background: var(--ice);
  color: var(--ink);
}

.whitepaper-section p {
  color: #53606b;
}

.whitepaper-section .section-kicker,
.faq-section .section-kicker,
.role-copy .section-kicker {
  color: var(--coral);
}

.whitepaper-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.whitepaper-lead {
  max-width: 620px;
}

.evidence-grid {
  display: grid;
  gap: 12px;
}

.evidence-grid article,
.principles article,
.work-grid article,
.dossier-grid article,
.press-points article,
.podcast-grid article,
.sources-grid a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

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

.evidence-grid span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--coral);
  font-weight: 900;
}

.evidence-grid h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.35rem;
}

.evidence-grid p {
  margin-bottom: 16px;
  font-size: 0.96rem;
}

.evidence-grid a {
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 850;
}

.ai-summary-section {
  background: var(--night-soft);
  color: #ffffff;
}

.ai-summary-section h2 {
  color: #ffffff;
}

.ai-summary-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.ai-answer {
  border-left: 2px solid var(--green);
  padding-left: clamp(18px, 3vw, 32px);
}

.ai-answer p {
  max-width: 840px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.ai-answer p:first-child {
  color: rgba(255, 255, 255, 0.92);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: 1.75rem;
  line-height: 1.24;
}

.ai-answer p:last-child {
  margin-bottom: 0;
}

.role-section {
  background: var(--paper-strong);
  color: var(--ink);
}

.role-section p {
  color: var(--muted);
}

.role-layout {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
}

.identity-panel {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.identity-panel .panel-label {
  color: var(--green);
}

.identity-panel h2 {
  margin-bottom: 10px;
  font-size: 3.1rem;
}

.handle {
  margin-bottom: 14px;
}

.handle a {
  color: var(--blue);
  font-weight: 850;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.contact-links a {
  border: 1px solid rgba(49, 87, 213, 0.2);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 820;
}

.contact-links a:hover {
  border-color: rgba(8, 123, 97, 0.42);
  color: var(--green);
}

.identity-lines {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.identity-lines span {
  display: block;
  border-left: 2px solid var(--green);
  padding: 8px 0 8px 12px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.role-copy h3 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 3.8rem;
  line-height: 1;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.principles article,
.work-grid article {
  padding: 22px;
}

.principles article {
  background: var(--paper);
}

.number {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--green);
  font-weight: 900;
}

.principles h4,
.work-grid h3,
.timeline h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.principles p,
.work-grid p,
.timeline p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.dossier-section {
  background: #ffffff;
}

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

.dossier-grid article {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 22px;
  background: var(--paper);
}

.dossier-grid article:nth-child(2n) {
  background: #ffffff;
}

.dossier-grid article:nth-child(3n) {
  border-color: rgba(8, 123, 97, 0.3);
}

.dossier-grid article:nth-child(4n) {
  border-color: rgba(49, 87, 213, 0.28);
}

.dossier-grid time {
  display: block;
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dossier-grid h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.34rem;
  line-height: 1.12;
}

.dossier-grid p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.dossier-grid a {
  margin-top: auto;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 850;
}

.dossier-grid a:hover {
  color: var(--green);
}

.press-section {
  background: var(--paper);
}

.press-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.press-copy {
  display: grid;
  justify-items: start;
  gap: 24px;
}

.press-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.press-points article {
  min-height: 190px;
  border-top: 3px solid var(--coral);
  padding: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.press-points article:nth-child(2) {
  border-top-color: var(--green);
}

.press-points article:nth-child(3) {
  border-top-color: var(--blue);
}

.press-points h3,
.podcast-grid h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.18rem;
}

.press-points p,
.podcast-grid p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.podcast-section {
  background: var(--night-soft);
  color: #ffffff;
}

.podcast-section h2,
.podcast-grid h3 {
  color: #ffffff;
}

.podcast-section .section-kicker {
  color: #d2a354;
}

.podcast-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.podcast-grid article {
  min-height: 250px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-light);
}

.podcast-grid span {
  display: inline-block;
  margin-bottom: 38px;
  color: #d2a354;
  font-weight: 900;
}

.podcast-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.podcast-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button.primary.dark {
  border-color: rgba(255, 255, 255, 0.92);
  background: #ffffff;
  color: var(--ink);
}

.button.secondary.dark {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.crypto-footprint-section {
  background: #ffffff;
}

.timeline-section {
  background: var(--night);
  color: #ffffff;
}

.timeline-section h2 {
  color: #ffffff;
}

.timeline-section p,
.timeline p {
  color: rgba(255, 255, 255, 0.68);
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(34px, 6vw, 62px);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
}

.timeline article {
  position: relative;
  min-height: 270px;
  border-right: 1px solid var(--line-light);
  padding: 28px 22px 10px 0;
}

.timeline article:last-child {
  border-right: 0;
}

.timeline article::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.timeline time {
  display: block;
  margin-bottom: 30px;
  color: #d2a354;
  font-size: 1.65rem;
  font-weight: 900;
}

.build-section {
  background: var(--mist);
}

.build-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 66px);
}

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

.work-grid article {
  min-height: 178px;
  background: rgba(255, 255, 255, 0.58);
}

.work-grid article:nth-child(2) {
  border-color: rgba(49, 87, 213, 0.34);
}

.work-grid article:nth-child(3) {
  border-color: rgba(168, 121, 45, 0.34);
}

.work-grid article:nth-child(4) {
  border-color: rgba(217, 95, 82, 0.3);
}

.archive-section {
  background: #ffffff;
}

.archive-copy {
  display: grid;
  justify-items: start;
  gap: 22px;
}

.faq-section {
  background: var(--ice);
  color: var(--ink);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(28px, 5vw, 64px);
}

.faq-list article {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.faq-list h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1.12;
}

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

.sources-section {
  background: var(--paper);
  color: var(--ink);
}

.sources-section .section-kicker {
  color: var(--green);
}

.sources-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.sources-grid a {
  display: flex;
  min-height: 154px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
}

.sources-grid a:hover {
  border-color: rgba(8, 123, 97, 0.46);
  background: #ffffff;
  transform: translateY(-1px);
}

.sources-grid span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.sources-grid strong {
  color: var(--ink);
  line-height: 1.2;
}

.source-note {
  max-width: 780px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  padding: 28px 0;
  background: var(--night);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line-light);
  padding-top: 24px;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.footer-inner a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-inner a:hover {
  color: #ffffff;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    min-height: 88px;
  }

  .main-nav {
    order: 3;
    justify-content: flex-start;
    width: auto;
    margin-left: auto;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .language-switcher {
    margin-left: auto;
  }

  .hero-content {
    padding-top: 128px;
  }

  h1 {
    font-size: 5.4rem;
  }

  h2 {
    font-size: 3.4rem;
  }

  .role-copy h3 {
    font-size: 3.1rem;
  }

  .hero-stats,
  .principles,
  .timeline,
  .dossier-grid,
  .press-points,
  .sources-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .whitepaper-layout,
  .ai-summary-layout,
  .role-layout,
  .press-layout,
  .build-layout,
  .archive-layout {
    grid-template-columns: 1fr;
  }

  .identity-panel {
    position: static;
  }

  .timeline article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 16px;
  }

  .brand small {
    display: none;
  }

  .main-nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    gap: 20px;
    font-size: 0.82rem;
  }

  .language-switcher {
    margin-left: auto;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-media {
    background-position: 61% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 8, 12, 0.92) 0%, rgba(6, 8, 12, 0.82) 58%, rgba(6, 8, 12, 0.4) 100%),
      linear-gradient(0deg, rgba(11, 13, 18, 1) 0%, rgba(11, 13, 18, 0) 32%);
  }

  .hero-content {
    padding: 112px 18px 38px;
  }

  h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .ai-answer p:first-child {
    font-size: 1.35rem;
  }

  .identity-panel h2,
  .role-copy h3 {
    font-size: 2.45rem;
  }

  .hero-stats,
  .principles,
  .timeline,
  .dossier-grid,
  .press-points,
  .podcast-grid,
  .work-grid,
  .faq-list,
  .sources-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 0;
  }

  .hero-stats div,
  .hero-stats div + div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding: 16px 0;
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .timeline article,
  .timeline article:nth-child(2) {
    min-height: auto;
    border-right: 0;
    padding: 26px 0 30px;
  }

  .timeline time {
    margin-bottom: 14px;
  }

  .dossier-grid article,
  .press-points article,
  .podcast-grid article {
    min-height: auto;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .section-shell {
    width: min(100% - 32px, 1180px);
  }

  h1 {
    font-size: 3.45rem;
  }

  h2,
  .identity-panel h2,
  .role-copy h3 {
    font-size: 2.18rem;
  }

  .button {
    width: 100%;
  }
}
