*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-50: #f1f5fd;
  --blue-100: #eaf2ff;
  --blue-200: #dbe7ff;
  --blue-500: #5081e1;
  --blue-800: #233a9f;
  --blue-900: #192e7e;
  --blue-950: #0d194d;
  --gold-300: #eed05b;
  --gold-400: #eac341;
  --gold-500: #e2a01d;
  --white: #ffffff;
}

html {
  font-size: 16px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--gold-400);
  color: var(--blue-950);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.18s ease;
}

.skip-link:focus-visible {
  top: 12px;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

body {
  font-family:
    "IBM Plex Sans",
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  background-color: var(--blue-950);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 20px 64px;
  position: relative;
  overflow-x: hidden;
}

/* Top gold accent bar */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold-400),
    var(--gold-300),
    var(--gold-400)
  );
  z-index: 10;
}

.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ── HEADER ── */
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.avatar-wrap {
  position: relative;
  width: 88px;
  height: 88px;
}

.avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blue-800);
  display: block;
}

.avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold-400);
  opacity: 0.7;
}

h1.name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--white);
  text-align: center;
  line-height: 1.2;
}

.title-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(80, 129, 225, 0.18);
  border: 1px solid rgba(80, 129, 225, 0.35);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-200);
}

.title-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
  flex-shrink: 0;
}

/* ── BIO ── */
.bio {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  max-width: 400px;
  margin-bottom: 14px;
}

/* ── TRUST SIGNAL ── */
/* ── SECTION LABEL ── */
.section-label {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-label span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-100);
  white-space: nowrap;
}

.section-label::before,
.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

/* ── SOCIAL ICON ROW ── */
.social-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  justify-content: center;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--blue-100);
  text-decoration: none;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    color 0.18s ease;
  flex-shrink: 0;
}

.social-btn:hover {
  background: rgba(80, 129, 225, 0.22);
  border-color: rgba(80, 129, 225, 0.5);
  color: var(--white);
  transform: translateY(-1px);
}

.social-btn:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 2px;
}

.social-btn:active {
  transform: translateY(0);
}

.social-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.utility-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 26px;
}

.utility-btn {
  flex: 1 1 calc(50% - 5px);
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--blue-100);
  border-radius: 999px;
  min-width: 0;
  padding: 10px 12px;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    color 0.18s ease;
}

.utility-btn:hover {
  background: rgba(80, 129, 225, 0.16);
  border-color: rgba(80, 129, 225, 0.42);
  color: var(--white);
  transform: translateY(-1px);
}

.utility-btn:active {
  transform: translateY(0);
}

.utility-btn:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── LINK CARDS ── */
.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}

.link-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  text-decoration: none;
  color: var(--white);
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.link-item:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 2px;
}

.link-item:hover {
  background: rgba(80, 129, 225, 0.2);
  border-color: rgba(80, 129, 225, 0.45);
  transform: translateY(-1px);
}

.link-item:active {
  transform: translateY(0);
}

.link-item.primary {
  background: rgba(35, 58, 159, 0.55);
  border-color: rgba(80, 129, 225, 0.35);
}

.link-item.primary:hover {
  background: rgba(35, 58, 159, 0.8);
  border-color: var(--blue-500);
}

.link-item.cta {
  background: var(--gold-400);
  border-color: var(--gold-300);
  color: var(--blue-950);
}

.link-item.cta:hover {
  background: var(--gold-300);
  border-color: var(--gold-300);
}

.link-item.cta .link-icon {
  color: var(--blue-950);
}
.link-item.cta .link-label {
  color: var(--blue-950);
}
.link-item.cta .link-sub {
  color: rgba(13, 25, 77, 0.9);
  opacity: 1;
}
.link-item.cta .link-arrow {
  color: var(--blue-950);
  opacity: 0.45;
}

.link-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-100);
}

.link-item.primary .link-icon {
  background: rgba(80, 129, 225, 0.2);
  color: var(--blue-100);
}

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

.link-text {
  flex: 1;
  min-width: 0;
}

.link-label {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
}

.link-sub {
  font-size: 12px;
  color: var(--blue-200);
  margin-top: 2px;
  line-height: 1.4;
}

.link-arrow {
  color: rgba(255, 255, 255, 0.62);
  flex-shrink: 0;
}

/* ── ISSUE CARDS ── */
.issues {
  width: 100%;
  margin-bottom: 40px;
}

.issues-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.issue-card {
  display: block;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px 14px 12px;
  text-decoration: none;
  transition:
    background 0.18s ease,
    border-color 0.18s ease;
}

.issue-card:hover {
  background: rgba(80, 129, 225, 0.12);
  border-color: rgba(80, 129, 225, 0.3);
}

.issue-card:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 2px;
}

.issue-icon {
  display: block;
  margin-bottom: 10px;
  height: 36px;
  width: auto;
}

.issue-icon svg {
  height: 36px;
  width: auto;
  display: block;
}

.issue-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 3px;
}

.issue-desc {
  font-size: 11px;
  color: var(--blue-100);
  line-height: 1.5;
}

/* ── FOOTER ── */
.footer {
  text-align: center;
}

.footer-city {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.disclaimer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
  max-width: 400px;
}

.disclaimer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.disclaimer a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.disclaimer a:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 2px;
}

/* ── MOBILE ── */
@media (max-width: 400px) {
  body {
    padding: 40px 16px 56px;
  }
  h1.name {
    font-size: 22px;
  }
  .bio {
    font-size: 14px;
  }
  .social-btn {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 440px) {
  .issues-grid {
    grid-template-columns: 1fr;
  }
}

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

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

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url("../../fonts/ibm-plex-sans-400-latin.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url("../../fonts/ibm-plex-sans-600-latin.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url("../../fonts/ibm-plex-sans-700-latin.woff2") format("woff2");
}
