:root {
  --ink: #121417;
  --muted: #5c6670;
  --paper: #f5f7f2;
  --panel: #ffffff;
  --line: rgba(18, 20, 23, 0.12);
  --green: #00a746;
  --green-hover: #00cf56;
  --green-deep: #063d1d;
  --gold: #f2c84b;
  --charcoal: #1f1f1f;
  --shadow: 0 24px 70px rgba(18, 20, 23, 0.16);
  --shadow-soft: 0 14px 38px rgba(18, 20, 23, 0.1);
  --radius-sm: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(245, 247, 242, 0.95);
  color: var(--ink);
  box-shadow: 0 12px 38px rgba(18, 20, 23, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: #fff;
}

.site-header.is-scrolled .brand-mark,
.site-header.is-open .brand-mark {
  border-color: rgba(18, 20, 23, 0.14);
}

.brand-mark img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: currentColor;
  font-size: 0.78rem;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.site-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-open .site-nav a:hover {
  background: rgba(0, 167, 70, 0.12);
}

.nav-socials {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.site-header.is-scrolled .nav-socials,
.site-header.is-open .nav-socials {
  border-left-color: rgba(18, 20, 23, 0.14);
}

.site-nav .nav-social-link {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  padding: 0;
  text-decoration: none;
}

.site-nav .nav-social-link:hover,
.site-nav .nav-social-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
}

.site-header.is-scrolled .nav-social-link,
.site-header.is-open .nav-social-link {
  border-color: rgba(18, 20, 23, 0.16);
}

.site-header.is-scrolled .site-nav .nav-social-link:hover,
.site-header.is-open .site-nav .nav-social-link:hover,
.site-header.is-scrolled .site-nav .nav-social-link:focus-visible,
.site-header.is-open .site-nav .nav-social-link:focus-visible {
  border-color: rgba(0, 167, 70, 0.42);
}

.nav-social-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-social-link path {
  fill: currentColor;
  stroke: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 112px clamp(20px, 5vw, 72px) 84px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
  z-index: -3;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.64) 42%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(0deg, rgba(0, 167, 70, 0.18), rgba(18, 20, 23, 0.04));
}

.hero-content {
  width: min(720px, 100%);
  color: #fff;
}

.hero-logo {
  width: clamp(86px, 12vw, 132px);
  height: clamp(86px, 12vw, 132px);
  margin-bottom: 24px;
  border-radius: 50%;
  padding: 10px;
  background: rgba(255, 255, 255, 0.92);
  object-fit: contain;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  width: fit-content;
  max-width: 100%;
  margin: 36px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-proof div {
  min-width: 138px;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.18);
}

.hero-proof dt {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-proof dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--green-hover);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 16vw, 9.5rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.hero-lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.button-primary {
  background: var(--green);
  color: #fff;
}

.button-primary:hover {
  background: var(--green-hover);
  color: var(--ink);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.button-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.button-social {
  border-color: rgba(0, 207, 86, 0.54);
  background: rgba(0, 167, 70, 0.2);
  color: #fff;
}

.button-social:hover {
  border-color: var(--green-hover);
  background: var(--green-hover);
  color: var(--ink);
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 72px);
}

.section-muted {
  background: #e9efe7;
}

.section-heading {
  width: min(900px, 100%);
  margin-bottom: 40px;
}

.section-note {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
}

.facts {
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.facts div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 18px;
  background: var(--panel);
}

.facts dt {
  color: var(--muted);
  font-weight: 700;
}

.facts dd {
  margin: 0;
  font-weight: 800;
}

.facts a {
  color: var(--green);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip a {
  border: 1px solid rgba(0, 167, 70, 0.22);
  border-radius: 999px;
  padding: 10px 12px;
  background: rgba(0, 167, 70, 0.08);
  color: var(--green-deep);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.trust-strip a:hover {
  border-color: var(--green);
  background: rgba(0, 167, 70, 0.14);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.team-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--panel);
}

.team-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.team-link {
  width: fit-content;
  margin-top: 20px;
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(0, 167, 70, 0.1);
  color: var(--green-deep);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.team-link:hover {
  background: var(--green);
  color: #fff;
}

.team-card-dark {
  background: #000;
  color: #fff;
}

.team-card-dark p {
  color: rgba(255, 255, 255, 0.74);
}

.inline-link {
  width: fit-content;
  margin-top: 18px;
  color: var(--green-hover);
  font-weight: 800;
}

.team-label {
  width: fit-content;
  margin-bottom: auto;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(34, 107, 67, 0.12);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

.team-card-dark .team-label {
  background: rgba(0, 167, 70, 0.18);
  color: var(--green-hover);
}

.sponsors-section {
  background: #fff;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sponsor-card {
  display: grid;
  gap: 18px;
  min-height: 230px;
  align-content: center;
  justify-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--paper);
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.sponsor-card:hover,
.sponsor-card:focus-visible {
  border-color: rgba(0, 167, 70, 0.36);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.sponsor-logo {
  display: grid;
  width: min(260px, 100%);
  min-height: 104px;
  place-items: center;
}

.sponsor-logo img {
  display: block;
  max-width: 100%;
  max-height: 104px;
  object-fit: contain;
}

.sponsor-logo-square {
  width: min(132px, 100%);
}

.sponsor-card-jimsoft .sponsor-logo {
  width: min(300px, 100%);
}

.sponsor-name {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
}

.grants-section {
  background: var(--paper);
}

.grants-content {
  display: grid;
  gap: 26px;
}

.grants-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: clamp(20px, 3vw, 30px);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.grants-provider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.grants-provider:hover,
.grants-provider:focus-visible {
  border-color: rgba(0, 167, 70, 0.36);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.grants-provider img {
  display: block;
  width: min(138px, 44vw);
  height: auto;
}

.grants-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.grants-list {
  display: grid;
  gap: 1px;
  margin: 18px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--line);
}

.grants-list div {
  display: grid;
  grid-template-columns: minmax(170px, 0.2fr) minmax(0, 1fr);
  gap: 14px;
  padding: 14px 16px;
  background: var(--paper);
}

.grants-list dt {
  color: var(--muted);
  font-weight: 800;
}

.grants-list dd {
  margin: 0;
  font-weight: 800;
}

.grants-purpose-list {
  display: grid;
  gap: 6px;
  margin: 8px 0 0;
  padding-left: 0;
  font-size: 0.96rem;
  font-weight: 700;
  list-style: none;
  counter-reset: grants-purpose;
}

.grants-purpose-list li {
  counter-increment: grants-purpose;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
}

.grants-purpose-list li::before {
  content: counter(grants-purpose, lower-alpha) ")";
  color: inherit;
  font-weight: inherit;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 7vw, 96px);
  align-items: center;
}

.split-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.12rem;
}

.recruit-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: #fff;
}

.recruit-media {
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #dfe8dc;
  box-shadow: var(--shadow-soft);
}

.recruit-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
}

.recruit-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
}

.step-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.step-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px;
  background: var(--paper);
}

.step-list span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}

.step-list h3 {
  grid-column: 2;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.step-list p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--muted);
}

.address-panel {
  display: grid;
  gap: 16px;
  border-radius: 8px;
  padding: 28px;
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow);
  font-style: normal;
}

.address-panel span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.address-panel strong {
  font-size: 1.55rem;
  line-height: 1.2;
}

.address-panel a {
  color: var(--gold);
  font-weight: 800;
}

.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.faq-grid article {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px;
  background: var(--paper);
}

.faq-grid h3 {
  font-size: 1.18rem;
}

.faq-grid p {
  color: var(--muted);
}

.faq-grid a {
  width: fit-content;
  margin-top: auto;
  color: var(--green-deep);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.social-section {
  background: #0b0c0e;
  color: #fff;
  border-top: 1px solid rgba(18, 20, 23, 0.08);
}

.social-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: center;
}

.social-copy {
  max-width: 680px;
}

.social-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.social-board {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(160px, 0.8fr);
  gap: 14px;
}

.social-tile {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.social-tile:hover,
.social-tile:focus-visible {
  border-color: rgba(0, 207, 86, 0.62);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.social-tile-large {
  min-height: 328px;
  grid-row: span 2;
  justify-content: flex-end;
}

.social-tile-large img,
.social-tile-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.social-tile-large img {
  object-fit: cover;
}

.social-tile-shade {
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.1) 72%),
    linear-gradient(135deg, rgba(0, 167, 70, 0.42), rgba(0, 0, 0, 0.08));
}

.social-tile-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.social-tile span span,
.social-tile > span:first-child {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.social-tile strong {
  display: block;
  margin-top: 6px;
  overflow-wrap: anywhere;
  font-size: 1.24rem;
  line-height: 1.1;
}

.social-tile-small .social-icon {
  width: 52px;
  height: 52px;
}

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

.social-tile-green {
  background: var(--green);
}

.social-tile-green:hover,
.social-tile-green:focus-visible {
  background: var(--green-hover);
  color: var(--ink);
}

.social-tile-green:hover span,
.social-tile-green:hover strong,
.social-tile-green:focus-visible span,
.social-tile-green:focus-visible strong {
  color: var(--ink);
}

.social-icon {
  flex: 0 0 auto;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
}

.social-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon-youtube {
  background: #000;
}

.social-icon-youtube path {
  fill: currentColor;
  stroke: none;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.65fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: start;
  background: #000;
  color: #fff;
}

.contact-section p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.contact-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-card a {
  display: grid;
  gap: 4px;
  overflow-wrap: anywhere;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 12px;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none;
}

.contact-card a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-card span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card em {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 700;
}

.contact-note {
  margin-top: 18px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: #0b0c0e;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer p {
  margin: 0;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-socials a {
  color: #fff;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

@media (max-width: 1080px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 72px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100dvh - 96px);
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .nav-socials {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 4px 0 0;
    padding: 12px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .site-nav .nav-social-link {
    width: auto;
    height: 44px;
    border-radius: 999px;
    color: var(--ink);
    padding: 0;
  }

  .intro-grid,
  .split,
  .grants-content,
  .recruit-section,
  .social-feature,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .team-grid,
  .sponsor-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-card {
    min-height: 220px;
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 104px;
  }

  .hero-proof {
    width: 100%;
  }

  .hero-proof div {
    flex: 1 1 100%;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .facts div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .grants-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .grants-provider {
    align-items: flex-start;
    flex-direction: column;
  }

  .grants-purpose-list {
    grid-template-columns: 1fr;
  }

  .team-grid,
  .sponsor-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .social-board {
    grid-template-columns: 1fr;
  }

  .social-tile-large {
    min-height: 260px;
  }

  .step-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step-list h3,
  .step-list p {
    grid-column: 1;
  }

  .site-footer {
    display: grid;
  }

  .footer-socials {
    gap: 12px;
  }
}
