@font-face {
  font-family: "SF Pro Campaign";
  src: url("./assets/fonts/sf-pro-display-400.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Campaign";
  src: url("./assets/fonts/sf-pro-display-600.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --ink: #0a0b0e;
  --muted: #5f6672;
  --line: #dfe3e8;
  --paper: #fbfcfd;
  --white: #ffffff;
  --cyan: #25d8ec;
  --violet: #6e4dff;
  --lime: #9cf044;
  --gradient: linear-gradient(110deg, #15d7e8 0%, #378df4 36%, #6d4dff 70%, #9cf044 100%);
  --apple-intelligence: linear-gradient(90deg, #3984c6 0%, #3582c5 10%, #5b76b9 20%, #856caf 30%, #a467aa 40%, #cc58a1 50%, #ed448f 60%, #ef4166 70%, #ef473f 80%, #ee3f28 90%, #ef4a0f 100%);
  --shell: min(1180px, calc(100% - 48px));
  --radius: 22px;
  --g2-panel-radius: 28px;
  --g2-control-radius: 18px;
  --shadow: 0 24px 70px rgba(17, 24, 39, .08);
  color: var(--ink);
  background: var(--paper);
  font-family: "SF Pro Campaign", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

html[data-theme="dark"] {
  --ink: #f4f7fa;
  --muted: #a2abb7;
  --line: #27313b;
  --paper: #0b1118;
  --white: #111a23;
  --shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; scroll-padding-bottom: 108px; }
body { min-width: 320px; margin: 0; background: var(--paper); color: var(--ink); font-size: 16px; font-weight: 400; line-height: 1.55; overflow-x: clip; }
button, a { font: inherit; }
a { color: inherit; }
button { border: 0; }
.glass-button { font-family: inherit; font-weight: 600; letter-spacing: -.02em; }

.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; z-index: 30; top: 12px; left: 12px; padding: 10px 14px; border-radius: 12px; color: var(--ink); background: var(--white); box-shadow: var(--shadow); transform: translateY(-160%); transition: transform .18s ease; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; z-index: 20; top: 0; border-bottom: 1px solid color-mix(in srgb, var(--line) 88%, transparent); background: color-mix(in srgb, var(--paper) 88%, transparent); backdrop-filter: blur(18px); }
.nav-shell { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: baseline; gap: 16px; text-decoration: none; white-space: nowrap; }
.brand-name, .footer-name { font-weight: 600; letter-spacing: -.03em; }
.brand-name { font-size: 20px; }
.brand-role { color: var(--muted); font-size: 14px; }
.site-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; }
.site-nav a, .footer-links a { text-decoration: none; }
.site-nav a { color: color-mix(in srgb, var(--ink) 82%, var(--muted)); }
.site-nav a:hover, .footer-links a:hover { color: var(--violet); }
.nav-vote { width: auto; }
.menu-toggle { display: none; align-items: center; gap: 10px; padding: 9px 0; color: var(--ink); background: transparent; font-size: 14px; cursor: pointer; }
.menu-icon { display: grid; gap: 4px; }
.menu-icon i { display: block; width: 18px; height: 1.5px; background: currentColor; }

.hero { min-height: min(780px, calc(100vh - 76px)); display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr); align-items: center; gap: clamp(48px, 8vw, 132px); padding-top: clamp(72px, 10vw, 138px); padding-bottom: clamp(64px, 9vw, 120px); }
.hero-copy { max-width: 680px; }
.section-kicker { margin: 0 0 18px; color: #6b7280; font-size: 12px; font-weight: 600; letter-spacing: .16em; line-height: 1.2; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 600; letter-spacing: -.045em; }
h1 { max-width: 740px; margin-bottom: 24px; font-size: clamp(70px, 11vw, 152px); line-height: .86; }
h2 { margin-bottom: 20px; font-size: clamp(44px, 6vw, 76px); line-height: .95; }
h3 { margin-bottom: 8px; font-size: 22px; line-height: 1.08; }
.gradient-text { background: var(--apple-intelligence); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-meta { margin-bottom: 22px; color: var(--ink); font-size: clamp(18px, 2vw, 24px); }
.hero-lede { max-width: 520px; margin-bottom: 34px; color: color-mix(in srgb, var(--ink) 76%, var(--muted)); font-size: clamp(19px, 2.2vw, 25px); line-height: 1.32; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-size: 16px; text-decoration: none; }
.text-link:hover { color: var(--violet); }
.text-link-strong { font-weight: 600; }
.prototype-note { margin: 28px 0 0; color: #88909c; font-size: 13px; }
.hero-vote { min-width: 172px; }

.intro-band { display: grid; grid-template-columns: 160px 1fr; gap: 40px; padding: 28px 0 30px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.intro-label { margin: 0; color: #6b7280; font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.intro-statement { max-width: 740px; margin: 0; font-size: clamp(24px, 3vw, 38px); font-weight: 600; letter-spacing: -.04em; line-height: 1.1; }

.section { padding-top: clamp(100px, 13vw, 180px); padding-bottom: clamp(100px, 13vw, 180px); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr); column-gap: clamp(40px, 8vw, 120px); align-items: end; padding-bottom: 52px; border-bottom: 1px solid var(--line); }
.section-heading .section-kicker { grid-column: 1 / -1; }
.section-heading h2 { max-width: 690px; margin-bottom: 0; }
.section-heading > p:last-child { max-width: 440px; margin-bottom: 0; color: var(--muted); font-size: 18px; line-height: 1.45; }
.signal-grid { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-bottom: 1px solid var(--line); }
.signal-grid::before { content: ""; position: absolute; z-index: 0; top: 52px; right: 21px; left: 21px; height: 2px; background: var(--gradient); opacity: .88; }
.signal-item { position: relative; z-index: 1; min-height: 230px; padding: 30px 24px 34px 0; border-right: 1px solid var(--line); }
.signal-item + .signal-item { padding-left: 24px; }
.signal-item:last-child { border-right: 0; }
.signal-number { display: grid; width: 44px; height: 44px; margin-bottom: 51px; place-items: center; border: 2px solid transparent; border-radius: 50%; color: var(--ink); background: linear-gradient(var(--paper), var(--paper)) padding-box, var(--gradient) border-box; font-size: 13px; font-weight: 600; letter-spacing: .08em; }
.signal-item h3 { margin-bottom: 10px; }
.signal-item p { max-width: 220px; margin-bottom: 0; color: var(--muted); font-size: 15px; line-height: 1.45; }
.privacy-row { display: grid; grid-template-columns: minmax(0, .9fr) minmax(280px, .7fr); gap: clamp(40px, 8vw, 120px); padding-top: 60px; }
.privacy-row h3 { font-size: clamp(30px, 4vw, 46px); }
.privacy-row > p { max-width: 460px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.45; }

.section-path { padding-top: 0; }
.path-heading { display: grid; grid-template-columns: .7fr 1fr; align-items: end; padding: 34px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.path-heading .section-kicker { margin-bottom: 0; }
.path-heading h2 { margin-bottom: 0; }
.path-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); padding: 0; margin: 0; list-style: none; }
.path-step { position: relative; min-height: 260px; padding: 30px 28px 30px 0; border-right: 1px solid var(--line); }
.path-step + .path-step { padding-left: 28px; }
.path-step:last-child { border-right: 0; }
.path-step::after { content: ""; position: absolute; top: 68px; left: 52px; right: -1px; height: 1px; background: var(--line); }
.path-step:last-child::after { display: none; }
.path-index { position: relative; z-index: 1; display: grid; width: 38px; height: 38px; margin-bottom: 65px; place-items: center; border: 1px solid #a9b0bb; border-radius: 50%; background: var(--paper); font-size: 15px; font-weight: 600; }
.path-step:nth-child(2) .path-index { border-color: #74a9ff; }
.path-step:nth-child(3) .path-index { border-color: var(--violet); }
.path-step:nth-child(4) .path-index { border-color: var(--lime); }
.path-step h3 { margin-bottom: 10px; }
.path-step p { max-width: 200px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.45; }

.why-section { padding-top: clamp(100px, 13vw, 180px); }
.why-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr); column-gap: clamp(40px, 8vw, 120px); align-items: end; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
.why-intro .section-kicker { grid-column: 1 / -1; }
.why-intro h2 { max-width: 660px; margin-bottom: 0; }
.why-intro-note { max-width: 460px; margin-bottom: 0; color: var(--muted); font-size: 18px; line-height: 1.45; }
.why-story { max-width: 840px; margin: clamp(58px, 8vw, 100px) auto 0; }
.why-story p { margin: 0 0 26px; color: var(--muted); font-size: clamp(18px, 2vw, 22px); line-height: 1.5; }
.why-story p:first-child { color: var(--ink); font-size: clamp(24px, 3vw, 36px); font-weight: 600; letter-spacing: -.03em; line-height: 1.16; }
.why-story em { color: var(--ink); font-style: italic; }
.why-story strong { color: var(--ink); font-weight: 600; }
.experience-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.experience-item { display: grid; grid-template-columns: 110px 1fr; gap: 22px; min-height: 160px; padding: 30px 30px 30px 0; border-bottom: 1px solid var(--line); }
.experience-item:nth-child(odd) { border-right: 1px solid var(--line); }
.experience-item:nth-child(even) { padding-left: 30px; }
.experience-label { color: #7b8390; font-size: 12px; font-weight: 600; letter-spacing: .13em; }
.experience-item h3 { font-size: 20px; }
.experience-item p { max-width: 310px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.45; }
.closing-quote { max-width: 940px; margin: clamp(90px, 12vw, 150px) auto 0; padding-left: clamp(24px, 5vw, 70px); border-left: 3px solid transparent; border-image: var(--gradient) 1; }
.closing-quote p { max-width: 900px; margin-bottom: 18px; font-size: clamp(28px, 4vw, 54px); font-weight: 600; letter-spacing: -.055em; line-height: 1.05; }
.closing-quote cite { color: var(--muted); font-size: 15px; font-style: normal; }

.feedback-section { display: grid; grid-template-columns: minmax(0, .85fr) minmax(320px, 1fr); gap: clamp(40px, 8vw, 120px); align-items: start; }
.feedback-heading { position: sticky; top: 120px; }
.feedback-heading h2 { margin-bottom: 26px; }
.feedback-heading > p { max-width: 420px; margin: 0 0 16px; color: var(--muted); font-size: 18px; line-height: 1.45; }
.feedback-heading .feedback-guidance { margin-bottom: 0; color: var(--ink); font-size: 16px; }
.feedback-form { display: grid; gap: 22px; padding: clamp(24px, 4vw, 42px); border: 1px solid var(--line); border-radius: var(--g2-panel-radius); corner-shape: squircle; background: color-mix(in srgb, var(--white) 76%, transparent); box-shadow: var(--shadow); }
.form-row { display: grid; gap: 9px; }
.form-row label { color: var(--ink); font-size: 15px; font-weight: 600; }
.form-row label span { color: var(--violet); }
.form-row label .optional { color: var(--muted); font-size: 13px; font-weight: 400; }
.form-row input, .form-row textarea { width: 100%; border: 1px solid color-mix(in srgb, var(--muted) 38%, var(--line)); border-radius: var(--g2-control-radius); corner-shape: squircle; padding: 14px 15px; color: var(--ink); background: color-mix(in srgb, var(--paper) 86%, var(--white)); font-family: inherit; font-size: 16px; font-weight: 400; line-height: 1.45; outline: none; }
.form-row textarea { min-height: 138px; resize: vertical; }
.form-row input::placeholder, .form-row textarea::placeholder { color: color-mix(in srgb, var(--muted) 72%, transparent); }
.form-row input:focus, .form-row textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px color-mix(in srgb, var(--cyan) 22%, transparent); }
.privacy-check { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 14px; line-height: 1.35; cursor: pointer; }
.privacy-check input { width: 18px; height: 18px; margin: 0; accent-color: var(--violet); }
.form-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.feedback-submit { min-width: 190px; }
.feedback-status { min-height: 24px; margin: 0; color: #58d27e; font-size: 14px; }

.more-section { padding-top: 0; }
.more-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr); column-gap: clamp(40px, 8vw, 120px); align-items: end; padding: 34px 0 48px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.more-intro .section-kicker { grid-column: 1 / -1; }
.more-intro h2 { max-width: 660px; margin-bottom: 0; }
.more-intro > p:last-child { max-width: 460px; margin-bottom: 0; color: var(--muted); font-size: 18px; line-height: 1.45; }
.more-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; padding-top: 24px; }
.more-card { min-height: 260px; padding: 28px; border: 1px solid var(--line); border-radius: var(--g2-panel-radius); corner-shape: squircle; background: color-mix(in srgb, var(--white) 70%, transparent); }
.more-card-label { margin-bottom: 28px; color: #7b8390; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.more-card h3 { margin-bottom: 16px; font-size: 25px; }
.more-card p { margin-bottom: 14px; color: var(--muted); font-size: 16px; line-height: 1.5; }
.more-card p:last-child { margin-bottom: 0; }
.more-card em { color: var(--ink); }
.more-link { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; border-top: 1px solid var(--line); color: var(--ink); font-size: 15px; font-weight: 600; text-decoration: none; }
.more-link:first-of-type { margin-top: 24px; }
.more-link:hover { color: #8ee6a6; }
.more-note { padding-top: 12px; border-top: 1px solid var(--line); font-size: 14px !important; }

.support-section { position: relative; background: linear-gradient(120deg, rgba(37, 216, 236, .18), rgba(110, 77, 255, .11) 48%, rgba(156, 240, 68, .18)); }
.support-section::before { content: ""; position: absolute; inset: 1px 0 0; background: rgba(255, 255, 255, .72); }
.support-inner { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr); gap: clamp(40px, 8vw, 120px); align-items: center; padding-top: clamp(70px, 9vw, 120px); padding-bottom: clamp(70px, 9vw, 120px); }
.support-inner h2 { margin-bottom: 0; font-size: clamp(48px, 7vw, 90px); }
.support-action { max-width: 430px; }
.support-action > p:first-child { margin-bottom: 24px; color: #4e5662; font-size: 18px; line-height: 1.45; }
.support-action > p:first-child { color: var(--muted); }
.support-vote { min-width: 200px; }
.support-status { min-height: 24px; margin: 18px 0 0; color: #20743c; font-size: 14px; }

.site-footer { background: #05080c; color: #f5f7f9; }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: center; min-height: 140px; padding-top: 24px; padding-bottom: 24px; font-size: 13px; }
.footer-inner > div:first-child { display: flex; flex-direction: column; gap: 4px; color: #8c949f; }
.footer-name { color: #f5f7f9; font-size: 20px; }
.footer-links { display: flex; gap: 22px; color: #c9ced5; }
.footer-inner > p { justify-self: end; margin: 0; color: #8c949f; text-align: right; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 860px) {
  :root { --shell: min(100% - 36px, 720px); }
  .nav-shell { min-height: 68px; }
  .brand { gap: 10px; }
  .brand-role { font-size: 12px; }
  .menu-toggle { display: inline-flex; }
  .site-nav { position: absolute; top: 68px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 18px 18px; border-bottom: 1px solid var(--line); background: rgba(251, 252, 253, .97); box-shadow: 0 20px 40px rgba(17, 24, 39, .06); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-vote { margin-top: 14px; }
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 64px; padding-top: 86px; }
  .section-heading, .why-intro { grid-template-columns: 1fr; gap: 24px; }
  .section-heading .section-kicker, .why-intro .section-kicker { grid-column: auto; }
  .section-heading > p:last-child, .why-intro > p:last-child { max-width: 560px; }
  .signal-grid, .path-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .signal-item:nth-child(2) { border-right: 0; }
  .signal-item:nth-child(3), .signal-item:nth-child(4) { border-top: 1px solid var(--line); }
  .signal-item:nth-child(3) { padding-left: 0; }
  .signal-item:nth-child(4) { padding-left: 24px; }
  .path-step:nth-child(2) { border-right: 0; }
  .path-step:nth-child(3), .path-step:nth-child(4) { border-top: 1px solid var(--line); }
  .path-step:nth-child(3) { padding-left: 0; }
  .path-step:nth-child(4) { padding-left: 28px; }
  .path-step:nth-child(2)::after, .path-step:nth-child(4)::after { display: none; }
  .privacy-row, .support-inner, .feedback-section { grid-template-columns: 1fr; gap: 26px; }
  .feedback-heading { position: static; }
  .footer-inner { grid-template-columns: 1fr auto; }
  .footer-links { grid-column: 1 / -1; grid-row: 2; }
  .footer-inner > p { grid-column: 2; grid-row: 1; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 32px); }
  body { font-size: 16px; }
  .brand-role { display: none; }
  h1 { max-width: 330px; font-size: clamp(62px, 19vw, 98px); line-height: .87; }
  h2 { font-size: clamp(42px, 13vw, 62px); }
  .hero { gap: 48px; padding-top: 66px; padding-bottom: 80px; }
  .hero-meta { font-size: 18px; }
  .hero-lede { font-size: 20px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-vote { width: 100%; }
  .intro-band { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; }
  .intro-statement { font-size: 30px; }
  .section { padding-top: 88px; padding-bottom: 88px; }
  .section-heading { padding-bottom: 34px; }
  .section-heading > p:last-child, .privacy-row > p, .why-intro > p:last-child, .support-action > p:first-child { font-size: 17px; }
  .signal-grid, .path-list, .experience-list { grid-template-columns: 1fr; }
  .signal-item, .signal-item + .signal-item { min-height: 0; padding: 26px 0; border-right: 0; border-top: 1px solid var(--line); }
  .signal-item:first-child { border-top: 0; }
  .signal-number { margin-bottom: 28px; }
  .signal-item p { max-width: 320px; }
  .path-heading { grid-template-columns: 1fr; gap: 12px; }
  .path-heading .section-kicker { margin-bottom: 0; }
  .path-step, .path-step + .path-step { min-height: 0; display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 26px 0; border-right: 0; border-top: 1px solid var(--line); }
  .path-step:first-child { border-top: 0; }
  .path-index { margin: 0; }
  .path-step::after { top: 64px; left: 18px; right: auto; width: 1px; height: calc(100% - 26px); }
  .path-step:last-child::after { display: none; }
  .path-step h3 { margin-top: 2px; }
  .experience-item, .experience-item:nth-child(even) { grid-template-columns: 1fr; gap: 10px; min-height: 0; padding: 26px 0; border-right: 0; }
  .experience-item:first-child { border-top: 0; }
  .experience-label { font-size: 11px; }
  .closing-quote { margin-top: 80px; padding-left: 20px; }
  .closing-quote p { font-size: 32px; }
  .support-inner { padding-top: 70px; padding-bottom: 70px; }
  .support-inner h2 { font-size: 56px; }
  .support-vote { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; gap: 22px; padding-top: 34px; padding-bottom: 34px; }
  .footer-links { grid-column: auto; grid-row: auto; flex-wrap: wrap; }
  .footer-inner > p { grid-column: auto; grid-row: auto; justify-self: start; text-align: left; }
}

html[data-theme="dark"] .site-nav { background: rgba(11, 17, 24, .97); box-shadow: 0 20px 40px rgba(0, 0, 0, .24); }
html[data-theme="dark"] .support-section::before { background: rgba(11, 17, 24, .78); }
html[data-theme="dark"] .support-section { background: linear-gradient(120deg, rgba(37, 216, 236, .16), rgba(110, 77, 255, .18) 48%, rgba(156, 240, 68, .12)); }
html[data-theme="dark"] .support-status { color: #8ee6a6; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (forced-colors: active) {
  .gradient-text { color: CanvasText; background: none; }
  .support-section, .support-section::before { background: Canvas; }
}

/* Campaign promise rail: a quieter replacement for the old decorative wordmark. */
.hero-rail {
  position: relative;
  min-height: 430px;
  padding: clamp(28px, 4vw, 52px) 0 0 clamp(28px, 5vw, 72px);
  border-left: 1px solid color-mix(in srgb, var(--ink) 76%, transparent);
}
.hero-rail::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2px;
  width: 4px;
  height: 58%;
  background: var(--gradient);
  border-radius: 999px;
}
.hero-rail-kicker {
  margin: 0 0 14px;
  color: #7f8997;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-rail-title {
  max-width: 360px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .98;
}
.hero-rail-list {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 390px;
  padding: 34px 0 0;
  margin: 0;
  list-style: none;
}
.hero-rail-list::before {
  content: "";
  position: absolute;
  top: 49px;
  bottom: 32px;
  left: 20px;
  width: 1px;
  background: var(--gradient);
  opacity: .8;
}
.hero-rail-list li {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 72px;
}
.hero-rail-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid transparent;
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(var(--paper), var(--paper)) padding-box, var(--gradient) border-box;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
}
.hero-rail-list strong {
  display: block;
  margin: 2px 0 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}
.hero-rail-list small {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.read-plan-button { min-width: 168px; text-decoration: none; }

/* Vote interaction: press in, confirm in green, then settle into a calm green-grey state. */
.glass-button[data-vote-button] {
  transform-origin: center;
  will-change: transform, filter, background-color;
}
.glass-button[data-vote-button].is-voting,
.glass-button[data-vote-button].is-confirmed {
  background-image: none !important;
  color: #f4fff8 !important;
  border-radius: 999px;
  corner-shape: squircle;
}
.glass-button[data-vote-button].is-voting {
  background-color: #20b96c !important;
  filter: drop-shadow(0 4px 10px rgba(32, 185, 108, .28)) !important;
  animation: vote-press-in .36s cubic-bezier(.22, 1.3, .36, 1) both;
}
.glass-button[data-vote-button].is-confirmed {
  background-color: #20b96c !important;
  filter: drop-shadow(0 7px 14px rgba(32, 185, 108, .28)) !important;
  animation: vote-confirm-bounce .7s cubic-bezier(.2, .9, .25, 1.25) both;
}
.glass-button[data-vote-button][data-vote-state="recorded"] {
  min-height: 44px;
  height: 44px;
  padding-inline: 20px;
  border: 1px solid #547b65;
  border-radius: 999px;
  corner-shape: squircle;
  background-color: #315845 !important;
  background-image: none !important;
  color: #bce8ca !important;
  filter: drop-shadow(0 4px 9px rgba(28, 66, 46, .22)) !important;
  cursor: default;
  animation: vote-settle .4s cubic-bezier(.2, .9, .25, 1.2) both;
}
.vote-check {
  display: inline-grid;
  width: 1.18em;
  height: 1.18em;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: .78em;
  font-weight: 600;
  line-height: 1;
  animation: vote-check-pop .4s cubic-bezier(.2, 1.45, .35, 1) both;
}
@keyframes vote-press-in {
  0% { transform: scale(1); }
  45% { transform: scale(.91); }
  76% { transform: scale(.96); }
  100% { transform: scale(.94); }
}
@keyframes vote-confirm-bounce {
  0% { transform: scale(.94); }
  42% { transform: scale(1.045); }
  72% { transform: scale(.985); }
  100% { transform: scale(1); }
}
@keyframes vote-settle {
  0% { transform: scale(.985); }
  55% { transform: scale(1.015); }
  100% { transform: scale(1); }
}
@keyframes vote-check-pop {
  0% { opacity: 0; transform: scale(.45) rotate(-14deg); }
  72% { opacity: 1; transform: scale(1.12) rotate(4deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

.mobile-bottom-nav { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 861px) {
  .glass-button:not([data-vote-state="recorded"]):hover {
    transform: translateY(-3px) scale(1.025);
    filter: drop-shadow(0 10px 14px rgba(0, 0, 0, .22)) drop-shadow(0 0 5px rgba(255, 255, 255, .24));
  }
}

@media (max-width: 860px) {
  .hero-rail { min-height: 330px; }
  .signal-grid::before { display: none; }
  .more-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .site-nav,
  .site-nav.is-open,
  .menu-toggle { display: none; }
  .mobile-bottom-nav {
    position: fixed;
    z-index: 25;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 12px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    padding: 7px;
    border: 1px solid color-mix(in srgb, var(--line) 92%, transparent);
    border-radius: 26px;
    corner-shape: squircle;
    background: rgba(17, 26, 35, .9);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .06);
    backdrop-filter: blur(20px) saturate(1.1);
  }
  .mobile-bottom-nav a {
    display: grid;
    min-height: 50px;
    place-items: center;
    border-radius: 18px;
    corner-shape: squircle;
    color: #7e8997;
    text-decoration: none;
    transition: color .18s ease, background-color .18s ease, transform .18s ease;
  }
  .mobile-bottom-nav a:active { transform: scale(.92); }
  .mobile-bottom-nav a[aria-current="location"] {
    color: var(--ink);
    background: color-mix(in srgb, var(--white) 82%, transparent);
  }
  .mobile-nav-icon { display: grid; place-items: center; }
  .mobile-nav-icon svg {
    width: 21px;
    height: 21px;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  main { padding-bottom: 100px; }
  .hero-rail {
    min-height: 0;
    padding: 26px 0 0 30px;
  }
  .hero-rail::before { height: 52%; }
  .hero-rail-title { max-width: 300px; font-size: 39px; }
  .hero-rail-list { padding-top: 30px; }
  .hero-rail-list::before { top: 45px; bottom: 28px; }
  .hero-rail-list li { grid-template-columns: 38px 1fr; gap: 14px; min-height: 68px; }
  .hero-rail-number { width: 38px; height: 38px; }
  .hero-rail-list strong { font-size: 12px; }
  .hero-rail-list small { font-size: 14px; }
  .more-intro { grid-template-columns: 1fr; gap: 24px; }
  .more-intro .section-kicker { grid-column: auto; }
  .signal-grid {
    grid-template-columns: 1fr;
    padding-left: 60px;
  }
  .signal-grid::before {
    display: block;
    top: 35px;
    right: auto;
    bottom: 35px;
    left: 20px;
    width: 2px;
    height: auto;
  }
  .signal-item,
  .signal-item + .signal-item {
    position: relative;
    min-height: 0;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-right: 0;
  }
  .signal-item:first-child { border-top: 0; }
  .signal-number {
    position: absolute;
    top: 26px;
    left: -60px;
    width: 42px;
    height: 42px;
    margin: 0;
  }
  .signal-item p { max-width: 320px; }
  .more-grid { grid-template-columns: 1fr; }
  .more-card { min-height: 0; }
  .glass-button[data-vote-button][data-vote-state="recorded"] { width: 100%; }
}

@media (forced-colors: active) {
  .hero-rail::before { background: CanvasText; }
  .mobile-bottom-nav { background: Canvas; border-color: CanvasText; }
}
