  :root {
    --red: #C8102E;
    --red-dark: #9A0C24;
    --red-tint: #FDF3F5;
    --black: #0A0A0A;
    --ink: #1A1A1A;
    --ink-700: #424242;
    --ink-500: #707070;
    --ink-300: #B0B0B0;
    --line: #EAEAEA;
    --line-strong: #D0D0D0;
    --paper: #FFFFFF;
    --paper-2: #FAFAFA;
    --paper-3: #F4F4F4;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--paper);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
    font-feature-settings: "ss01", "cv11";
  }
  ::selection { background: var(--red); color: var(--paper); }
  img, svg { max-width: 100%; display: block; }

  [data-lucide] { width: 18px; height: 18px; stroke-width: 1.75; flex-shrink: 0; }

  .wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

  em.s { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }

  /* ─────────── EYEBROW (unified) ─────────── */
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--paper);
    border: 1px solid var(--line-strong);
    color: var(--ink-700);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 999px;
    margin-bottom: 24px;
  }
  .eyebrow [data-lucide] { width: 13px; height: 13px; color: var(--red); }
  .eyebrow.dark { background: rgba(255,255,255,0.08); color: var(--paper); border-color: rgba(255,255,255,0.18); }
  .eyebrow.dark [data-lucide] { color: var(--paper); }

  /* ─────────── BUTTONS ─────────── */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.15s ease;
    cursor: pointer;
    border: 1px solid transparent;
  }
  .btn-primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
  .btn-primary:hover { background: var(--red); border-color: var(--red); }
  .btn-secondary { background: var(--paper); color: var(--ink); border-color: var(--line-strong); }
  .btn-secondary:hover { border-color: var(--ink); }
  .btn-red { background: var(--red); color: var(--paper); border-color: var(--red); }
  .btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }
  .btn-lg { padding: 15px 26px; font-size: 15px; }

  /* ─────────── NAV (single bar, no topbar) ─────────── */
  nav.main {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
    padding-top: env(safe-area-inset-top);
  }
    .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
  }
  .nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
  .nav-logo {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .nav-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .nav-name span {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 400;
    color: var(--ink-500);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 1px;
  }
  .nav-links {
    display: flex;
    list-style: none;
    gap: 6px;
  }
  .nav-links a {
    padding: 8px 14px;
    color: var(--ink-700);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.15s;
  }
  .nav-links a:hover { color: var(--ink); background: var(--paper-3); }

  /* ═══════════════ HERO ═══════════════ */
  .hero {
    padding: 96px 0 60px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.04) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
  }
  .hero h1 {
    font-size: clamp(30px, 5.5vw, 64px);
    line-height: 1.06;
    letter-spacing: -0.045em;
    color: var(--ink);
    font-weight: 800;
    margin-bottom: 28px;
    white-space: nowrap;
  }
  .hero h1 .red { color: var(--red); }
  .hero h1 em.s { font-weight: 400; letter-spacing: -0.02em; display: inline-block; margin-top: 8px; }
  .hero p.lede {
    font-size: 19px;
    line-height: 1.5;
    color: var(--ink-500);
    max-width: 520px;
    margin-bottom: 40px;
  }
  .hero-cta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }
  .mobile-ctas { display: none; }

  .pledge-counter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 4px;
  }
  .pledge-counter-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    position: relative;
    flex-shrink: 0;
  }
  .pledge-counter-dot::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--red);
    opacity: 0.4;
    animation: pledge-ping 1.8s ease-out infinite;
  }
  @keyframes pledge-ping {
    0% { transform: scale(0.8); opacity: 0.6; }
    100% { transform: scale(2.2); opacity: 0; }
  }
  .pledge-counter-text {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    font-size: 13.5px;
    color: var(--ink-700);
    line-height: 1;
  }
  .pledge-counter-text strong {
    font-weight: 700;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
    font-size: 14.5px;
    transition: color 0.3s;
  }
  .pledge-counter-text strong.bump {
    color: var(--red);
  }
  .pledge-counter-label {
    color: var(--ink-500);
    font-weight: 500;
  }


  /* Hero visual — refined building card */
  .hero-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background:
      radial-gradient(ellipse at 50% 40%, var(--paper) 0%, var(--paper-2) 70%, var(--paper-3) 100%);
    aspect-ratio: 4/5;
    position: relative;
  }
  .hero-card-meta {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    color: var(--ink-500);
    font-weight: 500;
    text-transform: uppercase;
  }
  .hero-card-meta-right {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--ink-700);
  }
  .hero-card-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--red);
    animation: pulse 2s infinite;
  }
  @keyframes pulse { 0%,100% {opacity:1;} 50% {opacity:0.4;} }
  .hero-card svg {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
  }
  .hero-card-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 3;
  }
  .hero-card-title {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 20px;
    color: var(--ink);
    line-height: 1.2;
  }
  .hero-card-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    color: var(--ink-500);
    text-transform: uppercase;
    margin-top: 4px;
  }


  .hero-crest {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px 100px;
    z-index: 1;
  }
  .hero-crest img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
  }

  /* ═══════════════ SECTION DEFAULTS ═══════════════ */
  section { padding: 120px 0; }
  .section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 80px;
  }
  .section-head h2 {
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 20px;
  }
  .section-head h2 .red { color: var(--red); }
  .section-head h2 em.s { font-weight: 400; }
  .section-head p {
    font-size: 17px;
    color: var(--ink-500);
    line-height: 1.55;
  }

  /* ═══════════════ CANDIDATES ═══════════════ */
  .candidates { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); scroll-margin-top: calc(76px + env(safe-area-inset-top)); }
  .candidates-slate {
    max-width: 1100px;
    margin: 0 auto;
  }
  .candidates-top4 {
    grid-template-columns: repeat(4, 1fr) !important;
    max-width: 1100px !important;
  }

  .tier-label--section {
    text-align: center;
    margin: 52px 0 28px;
    position: relative;
  }
  .tier-label--section:first-child {
    margin-top: 0;
  }
  .tier-label--section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--line-strong);
    z-index: 0;
  }
  .tier-label-inner {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--paper-2);
    position: relative;
    z-index: 1;
    padding: 10px 28px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    gap: 2px;
  }
  .tier-label-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
  }
  .tier-label-sub {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--red);
  }

  .candidates-leadership + * + .candidates-committee,
  .candidates-leadership + .candidates-committee {
    margin-top: 40px;
  }

  /* ─── President tier ─── */
  .candidates-president {
    max-width: 340px;
    margin: 0 auto 40px;
  }
  .candidate.candidate-president .candidate-photo {
    aspect-ratio: 4/5;
  }
  .candidate.candidate-president .candidate-role-value {
    font-size: 13px;
    letter-spacing: 0.005em;
  }

  .candidates-leadership {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1080px;
    margin: 0 auto;
  }
  .candidates-committee {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
  /* 7-card layout: use flexbox so last 2 auto-center */
  .candidates-committee.cards-7 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .candidates-committee.cards-7 > .candidate {
    flex: 0 0 calc((100% - 4 * 16px) / 5);
  }
  .candidate-role-tag {
    margin-bottom: 10px;
  }
  .candidate-role-value {
    font-size: 14.5px;
    color: var(--red);
    font-weight: 700;
    letter-spacing: -0.005em;
  }
  .candidate-leadership .candidate-photo {
    aspect-ratio: 4/5;
  }
  .candidate {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
  }
  .candidate:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: 0 12px 28px rgba(0,0,0,0.06); }
  .candidate:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }
  .candidate::after {
    content: '';
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231A1A1A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17L17 7M17 7H8M17 7V16'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  .candidate:hover::after { opacity: 1; }
  .candidate-photo {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--paper-3) 0%, var(--paper-2) 100%);
    position: relative;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    line-height: 0;
    font-size: 0;
  }
  .candidate-photo img {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: saturate(0.92) contrast(1.02);
    transition: transform 0.4s ease;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  .candidate:hover .candidate-photo img {
    transform: scale(1.03);
  }

  /* Bhaskar: 500×500 square photo — image fills container exactly top-to-bottom
     (no vertical crop), so the light studio backdrop at the bottom is fully visible.
     Fix: make the img 22% taller than the container (extends below the bottom edge)
     and anchor it to the top. overflow:hidden clips the light bottom portion. */
  .candidate[data-profile="bhaskar"] .candidate-photo img {
    height: 122%;
    top: 0;
    bottom: auto;
    object-position: center top;
  }

  /* Ashok: 686×786 PNG — image also fills container exactly top-to-bottom,
     so the light background at the top of his photo is fully visible.
     Fix: make the img 15% taller, anchor it to the bottom so it extends above
     the top edge. overflow:hidden clips the light top portion. */
  .candidate[data-profile="ashok"] .candidate-photo img {
    height: 102%;
    bottom: 0;
    top: auto;
    object-position: center bottom;
  }

  .candidate-photo .initial {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 120px;
    color: var(--red);
    line-height: 1;
    letter-spacing: -0.06em;
    opacity: 0.85;
    z-index: 1;
  }
  .candidate-body {
    padding: 28px;
  }
  .candidate-name {
    font-size: 21px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }
  .candidate-tagline {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--red);
    margin-bottom: 20px;
    line-height: 1.3;
  }
  .candidate-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }
  .candidate-meta-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--ink-700);
    line-height: 1.4;
  }
  .candidate-meta-row [data-lucide] { color: var(--ink-300); width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; }

  /* ═══════════════ MANIFESTO ═══════════════ */
  .manifesto {
    background: var(--paper);
    padding: 90px 0 140px;
    position: relative;
    overflow: hidden;
    scroll-margin-top: calc(76px + env(safe-area-inset-top));
  }
  .manifesto .wrap { position: relative; z-index: 2; }


  /* ─── Manifesto prose (letter + closing) ─── */
  .mf-letter {
    max-width: 720px;
    margin: 0 auto 96px;
    padding-top: 40px;
  }
  .mf-letter-salutation {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 28px;
    color: var(--ink);
    margin-bottom: 32px;
    line-height: 1.2;
  }
  .mf-letter p {
    font-size: 18px;
    line-height: 1.65;
    color: var(--ink-700);
    margin-bottom: 24px;
    font-weight: 400;
  }
  .mf-letter p:last-child {
    margin-bottom: 0;
  }
  .mf-letter strong {
    color: var(--ink);
    font-weight: 600;
  }
  .mf-letter em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--red);
    font-weight: 400;
  }

  .mf-closing {
    max-width: 720px;
    margin: 96px auto 0;
    padding-top: 48px;
    border-top: none;
  }
  .mf-closing p {
    font-size: 18px;
    line-height: 1.65;
    color: var(--ink-700);
    margin-bottom: 24px;
  }
  .mf-closing p.lift {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 26px;
    color: var(--ink);
    line-height: 1.35;
  }
  .mf-closing p:last-of-type {
    margin-bottom: 32px;
  }

  .mf-signoff {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    text-align: center;
  }
  .mf-signoff-slogan {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 32px;
    color: var(--red);
    margin-bottom: 28px;
    line-height: 1.2;
  }
  .mf-signoff-warm {
    font-size: 15px;
    color: var(--ink-500);
    margin-bottom: 8px;
  }
  .mf-signoff-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .mf-signoff-name .red { color: var(--red); }

  @media (max-width: 720px) {
    .mf-letter { padding-top: 0; margin-bottom: 56px; }
    .mf-letter-salutation { font-size: 22px; margin-bottom: 24px; }
    .mf-letter p, .mf-closing p { font-size: 16.5px; line-height: 1.6; margin-bottom: 20px; }
    .mf-closing { margin-top: 56px; padding-top: 32px; }
    .mf-closing p.lift { font-size: 20px; }
    .mf-signoff-slogan { font-size: 24px; }
  }

  /* Hero opener */
  .manifesto-opener {
    text-align: center;
    max-width: 880px;
    margin: 0 auto 96px;
  }
  .manifesto-opener .eyebrow { margin-bottom: 32px; }
  .manifesto-opener h2 {
    font-size: clamp(48px, 6.5vw, 88px);
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 28px;
  }
  .manifesto-opener h2 em.s {
    font-weight: 400;
    color: var(--red);
    display: block;
    margin-top: 8px;
  }
  .manifesto-opener .lede {
    font-size: 19px;
    color: var(--ink-500);
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto 40px;
  }
  /* Chapters as horizontal bands */
  .manifesto-chapters {
    max-width: 1100px;
    margin: 0 auto;
  }
  .mf-chapter {
    border-top: 1px solid var(--line);
    padding: 64px 0;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
  }
  .mf-chapter:last-child {
    border-bottom: 1px solid var(--line);
  }

  .mf-chapter-aside {
    position: sticky;
    top: 100px;
  }
  .mf-chapter-roman {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 80px;
    line-height: 0.9;
    color: var(--red);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
  }
  .mf-chapter-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 12px;
  }
  .mf-chapter-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-500);
    font-weight: 500;
  }

  .mf-commitments {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* Lead commitment — bigger, no border above */
  .mf-lead {
    padding: 0 0 32px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 32px;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: baseline;
  }
  .mf-lead-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--red);
    letter-spacing: 0.1em;
    font-weight: 600;
    padding-top: 8px;
  }
  .mf-lead-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
    letter-spacing: -0.02em;
  }
  .mf-lead-text .verb {
    color: var(--red);
  }

  /* Regular commitments */
  .mf-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 20px 0;
    align-items: baseline;
    border-bottom: 1px solid var(--line);
  }
  .mf-item:last-child {
    border-bottom: none;
  }
  .mf-item-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--ink-300);
    letter-spacing: 0.1em;
    font-weight: 500;
  }
  .mf-item-text {
    font-size: 17px;
    color: var(--ink-700);
    line-height: 1.5;
  }
  .mf-item-text .verb {
    color: var(--ink);
    font-weight: 600;
  }

/* ═══════════════ RECEIPTS (light, document-style) ═══════════════ */
  .receipts {
    background: var(--paper-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .receipts .section-head h2 { color: var(--ink); }
  .receipts .section-head h2 .red { color: var(--red); }
  .receipts .section-head p { color: var(--ink-500); }

  .receipts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .receipt {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
  }
  .receipt:hover {
    transform: translateY(-3px);
    border-color: var(--line-strong);
    box-shadow: 0 12px 28px rgba(0,0,0,0.05);
  }
  .receipt-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
  }
  .receipt-badge {
    width: 36px;
    height: 36px;
    background: var(--red);
    color: var(--paper);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 17px;
    letter-spacing: 0;
  }
  .receipt-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-500);
    font-weight: 500;
    padding: 5px 10px;
    background: var(--paper-2);
    border-radius: 999px;
    border: 1px solid var(--line);
  }
  .receipt-hero {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 52px;
    line-height: 1;
    color: var(--red);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  .receipt-hero.smaller {
    font-size: 38px;
  }
  .receipt-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .receipt-body {
    font-size: 13.5px;
    color: var(--ink-500);
    line-height: 1.55;
    flex: 1;
  }
  .receipt-subtext {
    margin-top: 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--ink-300);
    text-transform: uppercase;
    font-weight: 500;
  }
  .receipt-subtext a {
    color: var(--ink-500);
    text-decoration: none;
    border-bottom: 1px solid var(--line-strong);
    transition: all 0.15s;
  }
  .receipt-subtext a:hover {
    color: var(--red);
    border-color: var(--red);
  }

  /* ═══════════════ FINALE — Election + Pledge side by side ═══════════════ */
  .finale {
    background: var(--paper);
    padding: 80px 0 96px;
    scroll-margin-top: calc(76px + env(safe-area-inset-top));
  }
  #pledge-form {
    scroll-margin-top: calc(76px + env(safe-area-inset-top));
  }
  .finale-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Shared card chrome */
  .finale-card {
    border-radius: 20px;
    padding: 48px 44px;
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    flex-direction: column;
  }
  .finale-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 36px;
  }
  .finale-eyebrow::before {
    content: '—';
    font-weight: 400;
  }
  .finale-card h3 {
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 0;
  }

  /* LEFT — Election Day card (cream) */
  .finale-election {
    background: var(--paper-2);
    border: 1px solid var(--line);
    color: var(--ink);
  }
  .finale-election .finale-eyebrow { color: var(--ink-500); }
  .finale-election h3 { color: var(--ink); }

  .election-list {
    margin-top: auto;
    padding-top: 32px;
  }
  .election-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 24px;
    align-items: baseline;
    padding: 18px 0;
    border-top: 1px solid var(--line);
  }
  .election-row:last-child {
    border-bottom: 1px solid var(--line);
  }
  .election-row-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-500);
    font-weight: 500;
  }
  .election-row-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    text-align: right;
    letter-spacing: -0.01em;
  }

  /* RIGHT — Pledge card (black with red glow) */
  .finale-pledge {
    background: var(--ink);
    color: var(--paper);
    position: relative;
  }
  .finale-pledge::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.5) 0%, transparent 65%);
    pointer-events: none;
  }
  .finale-pledge::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.15) 0%, transparent 65%);
    pointer-events: none;
  }
  .finale-pledge > * { position: relative; z-index: 2; }
  .finale-pledge .finale-eyebrow { color: #E8C474; }
  .finale-pledge h3 { color: var(--paper); margin-bottom: 32px; }

  .pledge-form-new {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }
  .pledge-form-new input {
    width: 100%;
    padding: 18px 22px;
    background: #1F1F1F;
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--paper);
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    outline: none;
    transition: all 0.2s;
  }
  .pledge-form-new input::placeholder { color: rgba(255,255,255,0.4); }
  .pledge-form-new input:focus {
    border-color: rgba(255,255,255,0.25);
    background: #252525;
  }
  .pledge-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .pledge-caveat {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
    text-align: left;
    font-weight: 500;
  }
  .pledge-submit-new {
    width: 100%;
    padding: 8px 8px 8px 24px;
    background: var(--paper);
    color: var(--ink);
    border: none;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: all 0.2s;
    margin-top: auto;
  }
  .pledge-submit-new:hover { transform: translateY(-1px); }
  .pledge-submit-icon {
    width: 44px;
    height: 44px;
    background: var(--red);
    color: var(--paper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .pledge-submit-icon [data-lucide] { width: 18px; height: 18px; stroke-width: 2.5; }

  .pledge-success-new {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px;
    color: var(--paper);
    font-size: 14px;
  }
  .pledge-success-new.show {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .pledge-success-new [data-lucide] { color: #E8C474; }



  /* ═══════════════ FOOTER (cream, document-style) ═══════════════ */
  footer {
    background: var(--paper-2);
    color: var(--ink);
    padding: 72px 0 32px;
    border-top: 1px solid var(--line);
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: start;
    padding-bottom: 0;
  }
  .footer-brand-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .footer-brand-row {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .footer-logo {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .footer-brand-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.015em;
    line-height: 1.1;
  }
  .footer-brand-name span {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-500);
    font-weight: 500;
    margin-top: 4px;
  }
  .footer-tagline-big {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 22px;
    color: var(--red);
    line-height: 1.2;
    margin-top: 8px;
  }

  .footer-cols {
    display: grid;
    grid-template-columns: auto auto;
    gap: 64px;
    align-items: start;
  }
  .footer-col h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-500);
    font-weight: 500;
    margin-bottom: 18px;
  }
  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-col a {
    color: var(--ink);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.15s;
  }
  .footer-col a:hover { color: var(--red); }

  .disclaimer-bar {
    background: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    padding: 12px 24px;
    text-align: center;
  }
  .disclaimer-bar p {
    margin: 0;
    font-size: 0.75rem;
    color: #777;
    line-height: 1.5;
  }
  .disclaimer-bar strong {
    color: #555;
  }


  /* ═══════════════ MOBILE ═══════════════ */
  @media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 56px; }
    .hero-card { max-width: 480px; margin: 0 auto; aspect-ratio: 4/5; }
    .candidates-committee {
      grid-template-columns: repeat(2, 1fr);
    }
    .receipts-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .mf-chapter { grid-template-columns: 200px 1fr; gap: 40px; }
    .mf-chapter-roman { font-size: 60px; }
  }
  @media (max-width: 720px) {
    .nav-links { display: none; }
    section { padding: 72px 0; }
    .hero { padding: 56px 0 30px; }
    .hero h1 {
      font-size: clamp(30px, 9vw, 42px);
      letter-spacing: -0.05em;
      line-height: 1.08;
      margin-bottom: 24px;
    }
    .hero p.lede { font-size: 17px; line-height: 1.5; }
    .manifesto { padding: 50px 0 80px; }
    .manifesto::before { font-size: 400px; right: -120px; }
    .manifesto-opener { margin-bottom: 56px; }
    .candidates-grid, .receipts-grid {
      grid-template-columns: 1fr;
    }
    /* Mobile-only CTAs: hide desktop pledge CTA, show two CTAs */
    .hero-cta > a { display: none; }
    .mobile-ctas { display: flex; gap: 12px; margin-top: 16px; }
    .mobile-ctas .btn { flex: 1; }
    /* Candidate tiers — mobile */
    .candidates-president {
      max-width: 320px;
    }
    .candidates-leadership {
      grid-template-columns: 1fr;
      max-width: 320px;
      margin-left: auto;
      margin-right: auto;
    }
    .candidates-top4 {
      grid-template-columns: repeat(2, 1fr) !important;
      max-width: 100% !important;
    }
    .candidates-committee {
      grid-template-columns: repeat(2, 1fr);
    }
    .candidates-committee.cards-7 {
      gap: 12px;
    }
    .candidates-committee.cards-7 > .candidate {
      flex: 0 0 calc(50% - 6px);
    }
    .candidates-committee.cards-7 > .candidate:nth-child(7) {
      flex: 0 0 calc(50% - 6px);
      margin: 0 auto;
      width: 100%;
    }
    .finale-grid {
      grid-template-columns: 1fr;
    }
    .finale-card {
      padding: 36px 28px;
      min-height: auto;
    }
    .pledge-row-split {
      grid-template-columns: 1fr;
    }
    
    
    .footer-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
    .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { justify-content: center; }
    .section-head { margin-bottom: 48px; }
    .receipt { padding: 32px 24px; }
    .candidate-body { padding: 22px; }
    /* Manifesto mobile */
    .mf-chapter { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
    .mf-chapter-aside { position: static; }
    .mf-chapter-roman { font-size: 48px; margin-bottom: 8px; }
    .mf-lead { grid-template-columns: 36px 1fr; gap: 12px; }
    .mf-lead-text { font-size: 22px; }
    .mf-item { grid-template-columns: 36px 1fr; gap: 12px; padding: 16px 0; }
    .mf-item-text { font-size: 15.5px; }
  }

  .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1); }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* ─── Profile modal ─── */
  .profile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 17, 15, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  .profile-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .profile-modal {
    background: var(--paper);
    border-radius: 18px;
    max-width: 720px;
    width: 100%;
    max-height: calc(100vh - 112px);
    height: calc(100vh - 112px);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
    transform: scale(0.96) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin: auto 0;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .profile-modal > #profileContent {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: hidden;
  }
  .profile-overlay.open .profile-modal { transform: scale(1) translateY(0); }
  .profile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 110;
    transition: transform 0.15s;
  }
  .profile-close:hover { transform: scale(1.05); }
  .profile-close [data-lucide] { width: 20px; height: 20px; color: var(--ink); }

  .profile-hero {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    padding: 40px;
    background: linear-gradient(135deg, var(--paper-2) 0%, var(--paper) 100%);
    border-bottom: 1px solid var(--line);
    align-items: start;
  }
  .profile-photo {
    aspect-ratio: 4/5;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
  }
  .profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: saturate(0.92) contrast(1.02);
  }
  .profile-hero-text { padding-top: 6px; }
  .profile-role {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: -0.005em;
    margin-bottom: 8px;
  }
  .profile-name {
    font-size: 32px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin-bottom: 16px;
  }
  .profile-tagline {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--ink-700);
    line-height: 1.45;
    margin-bottom: 0;
  }

  .profile-quickfacts {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--line);
  }
  .profile-quickfact {
    flex: 1;
    padding: 20px 24px;
    border-right: 1px solid var(--line);
  }
  .profile-quickfact:last-child { border-right: none; }
  .profile-quickfact[data-label="Age"] { padding-left: 36px; }
  .profile-quickfact-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-500);
    margin-bottom: 6px;
    font-weight: 500;
  }
  .profile-quickfact-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
  }

  .profile-scroll-area {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
  }
  .profile-body {
    padding: 32px 40px 40px;
  }
  .profile-section { margin-bottom: 28px; }
  .profile-section:last-child { margin-bottom: 0; }
  .profile-section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-500);
    font-weight: 500;
    margin-bottom: 12px;
  }
  .profile-section p {
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--ink-700);
    margin-bottom: 12px;
  }
  .profile-section p:last-child { margin-bottom: 0; }
  .profile-section strong { color: var(--ink); font-weight: 700; }
  .profile-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .profile-section li {
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-700);
    padding: 8px 0 8px 22px;
    position: relative;
  }
  .profile-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
  }

  .profile-footer {
    padding: 24px 40px 32px;
    border-top: 1px solid var(--line);
    background: var(--paper-2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    flex-shrink: 0;
  }
  .profile-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.15s;
  }
  .profile-phone:hover { background: var(--red); }
  .profile-phone [data-lucide] { width: 16px; height: 16px; }
  .profile-membership {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-500);
  }

  body.profile-open { overflow: hidden; }

  @media (max-width: 720px) {
    .profile-overlay { padding: 0; }
    .profile-modal { border-radius: 0; max-width: 100%; height: 100vh; max-height: 100vh; }
    @supports (height: 100dvh) {
      .profile-modal { height: 100dvh; max-height: 100dvh; }
    }
    .profile-modal > #profileContent { overflow: hidden; }
    .profile-scroll-area {
      flex: 1;
      min-height: 0;
      overflow-y: scroll;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;
    }
    /* Notch / Dynamic Island / Android status bar — push close button and hero below the safe zone */
    .profile-close { top: max(24px, calc(env(safe-area-inset-top) + 12px)); }
    .profile-hero { grid-template-columns: 1fr; gap: 20px; padding: max(52px, calc(env(safe-area-inset-top) + 20px)) 20px 20px; text-align: center; }
    .profile-photo { max-width: 160px; margin: 0 auto; }
    .profile-name { font-size: 24px; }
    .profile-tagline { font-size: 15px; }
    .profile-quickfacts { flex-wrap: wrap; }
    .profile-quickfact { min-width: 50%; border-bottom: 1px solid var(--line); padding: 16px 20px; }
    /* last-child = always last row; nth-last-child(2):nth-child(odd) = left item of a full last row (2 or 4 items).
       For odd totals (3, 5) the second-to-last is even-positioned — no match — row separator is preserved. */
    .profile-quickfact:last-child { border-bottom: none; }
    .profile-quickfact:nth-last-child(2):nth-child(odd) { border-bottom: none; }
    .profile-quickfact:nth-child(2n) { border-right: none; }
    .profile-body { padding: 20px; }
    .profile-section { margin-bottom: 24px; }
    /* Android nav bar + iPhone home indicator — env() now works because viewport-fit=cover is set */
    .profile-footer { padding: 16px 20px calc(20px + env(safe-area-inset-bottom)); flex-direction: column; align-items: stretch; flex-shrink: 0; }
    .profile-phone { justify-content: center; }
  }


  /* New manifesto blocks (v46 manifesto) */
  .mf-block-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 24px;
  }
  .mf-pullquote {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 26px !important;
    line-height: 1.3 !important;
    color: var(--ink) !important;
    margin: 24px 0 28px !important;
  }
  .mf-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
  }
  .mf-list li {
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink-700);
    padding: 10px 0 10px 24px;
    position: relative;
    border-bottom: 1px solid var(--line);
  }
  .mf-list li:last-child {
    border-bottom: none;
  }
  .mf-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
  }
  .mf-list-pillars li {
    font-size: 19px;
    padding: 14px 0 14px 24px;
  }
  .mf-list-pillars li::before {
    top: 24px;
  }

  @media (max-width: 720px) {
    .mf-pullquote { font-size: 21px !important; }
    .mf-list li { font-size: 16px; }
    .mf-list-pillars li { font-size: 17px; padding: 12px 0 12px 22px; }
  }


  /* Sl number + alias — shared */
  .candidate-sl {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--ink-500);
    margin-bottom: 1px;
  }
  .candidate-alias {
    font-size: 12px;
    color: var(--ink-500);
    font-weight: 400;
    margin-top: 1px;
    margin-bottom: 0;
    line-height: 1.2;
  }

  /* Top 4 posts — 4 columns, moderate density */
  .candidates-top4 .candidate-body {
    padding: 20px 22px;
  }
  .candidates-top4 .candidate-name {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 2px;
  }
  .candidates-top4 .candidate-role-tag {
    margin-bottom: 6px;
  }
  .candidates-top4 .candidate-meta {
    padding-top: 12px;
    gap: 7px;
  }
  .candidates-top4 .candidate-meta-row {
    font-size: 12.5px;
  }

  /* Committee — 5 columns, compact density */
  .candidates-committee .candidate-body {
    padding: 14px 16px;
  }
  .candidates-committee .candidate-sl {
    font-size: 11.5px;
    margin-bottom: 3px;
  }
  .candidates-committee .candidate-role-tag {
    margin-bottom: 4px;
  }
  .candidates-committee .candidate-name {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 1px;
  }
  .candidates-committee .candidate-alias {
    font-size: 11px;
    margin-bottom: 0;
  }
  .candidates-committee .candidate-meta {
    padding-top: 10px;
    gap: 5px;
  }
  .candidates-committee .candidate-meta-row {
    font-size: 11.5px;
    gap: 7px;
  }
  .candidates-committee .candidate-role-value {
    font-size: 13px;
  }

  .profile-sl-inline {
    font-size: 11px;
    font-weight: 500;
    color: var(--ink-500);
    letter-spacing: 0.02em;
  }
  .profile-alias {
    font-size: 14px;
    color: var(--ink-500);
    font-weight: 400;
    margin-top: 2px;
    margin-bottom: 4px;
  }

  .profile-footer-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .profile-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-500);
    background: var(--paper-3);
    border: 1px solid var(--line-strong);
    border-radius: 20px;
    padding: 5px 14px;
    cursor: pointer;
    transition: all 0.15s ease;
    letter-spacing: 0.01em;
  }
  .profile-share-btn:hover { background: var(--paper); color: var(--ink); border-color: var(--ink-500); }
  .profile-share-btn [data-lucide] { width: 13px; height: 13px; }
