:root {
  --paper: #fffbeb;
  --card: #ffffff;
  --ink: #0f172a;
  --muted: #334155;
  --faint: #475569;
  --line: #cbd5e1;
  --accent: #b45309;
  --accent-strong: #78350f;
  --accent-soft: rgba(245, 158, 11, 0.18);
  --accent-gradient: linear-gradient(135deg, #fff7cc 0%, #fde047 34%, #f59e0b 72%, #b45309 100%);
  --ink-gradient: linear-gradient(135deg, #fff7cc 0%, #facc15 42%, #f59e0b 100%);
  --shadow: 0 28px 70px -48px rgba(15, 23, 42, 0.45);
  --wrap: 1180px;
  --gutter: clamp(20px, 4vw, 48px);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Space Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body.about-page {
  background: #fffbeb;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 251, 235, 0.96);
  border-bottom: 1px solid rgba(180, 83, 9, 0.14);
  box-shadow: 0 10px 30px -28px rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(14px);
}

.nav {
  max-width: var(--wrap);
  min-height: 72px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand::before {
  content: "";
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: url("../favicon.svg") center / contain no-repeat;
  box-shadow: 0 14px 28px -22px rgba(120, 53, 15, 0.85);
}

.brand strong {
  color: #92400e;
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand span {
  color: var(--faint);
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 13px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 18px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-links a[aria-current="page"] {
  padding: 0 18px;
  border-color: rgba(180, 83, 9, 0.16);
  background: rgba(245, 158, 11, 0.16);
  color: #92400e;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--ink-gradient);
  color: #78350f !important;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 18px 36px -26px rgba(180, 83, 9, 0.75);
}

.page {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 52px var(--gutter) 64px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 800px;
  margin-bottom: 14px;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.lead {
  max-width: 860px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 500;
  line-height: 1.55;
}

.panel {
  margin-top: 24px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.profile {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.avatar {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--ink-gradient);
  color: #78350f;
  font-size: 34px;
  font-weight: 800;
}

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

.body-copy {
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.body-copy strong {
  color: var(--ink);
}

.inline-contact-link {
  color: #92400e;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.inline-contact-link:hover {
  color: #78350f;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.profile-button {
  position: relative;
  isolation: isolate;
  gap: 8px;
  overflow: hidden;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  color: #ffffff !important;
  box-shadow: 0 16px 34px -24px rgba(15, 23, 42, 0.9);
  transform: translateY(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.profile-button::before {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.18);
  color: inherit;
  font: 900 12px/1 "Space Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.profile-button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -60%;
  z-index: -1;
  width: 46%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transition: left 0.5s ease;
}

.profile-button:hover,
.profile-button:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 22px 42px -26px rgba(15, 23, 42, 0.95);
}

.profile-button:hover::after,
.profile-button:focus-visible::after {
  left: 112%;
}

.profile-button:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.36);
  outline-offset: 3px;
}

.profile-linkedin {
  background: linear-gradient(135deg, #0a66c2 0%, #064e8f 100%);
}

.profile-linkedin::before {
  content: "in";
}

.profile-github {
  background: linear-gradient(135deg, #111827 0%, #334155 100%);
}

.profile-github::before {
  content: "GH";
}

.profile-coffee {
  background: var(--accent-gradient);
  color: #78350f !important;
}

.profile-coffee::before {
  content: "B";
  background: rgba(120, 53, 15, 0.12);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.tile,
.step {
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.tile-icon,
.step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: #78350f;
  border: 1px solid #d97706;
  font-weight: 900;
}

.step-symbol {
  display: block;
  margin-bottom: 12px;
  font-size: 27px;
  line-height: 1;
}

.policy {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.policy-nav {
  position: sticky;
  top: 96px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.policy-nav a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

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

.policy-section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.policy-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.policy-section ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.policy-number {
  width: 44px;
  height: 44px;
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(180, 83, 9, 0.32);
  border-radius: 50%;
  background: var(--accent-gradient);
  color: #78350f;
  font-family: "Space Mono", "Courier New", monospace;
  font-weight: 800;
}

.policy-section code {
  display: inline-block;
  max-width: 100%;
  padding: 2px 6px;
  border-radius: 6px;
  background: #fffbeb;
  color: #78350f;
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.92em;
  overflow-wrap: anywhere;
}

.policy-disclosure {
  padding: 24px;
  border: 1px solid rgba(180, 83, 9, 0.2);
  border-radius: 12px;
  background: #fffbeb;
}

.policy-disclosure h2 {
  margin-top: 0;
}

.table-scroll {
  max-width: 100%;
  margin-top: 18px;
  overflow-x: auto;
  border: 1px solid rgba(148, 163, 184, 0.55);
  border-radius: 10px;
  background: #ffffff;
}

.disclosure-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.disclosure-table th,
.disclosure-table td {
  padding: 18px;
  border-bottom: 1px solid rgba(203, 213, 225, 0.8);
  vertical-align: top;
}

.disclosure-table tr:last-child th,
.disclosure-table tr:last-child td {
  border-bottom: 0;
}

.disclosure-table th {
  width: 190px;
  background: #fff7cc;
  color: #78350f;
  font-weight: 800;
  text-align: left;
}

.disclosure-table strong {
  display: block;
  margin-top: 10px;
  color: #14532d;
}

.privacy-governance {
  max-width: var(--wrap);
  margin: 28px auto 0;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(180, 83, 9, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 86% 20%, rgba(255, 255, 255, 0.56), transparent 34%),
    linear-gradient(135deg, #fff7cc 0%, #fde047 34%, #f59e0b 72%, #b45309 100%);
  box-shadow: 0 30px 80px -56px rgba(120, 53, 15, 0.78);
  color: #0f172a;
}

.privacy-governance .eyebrow {
  color: #78350f;
}

.privacy-governance h2 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.privacy-governance p {
  max-width: 850px;
  margin: 0 0 16px;
  color: #1f2937;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.privacy-governance a {
  position: relative;
  z-index: 1;
  color: #78350f;
  font-weight: 800;
  text-decoration-color: rgba(120, 53, 15, 0.42);
  text-underline-offset: 4px;
}

.privacy-governance a:hover {
  color: #0f172a;
  text-decoration-color: #0f172a;
}

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

.governance-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(120, 53, 15, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 35px -28px rgba(15, 23, 42, 0.8);
  color: #78350f;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.governance-actions a:hover {
  background: #ffffff;
  box-shadow: 0 20px 42px -28px rgba(15, 23, 42, 0.95);
  color: #0f172a;
  transform: translateY(-2px);
}

.support-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 26px;
  align-items: stretch;
}

.membership {
  padding: 24px;
  background: #111827;
  border-radius: 8px;
  color: #ffffff;
}

.price {
  margin: 18px 0;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.price span {
  color: #cbd5e1;
  font-size: 17px;
  font-weight: 600;
}

.mini-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--faint);
  font-size: 14px;
  font-weight: 800;
}

.mini-nav a {
  text-decoration: none;
}

.footer {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 26px var(--gutter) 42px;
  color: var(--faint);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.about-main {
  max-width: var(--wrap);
  padding-top: 62px;
}

.about-hero {
  max-width: 650px;
  margin: 0 auto 42px;
  text-align: center;
}

.about-hero h1 {
  max-width: 640px;
  margin: 0 auto 16px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.about-hero h1 span {
  display: block;
  background: linear-gradient(90deg, #92400e 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-hero .lead {
  max-width: 520px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.55;
}

.about-reserve {
  min-height: 90px;
  margin: 0 0 30px;
  border: 1px dashed rgba(180, 83, 9, 0.22);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 16px 44px -38px rgba(15, 23, 42, 0.36);
}

.about-profile-card {
  position: relative;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 36px;
  margin-top: 0;
  padding: clamp(34px, 5vw, 48px);
  border-color: rgba(180, 83, 9, 0.2);
  border-radius: 14px;
  box-shadow: 0 30px 72px -44px rgba(120, 53, 15, 0.42);
}

.about-profile-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  border-radius: 14px 14px 0 0;
  background: var(--accent-gradient);
}

.about-profile-card .avatar {
  width: 106px;
  height: 106px;
  border-radius: 24px;
  box-shadow: 0 24px 48px -28px rgba(180, 83, 9, 0.88);
}

.about-profile-card h2 {
  margin-bottom: 8px;
}

.about-role {
  width: fit-content;
  margin: 0 0 22px;
  min-height: 28px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #fffbeb;
  color: #92400e;
  font: 800 12px/1 "Space Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-page .grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 18px;
  margin-top: 26px;
}

.about-page .tile {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 14px;
  width: 100%;
  height: 100%;
  min-height: 250px;
  padding: 28px;
  border-color: rgba(180, 83, 9, 0.16);
  border-radius: 14px;
  box-shadow: 0 18px 50px -42px rgba(15, 23, 42, 0.55);
  overflow: hidden;
  transform: rotate(var(--note-tilt, 0deg)) translateY(0);
  transform-origin: 50% 16px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  animation: noteDrift 5.8s ease-in-out infinite;
  animation-delay: var(--note-delay, 0s);
}

.about-page .tile h3,
.about-page .tile p {
  min-width: 0;
}

.about-page .tile h3 {
  margin-bottom: 0;
}

.about-page .tile p {
  margin-bottom: 0;
}

.about-page .tile::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--note-line, var(--accent-gradient));
}

.about-page .tile::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 18px;
  width: 36px;
  height: 12px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.15);
  transform: rotate(4deg);
}

.about-page .tile:hover,
.about-page .tile:focus-within {
  border-color: rgba(180, 83, 9, 0.34);
  box-shadow: 0 24px 58px -38px rgba(120, 53, 15, 0.5);
  transform: rotate(0deg) translateY(-5px);
}

.note-idea {
  --note-tilt: -0.7deg;
  --note-delay: 0s;
  --note-line: linear-gradient(90deg, #f59e0b, #fde047);
}

.note-privacy {
  --note-tilt: 0.6deg;
  --note-delay: -1.2s;
  --note-line: linear-gradient(90deg, #facc15, #10b981);
}

.note-code {
  --note-tilt: -0.35deg;
  --note-delay: -2s;
  --note-line: linear-gradient(90deg, #0f172a, #f59e0b);
}

.note-contact {
  --note-tilt: 0.45deg;
  --note-delay: -3.1s;
  --note-line: linear-gradient(90deg, #f59e0b, #0ea5e9);
}

.about-page .note-card .tile-icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  animation: iconPulse 3.8s ease-in-out infinite;
  animation-delay: var(--note-delay, 0s);
  box-shadow: 0 14px 28px -22px rgba(120, 53, 15, 0.8);
}

.about-page .note-card .tile-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

@keyframes noteDrift {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -3px;
  }
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06) rotate(-2deg);
  }
}

.about-built {
  margin-top: 26px;
  border-color: rgba(180, 83, 9, 0.16);
  border-radius: 14px;
  box-shadow: 0 20px 58px -46px rgba(120, 53, 15, 0.42);
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(180, 83, 9, 0.2);
  border-radius: 999px;
  background: #fffbeb;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.about-cta {
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  border: 0;
  border-radius: 14px;
  background: var(--accent-gradient);
  color: #111827;
  box-shadow: 0 26px 62px -40px rgba(180, 83, 9, 0.72);
}

.about-cta h2 {
  margin: 0 0 6px;
  color: #111827;
}

.about-cta p {
  margin: 0;
  color: #78350f;
  font-weight: 700;
}

.about-cta .link-row {
  margin-top: 0;
  justify-content: flex-end;
}

.about-cta .button-link {
  background: #ffffff;
  border-color: rgba(120, 53, 15, 0.18);
}

.about-cta .about-coffee-link {
  background: #111827;
  border-color: rgba(17, 24, 39, 0.2);
  color: #ffffff !important;
  box-shadow: 0 18px 34px -24px rgba(17, 24, 39, 0.72);
}

.about-reserve-bottom {
  min-height: 86px;
  margin: 26px 0 0;
}

@media (max-width: 860px) {
  .nav,
  .nav-links,
  .profile,
  .policy,
  .support-card {
    grid-template-columns: 1fr;
  }

  .nav {
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .brand {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }

  .brand::before {
    width: 34px;
    height: 34px;
  }

  .brand span {
    display: none;
  }

  .nav-links {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    flex-wrap: nowrap;
    gap: 6px;
  }

  .nav-links a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border: 1px solid rgba(180, 83, 9, 0.18);
    border-radius: 999px;
    background: #ffffff;
    text-align: center;
    white-space: nowrap;
  }

  .nav-links a[aria-current="page"] {
    padding: 0 6px;
  }

  .nav-links a[href*="buymeacoffee"],
  .nav-links .button-link {
    min-height: 44px;
    padding: 0 8px;
    background: var(--ink-gradient);
    color: #78350f !important;
  }

  .grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .about-main {
    padding-top: 36px;
  }

  .about-profile-card,
  .about-page .grid,
  .about-cta {
    grid-template-columns: 1fr;
  }

  .about-page .tile {
    transform: none;
    min-height: auto;
  }

  .about-profile-card {
    gap: 22px;
  }

  .about-hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .policy-nav {
    position: static;
    width: 100%;
    max-width: 100%;
  }

  .panel {
    padding: 22px;
  }

  .policy {
    gap: 20px;
    min-width: 0;
    overflow: hidden;
  }

  .policy > div,
  .policy-section,
  .policy-section ul,
  .privacy-governance,
  .lead,
  .muted {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 520px) {
  .page {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page > .hero,
  .page > .panel,
  .privacy-governance,
  .footer {
    width: min(100%, 320px);
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .privacy-governance {
    padding: 22px;
  }

  .privacy-governance h2 {
    font-size: 28px;
  }

  .privacy-governance p {
    font-size: 16px;
  }

  .governance-actions a {
    width: 100%;
  }

  .policy-disclosure {
    padding: 18px;
  }

  .table-scroll {
    overflow-x: visible;
  }

  .disclosure-table {
    min-width: 0;
    font-size: 14px;
  }

  .disclosure-table,
  .disclosure-table tbody,
  .disclosure-table tr,
  .disclosure-table th,
  .disclosure-table td {
    display: block;
    width: 100%;
  }

  .disclosure-table tr {
    border-bottom: 1px solid rgba(203, 213, 225, 0.8);
  }

  .disclosure-table tr:last-child {
    border-bottom: 0;
  }

  .disclosure-table th,
  .disclosure-table td {
    border-bottom: 0;
  }

  .disclosure-table th {
    padding-bottom: 8px;
  }

  .disclosure-table td {
    padding-top: 12px;
  }

  h1 {
    font-size: clamp(30px, 8.7vw, 34px);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .lead {
    font-size: 16px;
  }

  .panel {
    padding: 18px;
  }

  .nav-links {
    grid-template-columns: 1fr;
  }

  .nav-links a,
  .nav-links a[aria-current="page"],
  .nav-links .button-link {
    width: min(calc(100vw - 72px), 340px);
    max-width: min(calc(100vw - 72px), 340px);
    min-height: 42px;
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-page .tile,
  .about-page .note-card .tile-icon,
  .profile-button,
  .profile-button::after {
    animation: none;
    transition: none;
  }

  .about-page .tile,
  .about-page .tile:hover,
  .about-page .tile:focus-within {
    transform: none;
  }
}
