@import url('https://api.fontshare.com/v2/css?f[]=switzer@400,500,600,700&display=swap');

:root {
  --canvas-white: #ffffff;
  --ebony: #000000;
  --sky-blue: #006aff;
  --horizon-gray: #dce2ea;
  --cloud-cover: #f9fafb;
  --ghost-bg: #eff2f6;
  --slate-text: #405168;
  --steel-icon: #667b99;
  --icon-gray: #8798b0;
  --blue-tint: #dce6ff;
  --img-portrait: url('https://static.gumbo.design/workspaces/48c80113-1a77-4743-8a76-8f67a3a71f80/d053a3ab-b347-4360-98a5-dc32458cf061/5f034031-85f3-4d14-8f18-82ca9cee341f/_generated/ai-images/design_01f9e168c8c3b62f.png');
  --img-hallway: url('https://static.gumbo.design/workspaces/48c80113-1a77-4743-8a76-8f67a3a71f80/d053a3ab-b347-4360-98a5-dc32458cf061/5f034031-85f3-4d14-8f18-82ca9cee341f/_generated/ai-images/design_3d504f25f420871c.png');
}

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

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  font-family: 'Switzer', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--canvas-white);
  color: var(--ebony);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 88px;
  background: var(--canvas-white);
  border-bottom: 1px solid var(--horizon-gray);
}
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  height: 88px;
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--ebony);
}
.nav { display: flex; align-items: center; gap: 38px; }
.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--ebony);
}
.nav-link:hover { color: var(--sky-blue); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-pill-sm {
  height: 39px;
  padding: 0 24px;
  background: var(--sky-blue);
  color: #fff;
  font-size: 15px;
}
.btn-pill-sm:hover { background: #0057d6; }
.btn-primary {
  height: 56px;
  padding: 0 38px;
  background: var(--sky-blue);
  color: #fff;
  font-size: 17px;
}
.btn-primary:hover { background: #0057d6; }
.btn-secondary {
  height: 56px;
  padding: 0 36px;
  background: var(--ghost-bg);
  color: var(--ebony);
  font-size: 17px;
}
.btn-secondary:hover { background: #e3e8ef; }

/* ---------- HERO ---------- */
.hero { background: var(--canvas-white); }
.hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px 64px 112px;
  display: grid;
  grid-template-columns: 1fr 537px;
  gap: 64px;
  align-items: start;
}
.eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--sky-blue);
  margin-bottom: 22px;
}
.hero-title {
  font-size: 108px;
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: -3.5px;
  color: var(--ebony);
}
.hero-lede {
  margin-top: 28px;
  max-width: 360px;
  font-size: 21px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--slate-text);
}
.hero-actions { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }

.hero-figure { position: relative; width: 537px; height: 672px; }
.hero-figure-shadow {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 537px;
  height: 672px;
  background: var(--sky-blue);
  border-radius: 20px;
}
.hero-figure-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 537px;
  height: 672px;
  border-radius: 20px;
  background-image: var(--img-portrait);
  background-size: cover;
  background-position: 50% 50%;
}

/* ---------- PLATFORM ---------- */
.platform { background: var(--cloud-cover); }
.section-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 88px 64px 91px;
}
.section-title {
  font-size: 64px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--ebony);
}
.section-sub {
  margin-top: 14px;
  max-width: 540px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--slate-text);
}
.platform-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 24px;
}
.card {
  border-radius: 16px;
  padding: 40px;
  min-height: 240px;
}
.card-blue { background: var(--sky-blue); }
.card-light { background: var(--canvas-white); border: 1px solid var(--horizon-gray); }
.card-num {
  display: block;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
.card-num-blue { color: var(--sky-blue); }
.card-title {
  margin-top: 16px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #fff;
}
.card-title-dark { color: var(--ebony); }
.card-body {
  margin-top: 10px;
  max-width: 480px;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--blue-tint);
}
.card-body-dark { color: var(--slate-text); }

/* ---------- ABOUT / WHY ME ---------- */
.about { background: var(--canvas-white); }
.about-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px 64px 96px;
  display: grid;
  grid-template-columns: 565px 1fr;
  gap: 56px;
  align-items: start;
}
.about-figure {
  width: 565px;
  height: 706px;
  border-radius: 20px;
  background-image: var(--img-hallway);
  background-size: cover;
  background-position: 50% 50%;
}
.about-copy { padding-top: 8px; }
.about-para {
  margin-top: 24px;
  max-width: 510px;
  font-size: 19px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--slate-text);
}
.text-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 17px;
  font-weight: 700;
  color: var(--sky-blue);
}
.text-link:hover { color: #0057d6; }

/* ---------- PLEDGE ---------- */
.pledge { background: var(--sky-blue); }
.pledge-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 104px 64px 110px;
  text-align: center;
}
.pledge-title {
  margin: 0 auto;
  max-width: 720px;
  font-size: 80px;
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -2.5px;
  color: #fff;
}
.pledge-sub {
  margin: 24px auto 0;
  max-width: 520px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--blue-tint);
}
.pledge-form {
  margin: 44px auto 0;
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 560px;
}
.pledge-input {
  flex: 1;
  height: 56px;
  border: none;
  border-radius: 999px;
  background: #fff;
  padding: 0 28px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 500;
  color: var(--ebony);
  outline: none;
}
.pledge-input::placeholder { color: var(--icon-gray); }
.pledge-input.input-error { box-shadow: 0 0 0 2px #ffd2d2; }
.pledge-submit {
  height: 56px;
  padding: 0 32px;
  border: none;
  border-radius: 999px;
  background: #fff;
  color: var(--sky-blue);
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}
.pledge-submit:hover { background: #f0f4ff; }
.pledge-feedback {
  margin: 20px auto 0;
  min-height: 22px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

/* ---------- HOW TO VOTE ---------- */
.how { background: var(--canvas-white); }
.how-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 88px 64px 96px;
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 208px;
  align-items: start;
}
.how-para {
  margin-top: 20px;
  max-width: 446px;
  font-size: 19px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--slate-text);
}
.steps { list-style: none; }
.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  padding: 28px 0;
  border-bottom: 1px solid var(--horizon-gray);
}
.step-last { border-bottom: none; }
.step-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--sky-blue);
}
.step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ebony);
}
.step-body {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--slate-text);
}

/* ---------- FOOTER ---------- */
.site-footer { background: var(--ebony); }
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 72px 64px 64px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.footer-name {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #fff;
}
.footer-tag {
  margin-top: 14px;
  max-width: 320px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--icon-gray);
}
.footer-cols { display: flex; gap: 78px; }
.footer-col { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer-col a {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.footer-col a:hover { color: var(--blue-tint); }
.footer-divider {
  height: 1px;
  background: #2a2a2a;
  margin: 48px 0 29px;
}
.footer-fine {
  font-size: 14px;
  font-weight: 500;
  color: var(--steel-icon);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1200px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-figure, .hero-figure-shadow, .hero-figure-img { width: 100%; max-width: 537px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-figure { width: 100%; max-width: 565px; height: auto; aspect-ratio: 565 / 706; }
  .how-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 760px) {
  .header-inner, .hero-inner, .section-inner, .about-inner, .pledge-inner, .how-inner, .footer-inner {
    padding-left: 24px; padding-right: 24px;
  }
  .nav { gap: 16px; }
  .nav-link { display: none; }
  .hero-title { font-size: 60px; letter-spacing: -2px; }
  .hero-lede { font-size: 18px; }
  .section-title { font-size: 42px; letter-spacing: -1.5px; }
  .platform-grid { grid-template-columns: 1fr; }
  .pledge-title { font-size: 46px; letter-spacing: -1.5px; }
  .pledge-form { flex-direction: column; }
  .footer-top { flex-direction: column; gap: 36px; }
  .footer-cols { gap: 56px; }
}
