@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700;800;900&display=swap");

:root {
  color-scheme: light;
  --bg: #f3f8ff;
  --ink: #05070b;
  --muted: #738294;
  --blue: #2f86ff;
  --panel: #ffffff;
  --shadow: 0 30px 70px rgba(38, 54, 76, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  min-width: 320px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-optical-sizing: auto;
  letter-spacing: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 46px 0 52px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.mini-logo {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
}

.mini-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 58px;
  color: #05070b;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--blue);
}

.globe {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 38px;
  border: 2.5px solid #8392a2;
  border-radius: 50%;
}

.globe::before,
.globe::after {
  position: absolute;
  content: "";
  border-color: #8392a2;
}

.globe::before {
  inset: 5px 11px;
  border-right: 2px solid #8392a2;
  border-left: 2px solid #8392a2;
  border-radius: 50%;
}

.globe::after {
  top: 50%;
  left: 4px;
  width: 26px;
  border-top: 2px solid #8392a2;
  transform: translateY(-50%);
}

.brand-hero {
  display: grid;
  justify-items: center;
  margin-top: 70px;
  text-align: center;
}

.brand-mark {
  width: 178px;
  height: auto;
  object-fit: contain;
}

.brand-word {
  margin-top: 9px;
  color: var(--blue);
  font-size: 70px;
  font-weight: 700;
  line-height: 0.92;
}

.page-kicker {
  margin-top: 10px;
  color: #05070b;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.hero-title {
  max-width: 760px;
  margin: 62px auto 0;
  color: #05070b;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.16;
  text-align: center;
}

.hero-title em {
  font-style: italic;
  font-weight: inherit;
}

.support-summary {
  margin: 92px auto 44px;
  padding: 50px 58px 48px;
  border-radius: 26px;
  background: var(--panel);
  box-shadow: var(--shadow);
  text-align: center;
}

.summary-text {
  max-width: 1080px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.24;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 9px;
  background: var(--blue);
  color: #ffffff;
  font-size: 21px;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(47, 134, 255, 0.28);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 36px;
}

.card {
  min-height: 382px;
  padding: 34px 32px;
  border-radius: 12px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.card.wide {
  grid-column: 1 / -1;
  min-height: 232px;
}

.card h2,
.contact-card h2 {
  margin: 0;
  color: #05070b;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.18;
}

.card h3 {
  margin: 7px 0 39px;
  color: var(--muted);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.card p,
.card li {
  color: var(--muted);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.55;
}

.card ul {
  margin: 0;
  padding-left: 20px;
}

.card p {
  margin: 0 0 26px;
}

.card p:last-child {
  margin-bottom: 0;
}

.card a {
  color: var(--blue);
  font-weight: 600;
}

.contact-card {
  margin-top: 34px;
  padding: 34px 40px 36px;
  border-radius: 12px;
  background: var(--panel);
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-card h2 {
  margin-bottom: 32px;
}

.contact-card p {
  max-width: 860px;
  margin: 0 auto 22px;
  color: var(--muted);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.45;
}

.email-link {
  display: block;
  margin: 0 0 5px;
  color: var(--blue);
  font-size: 31px;
  font-weight: 700;
  line-height: 1.2;
}

.small-note {
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-top: 49px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
}

.footer p {
  margin: 0;
}

.footer a {
  color: inherit;
}

.footer a:hover {
  color: var(--blue);
}

.footer p:last-child {
  text-align: right;
}

.placeholder {
  min-height: 54vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.placeholder h1 {
  margin: 0 0 14px;
  font-size: 52px;
}

.placeholder p {
  margin: 0;
  color: var(--muted);
  font-size: 22px;
  font-weight: 500;
}

.about-brand {
  margin-top: 72px;
}

.about-page {
  text-align: center;
}

.about-page > section,
.about-page > h1,
.about-page > p {
  margin-left: auto;
  margin-right: auto;
}

.about-tagline {
  max-width: 980px;
  margin: 62px auto 0;
  color: #05070b;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.18;
  text-align: center;
}

.about-copy {
  max-width: 910px;
  margin: 74px auto 0;
  text-align: center;
}

.about-copy h2,
.about-follow h2 {
  margin: 0 0 22px;
  color: #05070b;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
}

.about-copy p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.22;
  text-align: center;
  text-wrap: balance;
}

.about-copy.goal {
  max-width: 850px;
}

.about-copy.voice {
  max-width: 880px;
}

.about-join {
  max-width: 700px;
  margin-top: 42px !important;
}

.about-follow {
  margin-top: 70px;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.social-icon {
  display: inline-flex;
  width: 66px;
  height: 66px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  line-height: 1;
}

.social-icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0;
}

.social-icon svg rect,
.social-icon svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.about-disclaimer {
  max-width: 1120px;
  margin: 46px auto 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.95;
  text-align: center;
  text-wrap: balance;
}

.about-help-card {
  width: min(940px, 100%);
  margin: 42px auto 0;
  padding: 28px 40px 34px;
  border-radius: 12px;
  background: var(--panel);
  box-shadow: var(--shadow);
  text-align: center;
}

.about-help-card h2 {
  margin: 0 0 28px;
  color: #05070b;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}

.about-help-card p {
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
}

.founder {
  margin-top: 48px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.founder p {
  margin: 0;
}

.founder strong {
  display: block;
  font-weight: 600;
}

.privacy-page {
  text-align: center;
}

.privacy-title {
  max-width: 880px;
}

.policy-lede {
  max-width: 950px;
  margin: 52px auto 0;
  color: var(--muted);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.24;
  text-align: center;
  text-wrap: balance;
}

.policy-grid {
  margin-top: 62px;
}

.policy-card {
  min-height: 330px;
  text-align: left;
}

.policy-card.tall {
  min-height: 430px;
}

.policy-card h2,
.policy-choice-card h2 {
  margin-bottom: 34px;
}

.policy-choice-card {
  width: min(720px, 100%);
  min-height: 225px;
  margin: 34px auto 0;
  text-align: left;
}

.policy-help {
  margin-top: 50px;
  text-align: center;
}

.policy-help h2 {
  margin: 0 0 24px;
  color: #05070b;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.18;
}

@media (min-width: 901px) {
  .page {
    width: min(831px, calc(100% - 32px));
    padding: 31px 0 35px;
  }

  .topbar {
    gap: 20px;
  }

  .mini-logo {
    width: 36px;
    height: 36px;
  }

  .mini-logo img {
    width: 29px;
    height: 29px;
  }

  .nav {
    gap: 39px;
    font-size: 15px;
  }

  .nav a {
    min-height: 28px;
  }

  .globe {
    width: 25px;
    height: 25px;
    border-width: 1.7px;
  }

  .globe::before {
    inset: 3px 7px;
    border-right-width: 1.4px;
    border-left-width: 1.4px;
  }

  .globe::after {
    left: 3px;
    width: 17px;
    border-top-width: 1.4px;
  }

  .brand-hero {
    margin-top: 47px;
  }

  .brand-mark {
    width: 119px;
  }

  .brand-word {
    margin-top: 6px;
    font-size: 47px;
  }

  .page-kicker {
    margin-top: 7px;
    font-size: 17px;
  }

  .hero-title {
    max-width: 509px;
    margin-top: 42px;
    font-size: 35px;
  }

  .support-summary {
    margin: 62px auto 30px;
    padding: 34px 39px 32px;
    border-radius: 17px;
  }

  .summary-text {
    max-width: 724px;
    margin-bottom: 21px;
    font-size: 20px;
  }

  .button {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 6px;
    font-size: 14px;
    box-shadow: 0 7px 15px rgba(47, 134, 255, 0.28);
  }

  .cards {
    gap: 21px 24px;
  }

  .card {
    min-height: 256px;
    padding: 23px 21px;
    border-radius: 8px;
  }

  .card.wide {
    min-height: 155px;
  }

  .card h2,
  .contact-card h2 {
    font-size: 20px;
  }

  .card h3 {
    margin: 5px 0 26px;
    font-size: 15px;
  }

  .card p,
  .card li {
    font-size: 13px;
  }

  .card ul {
    padding-left: 13px;
  }

  .card p {
    margin-bottom: 17px;
  }

  .contact-card {
    margin-top: 23px;
    padding: 23px 27px 24px;
    border-radius: 8px;
  }

  .contact-card h2 {
    margin-bottom: 21px;
  }

  .contact-card p {
    max-width: 576px;
    margin-bottom: 15px;
    font-size: 14px;
  }

  .email-link {
    font-size: 21px;
  }

  .small-note {
    font-size: 12px;
  }

  .footer {
    gap: 16px;
    margin-top: 33px;
    font-size: 12px;
  }

  .about-brand {
    margin-top: 48px;
  }

  .about-tagline {
    max-width: 657px;
    margin-top: 42px;
    font-size: 34px;
    font-weight: 700;
  }

  .about-copy {
    max-width: 610px;
    margin-top: 50px;
  }

  .about-copy h2,
  .about-follow h2 {
    margin-bottom: 15px;
    font-size: 17px;
    font-weight: 700;
  }

  .about-copy p {
    font-size: 20px;
    font-weight: 600;
  }

  .about-copy.goal {
    max-width: 570px;
  }

  .about-copy.voice {
    max-width: 590px;
  }

  .about-join {
    max-width: 469px;
    margin-top: 28px !important;
  }

  .about-follow {
    margin-top: 47px;
  }

  .social-icons {
    gap: 11px;
  }

  .social-icon {
    width: 44px;
    height: 44px;
  }

  .social-icon svg {
    width: 23px;
    height: 23px;
  }

  .about-disclaimer {
    max-width: 751px;
    margin-top: 31px;
    font-size: 11px;
  }

  .about-help-card {
    width: min(630px, 100%);
    margin-top: 28px;
    padding: 19px 27px 23px;
    border-radius: 8px;
  }

  .about-help-card h2 {
    margin-bottom: 19px;
    font-size: 19px;
    font-weight: 700;
  }

  .about-help-card p {
    margin-bottom: 19px;
    font-size: 13px;
    font-weight: 600;
  }

  .founder {
    margin-top: 32px;
    font-size: 13px;
  }

  .founder strong {
    font-weight: 700;
  }

  .privacy-title {
    max-width: 590px;
  }

  .policy-lede {
    max-width: 637px;
    margin-top: 35px;
    font-size: 20px;
  }

  .policy-grid {
    margin-top: 42px;
  }

  .policy-card {
    min-height: 221px;
  }

  .policy-card.tall {
    min-height: 288px;
  }

  .policy-card h2,
  .policy-choice-card h2 {
    margin-bottom: 23px;
  }

  .policy-choice-card {
    width: min(482px, 100%);
    min-height: 151px;
    margin-top: 23px;
  }

  .policy-help {
    margin-top: 34px;
  }

  .policy-help h2 {
    margin-bottom: 16px;
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  .page {
    width: 100%;
    padding: 28px 17px 34px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
    font-size: 16px;
  }

  .globe {
    width: 30px;
    height: 30px;
  }

  .globe::before {
    inset: 4px 8px;
  }

  .globe::after {
    left: 3px;
    width: 22px;
  }

  .brand-hero {
    margin-top: 38px;
  }

  .brand-mark {
    width: 136px;
  }

  .brand-word {
    margin-top: 6px;
    font-size: 54px;
  }

  .page-kicker {
    font-size: 21px;
  }

  .hero-title {
    margin-top: 42px;
    max-width: 100%;
    font-size: 34px;
    line-height: 1.22;
  }

  .support-summary {
    margin-top: 58px;
    padding: 30px 22px;
    border-radius: 18px;
  }

  .summary-text {
    max-width: 100%;
    font-size: 22px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .card,
  .card.wide {
    min-height: auto;
    padding: 28px 24px;
  }

  .card h2,
  .contact-card h2 {
    font-size: 25px;
  }

  .card h3 {
    margin-bottom: 26px;
    font-size: 18px;
  }

  .card p,
  .card li,
  .contact-card p {
    font-size: 17px;
    overflow-wrap: break-word;
  }

  .contact-card {
    padding: 30px 22px;
  }

  .email-link {
    font-size: 24px;
    word-break: break-word;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
    font-size: 15px;
  }

  .footer p:last-child {
    text-align: center;
  }

  .about-brand {
    margin-top: 38px;
  }

  .about-tagline {
    margin-top: 42px;
    font-size: 34px;
  }

  .about-copy {
    max-width: 100%;
    margin-top: 54px;
  }

  .about-copy h2,
  .about-follow h2 {
    margin-bottom: 16px;
    font-size: 20px;
  }

  .about-copy p {
    font-size: 22px;
  }

  .about-join {
    margin-top: 32px !important;
  }

  .about-follow {
    margin-top: 52px;
  }

  .social-icon {
    width: 58px;
    height: 58px;
  }

  .social-icon svg {
    width: 30px;
    height: 30px;
  }

  .about-disclaimer {
    max-width: 100%;
    margin-top: 34px;
    font-size: 14px;
  }

  .about-disclaimer br,
  .about-help-card br {
    display: none;
  }

  .about-help-card {
    padding: 28px 22px;
  }

  .about-help-card h2 {
    font-size: 25px;
  }

  .about-help-card p {
    font-size: 17px;
  }

  .founder {
    font-size: 17px;
  }

  .policy-lede {
    max-width: 100%;
    margin-top: 34px;
    font-size: 22px;
  }

  .policy-grid {
    margin-top: 42px;
  }

  .policy-card,
  .policy-card.tall,
  .policy-choice-card {
    min-height: auto;
  }

  .policy-card h2,
  .policy-choice-card h2 {
    margin-bottom: 24px;
  }

  .policy-choice-card {
    width: 100%;
    margin-top: 22px;
  }

  .policy-help {
    margin-top: 38px;
  }

  .policy-help h2 {
    margin-bottom: 18px;
    font-size: 25px;
  }
}
