:root {
  --blue-bright: #076BF5;
  --blue-dark: #0054C7;
  --yellow: #FFD20A;
  --bg: #FAF9F7;
  --tint: #F3F8FF;
  --text: #252525;
  --border: #E4E4E4;
  --font-body: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue-dark); }
a:hover { color: var(--blue-bright); }

img { max-width: 100%; display: block; }

/* Condensed-bold display style without loading a web font */
.display {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  display: inline-block;
  transform: scaleX(0.92);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 2px;
}

/* ---------- Header / hero curve ---------- */
.hero {
  position: relative;
  background: var(--blue-bright);
  height: 168px;
}

.hero__curve {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 56px;
  display: block;
}

.hero__logo-wrap {
  position: absolute;
  left: 50%;
  top: 112px;
  width: 96px;
  height: 96px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 0 0 7px var(--bg);
  z-index: 2;
}

.hero__logo { width: 100%; height: 100%; }

/* ---------- Panel (transparent shell on mobile) ---------- */
.panel {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 72px;
}

.panel__grid { display: block; }

.col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.col--donate { padding-top: 56px; }

.col--donate h1 {
  font-size: 31px;
  color: var(--blue-dark);
  margin: 0 0 14px;
}

.lede {
  max-width: 290px;
  margin: 0 0 28px;
  font-size: 16px;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  font-weight: 700;
}

.btn--primary {
  width: 100%;
  max-width: 295px;
  height: 52px;
  background: var(--blue-dark);
  color: #fff;
  font-size: 17px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.btn--primary:hover { background: var(--blue-bright); color: #fff; }
.btn--primary svg { flex-shrink: 0; }

/* benefits — hidden on mobile to keep the page short */
.benefits { display: none; }

.col--makenza {
  margin-top: 108px;
  position: relative;
}

.watermark { display: none; }

.portrait {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
}

.follow { font-size: 17px; margin: 0 0 6px; }
.follow .display { color: var(--blue-dark); font-size: 19px; margin-left: 4px; }

.col--makenza p.sub {
  max-width: 260px;
  margin: 0 0 22px;
  font-size: 15px;
}

.social {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 238px;
}

.btn--social {
  height: 42px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  color: var(--text);
  font-size: 14px;
  padding: 0 16px;
  position: relative;
}
.btn--social:hover { border-color: var(--blue-bright); color: var(--text); }
.btn--social img { width: 22px; height: 22px; }
.btn--social .chevron { position: absolute; right: 14px; }

/* ---------- Desktop ---------- */
@media (min-width: 900px) {
  .hero { height: 228px; }
  .hero__curve { height: 78px; }
  .hero__logo-wrap { width: 114px; height: 114px; top: 150px; }

  .panel {
    max-width: 1160px;
    margin: -30px auto 0;
    padding: 0 24px 96px;
  }

  .panel__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: 0 24px 48px -24px rgba(0, 84, 199, 0.16);
    overflow: hidden;
  }

  .col--donate {
    align-items: center;
    text-align: center;
    padding: 64px 60px;
    background: var(--tint);
  }
  .col--donate h1 { font-size: 52px; margin: 0 0 24px; }
  .lede { max-width: 400px; font-size: 17px; }
  .btn--primary { max-width: 360px; height: 60px; font-size: 18px; }

  .benefits { display: block; margin-top: 44px; width: 100%; }

  .benefits__heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
  }
  .benefits__heading .rule { width: 26px; height: 1px; flex-shrink: 0; background: var(--yellow); }
  .benefits__heading h2 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--blue-dark);
    text-align: center;
    text-wrap: balance;
  }

  .benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .benefit { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .benefit img { margin-bottom: 14px; }
  .benefit h3 { margin: 0 0 6px; font-size: 16px; font-weight: 700; color: var(--blue-dark); }
  .benefit p { margin: 0; font-size: 14px; color: var(--text); }

  .col--makenza {
    margin-top: 0;
    padding: 64px 56px;
    align-items: center;
    border-left: 1px solid rgba(0, 84, 199, 0.10);
    overflow: hidden;
  }

  .watermark {
    display: block;
    position: absolute;
    top: -40px;
    right: -80px;
    width: 340px;
    height: 340px;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
  }

  .col--makenza .portrait,
  .col--makenza .follow,
  .col--makenza p.sub,
  .col--makenza .social {
    position: relative;
    z-index: 1;
  }

  .portrait { width: 182px; height: 182px; }
  .social { max-width: 305px; }
  .btn--social { height: 46px; }
}

