:root {
  --white: #ffffff;
  --paper: #f7f7f7;
  --mission-bg: #f5eeee;
  --footer-bg: #f8e4e8;
  --square-bg: #313a40;
  --text: #000000;
  --mission-text: #6b3128;
  --header-pink: #98475f;
  --muted: #767676;
  --line: rgba(0, 0, 0, 0.2);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

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

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

.site-header {
  background: var(--mission-bg);
}

.header-inner {
  width: 100%;
  min-height: 118px;
  margin: 0 auto;
  padding: 18px 24px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.site-title {
  justify-self: start;
  grid-column: 1;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--header-pink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.site-title img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.main-nav {
  grid-row: 2;
  grid-column: 1 / -1;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 700;
  color: var(--header-pink);
}

.search-form {
  justify-self: end;
  grid-column: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-input {
  width: 150px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(152, 71, 95, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--header-pink);
  font: inherit;
  font-size: 14px;
}

.search-input::placeholder {
  color: rgba(152, 71, 95, 0.72);
}

.search-input:focus {
  outline: 3px solid rgba(152, 71, 95, 0.14);
  border-color: var(--header-pink);
}

.search-button {
  width: 28px;
  height: 28px;
  padding: 0;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  color: var(--header-pink);
  cursor: pointer;
}

.search-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.search-results {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.search-result {
  display: block;
  padding: 20px;
  border: 1px solid #efd8d7;
  border-radius: 4px;
  background: #f7eeee;
}

.search-result strong {
  display: block;
  margin-bottom: 6px;
  color: var(--mission-text);
  font-size: 1.2rem;
}

.search-result span,
.search-empty {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
}

.hero {
  position: relative;
  width: min(960px, calc(100% - 48px));
  min-height: auto;
  margin: 0 auto;
  padding: 58px 0 34px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 30px;
  text-align: center;
}

.hero-copy {
  display: flex;
  width: min(760px, 100%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero .hero-kicker {
  margin: 0 0 12px;
  color: var(--header-pink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-image {
  width: min(760px, 100%);
  margin: 0;
  padding: 12px;
  border: 1px solid #efd8d7;
  border-radius: 28px;
  background: #fff8f7;
  box-shadow: 0 18px 42px rgba(107, 49, 40, 0.12);
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--mission-text);
  font-size: clamp(2.8rem, 6.2vw, 5.4rem);
  font-weight: 700;
  line-height: 1.02;
}

.hero p {
  max-width: 340px;
  margin: 0 0 30px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.donate-button,
.learn-button {
  min-width: 132px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 2px solid var(--mission-text);
  border-radius: 999px;
  font-weight: 700;
}

.donate-button {
  background: var(--mission-text);
  color: #fff;
}

.learn-button {
  background: #fff;
  color: var(--mission-text);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  object-fit: cover;
}

.mission {
  background: var(--mission-bg);
}

.mission-inner {
  width: min(670px, calc(100% - 48px));
  margin: 0 auto;
  padding: 46px 0 48px;
  color: var(--mission-text);
  text-align: center;
}

.mission h2 {
  margin: 0 0 14px;
  font-size: 37px;
  font-weight: 400;
  line-height: 1.2;
}

.mission p {
  margin: 0;
  font-size: 20px;
  line-height: 1.32;
}

.info-section {
  background: var(--white);
}

.muted-info {
  background: var(--mission-bg);
}

.info-inner {
  width: min(998px, calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0;
}

.info-inner h2 {
  margin: 0 0 16px;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.25;
}

.info-inner p {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
}

.page-section {
  min-height: 440px;
}

.page-title {
  margin: 0 0 18px;
  font-size: 37px;
  font-weight: 400;
  line-height: 1.2;
}

.page-copy {
  max-width: 720px;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--header-pink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.link-buttons {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.link-buttons a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 2px solid #000;
  border-radius: 8px;
  background: #fff;
  font-weight: 700;
}

.page-cta {
  margin-top: 28px;
}

.simple-grid,
.stat-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.simple-grid h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.social-hero {
  background:
    linear-gradient(115deg, #fff8f7 0%, #f5eeee 52%, #e8f2ef 100%);
  overflow: hidden;
}

.social-hero-inner,
.team-hero-inner {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0;
}

.social-hero-copy .page-title,
.team-copy .page-title {
  max-width: 720px;
  color: var(--mission-text);
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  font-weight: 700;
  line-height: 1.02;
}

.social-hero-copy .page-copy,
.team-copy .page-copy {
  max-width: 620px;
  font-size: 19px;
}

.social-actions a {
  border-color: var(--mission-text);
  border-radius: 999px;
  color: var(--mission-text);
}

.social-actions a:first-child {
  background: var(--mission-text);
  color: #fff;
}

.team-role-card span {
  display: block;
  color: #3d746b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-section,
.team-roles-section {
  background: #fff;
}

.signal-inner,
.team-roles-inner,
.share-strip-inner,
.team-invite-inner {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding: 62px 0;
}

.signal-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.signal-heading h2 {
  max-width: 520px;
  margin: 0;
  color: var(--mission-text);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
}

.channel-grid,
.team-role-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.channel-card,
.team-role-card {
  min-height: 292px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #efd8d7;
  border-radius: 8px;
  background: #fff8f7;
  box-shadow: 0 10px 26px rgba(107, 49, 40, 0.07);
}

.channel-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mission-text);
  color: #fff;
  font-weight: 700;
}

.channel-card h3,
.team-role-card h3 {
  margin: 20px 0 8px;
  color: var(--mission-text);
  font-size: 22px;
}

.team-role-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.channel-card strong {
  margin-top: 22px;
  color: #3d746b;
  font-size: 15px;
}

.instagram-channel {
  background: #f8e4e8;
}

.tiktok-channel {
  background: #f6d7df;
}

.share-strip,
.team-invite {
  background: var(--mission-text);
  color: #fff;
}

.share-strip-inner,
.team-invite-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.team-invite-inner {
  display: block;
  padding: 34px 0;
}

.share-strip h2,
.team-invite h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  line-height: 1.1;
}

.share-strip p,
.team-invite p {
  max-width: 560px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.share-strip .donate-button,
.team-invite .donate-button {
  border-color: #fff;
  background: #fff;
  color: var(--mission-text);
}

.team-invite .donate-button {
  width: 100%;
  min-height: 96px;
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  border-radius: 8px;
}

.team-hero {
  background: #f5eeee;
  overflow: hidden;
}

.team-stats {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.team-stats div {
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(107, 49, 40, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
}

.team-stats strong,
.team-stats span {
  display: block;
}

.team-stats strong {
  color: var(--mission-text);
  font-size: 19px;
}

.team-stats span {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
}

.team-role-grid {
  grid-template-columns: repeat(4, 1fr);
}

.team-role-card {
  min-height: 250px;
}

.simple-grid p,
.stat-grid p {
  font-size: 15px;
}

.stat-list {
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  list-style: none;
}

.stat-list li {
  min-height: 178px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #efd8d7;
  border-radius: 4px;
  background: #f7eeee;
  text-align: center;
}

.stat-list strong {
  display: block;
  margin-bottom: 12px;
  color: var(--mission-text);
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  font-weight: 700;
  line-height: 0.95;
}

.stat-list span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.38;
}

.stats-dashboard-inner,
.stats-action-inner {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
}

.stats-spotlight {
  min-height: 300px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(107, 49, 40, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(107, 49, 40, 0.14);
}

.stats-spotlight span {
  color: var(--header-pink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stats-spotlight strong {
  margin: 16px 0 8px;
  color: var(--mission-text);
  font-size: clamp(3.4rem, 7vw, 5.6rem);
  line-height: 0.92;
}

.stats-spotlight p {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.stats-dashboard {
  background:
    linear-gradient(118deg, #f5eeee 0%, #fff8f7 58%, #e8f2ef 100%);
}

.stats-dashboard-inner {
  padding: 70px 0;
}

.stats-only-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-flow: dense;
  gap: 18px;
}

.stats-board-main,
.stat-feature-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #efd8d7;
  border-radius: 8px;
  background: #fff8f7;
  box-shadow: 0 12px 28px rgba(107, 49, 40, 0.08);
}

.stats-board-main {
  min-height: 430px;
  grid-column: span 3;
  grid-row: span 2;
  background: var(--mission-text);
  color: #fff;
}

.stats-spotlight {
  grid-column: span 3;
  grid-row: span 2;
}

.stat-feature-card {
  min-height: 176px;
  padding: 22px;
}

.compact-stat {
  grid-column: span 2;
}

.tall-stat {
  grid-column: span 2;
  grid-row: span 2;
}

.wide-small-stat {
  grid-column: span 3;
}

.pink-stat {
  background: #f6d7df;
}

.green-stat {
  background: #e8f2ef;
}

.stat-tag {
  display: block;
  margin-bottom: 12px;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.78;
}

.stats-board-main strong,
.stat-feature-card strong {
  display: block;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  line-height: 0.95;
}

.stats-board-main strong {
  font-size: clamp(4.6rem, 10vw, 8.8rem);
}

.stats-board-main p,
.stat-feature-card p {
  max-width: 260px;
  margin: 20px 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.stats-board-main p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 23px;
}

.stats-action {
  background: var(--mission-text);
  color: #fff;
}

.stats-action-inner {
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.stats-action h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  line-height: 1.1;
}

.stats-action p {
  max-width: 640px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.stats-action .donate-button {
  border-color: #fff;
  background: #fff;
  color: var(--mission-text);
}

.stat-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--mission-text);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.pilot-section {
  min-height: 620px;
  color: var(--mission-text);
}

.pilot-inner {
  text-align: center;
}

.pilot-hero {
  width: min(820px, 100%);
  margin: 0 auto;
}

.pilot-kicker {
  margin: 0 0 12px;
  color: var(--header-pink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pilot-lede {
  max-width: 760px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.5;
}

.pilot-lede strong {
  color: var(--mission-text);
  font-weight: 700;
}

.pilot-card-grid {
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  color: var(--text);
}

.pilot-card {
  min-height: 260px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #efd8d7;
  border-radius: 18px;
  background: #fff8f7;
  box-shadow: 0 14px 32px rgba(107, 49, 40, 0.08);
  text-align: center;
}

.pilot-number {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f8e4e8;
  color: var(--mission-text);
  font-size: 15px;
  font-weight: 700;
}

.pilot-card h3 {
  margin: 0 0 10px;
  color: var(--mission-text);
  font-size: 20px;
}

.pilot-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.pilot-path {
  width: min(820px, 100%);
  margin: 34px auto 0;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--mission-text);
}

.pilot-path div {
  padding: 12px 14px;
  border-radius: 999px;
  background: #f8e4e8;
}

.pilot-path strong,
.pilot-path span {
  display: block;
}

.pilot-path strong {
  font-size: 17px;
}

.pilot-path span {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 600;
}

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

.contact-inner {
  width: min(998px, calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0 47px;
  display: grid;
  grid-template-columns: 424px 492px;
  gap: 82px;
}

.contact-text h2 {
  margin: 0 0 18px;
  font-size: 27px;
  font-weight: 400;
}

.contact-text p {
  max-width: 400px;
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea,
.newsletter-form input {
  width: 100%;
  border: 1px solid #9c9c9c;
  border-radius: 4px;
  background: #fff;
  color: #000;
  font: inherit;
}

.contact-form input {
  height: 48px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 96px;
  padding: 13px 16px;
  resize: vertical;
}

.contact-form ::placeholder,
.newsletter-form ::placeholder {
  color: #777;
  opacity: 1;
}

.form-note {
  margin: 8px 0 -10px;
  font-size: 14px;
  line-height: 1.55;
}

.recaptcha {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
}

.recaptcha a {
  text-decoration: underline;
}

.submit-button {
  width: 104px;
  height: 48px;
  margin-top: 4px;
  border: 0;
  border-radius: 8px;
  background: var(--mission-text);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.submit-button:hover,
.newsletter-form button:hover {
  opacity: 0.86;
}

.form-success {
  margin: 6px 0 0;
  color: var(--mission-text);
  font-weight: 700;
}

.join-section {
  background: var(--mission-bg);
  color: var(--mission-text);
}

.join-inner {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 78px 0 70px;
  text-align: center;
}

.join-title {
  max-width: 760px;
  margin: 0 auto 30px;
  font-size: clamp(2.25rem, 4.4vw, 3.15rem);
  font-weight: 400;
  line-height: 1.12;
}

.join-copy {
  max-width: 820px;
  margin: 0 auto 52px;
  font-size: clamp(1.25rem, 2.4vw, 1.95rem);
  line-height: 1.32;
}

.join-form {
  width: min(720px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 26px;
}

.join-form input,
.join-form textarea {
  width: 100%;
  border: 2px solid #8f8989;
  border-radius: 6px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 1.45rem;
}

.join-form input {
  height: 72px;
  padding: 0 24px;
}

.join-form textarea {
  min-height: 150px;
  padding: 24px;
  resize: vertical;
}

.join-form ::placeholder {
  color: #777;
  opacity: 1;
}

.join-form .form-note {
  margin: 20px 0 -8px;
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  line-height: 1.55;
}

.join-form .recaptcha {
  color: #a78989;
  font-size: clamp(0.9rem, 1.5vw, 1.12rem);
}

.join-form .submit-button {
  width: 150px;
  height: 70px;
  margin: 8px auto 0;
  font-size: 1.45rem;
}

.site-footer {
  background: var(--footer-bg);
}

.footer-main {
  position: relative;
  width: min(1000px, calc(100% - 48px));
  margin: 0 auto;
  padding: 52px 0 56px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}

.footer-left {
  max-width: 560px;
}

.footer-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  opacity: 0.85;
}

.footer-nav {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  font-size: 14px;
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-bottom: 7px;
}

.social-links a {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.social-links .instagram {
  background: #e2665e;
}

.footer-divider {
  height: 1px;
  margin: 30px 0 24px;
  background: rgba(0, 0, 0, 0.18);
}

.newsletter h2 {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 700;
}

.newsletter-form {
  width: min(492px, 100%);
  display: grid;
  grid-template-columns: 1fr 96px;
}

.newsletter-form input {
  height: 48px;
  padding: 0 16px;
  border-right: 0;
  border-radius: 4px 0 0 4px;
  background: rgba(255, 255, 255, 0.28);
}

.newsletter-form button {
  border: 0;
  border-radius: 0 8px 8px 0;
  background: #000;
  color: #fff;
  font: inherit;
  font-weight: 700;
}

.newsletter .recaptcha {
  width: min(510px, 100%);
  margin-top: 16px;
}

.copyright {
  position: absolute;
  right: 8px;
  bottom: 64px;
  margin: 0;
  font-size: 16px;
}

@media (max-width: 880px) {
  .header-inner {
    height: auto;
    padding: 18px 16px 20px;
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    gap: 18px 26px;
    flex-wrap: wrap;
  }

  .search-form {
    grid-column: 3;
  }

  .search-input {
    width: 120px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 0 34px;
  }

  .hero-copy {
    min-height: auto;
  }

  .hero-image {
    order: -1;
    margin: 0;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .join-inner {
    padding: 58px 0;
  }

  .simple-grid,
  .stat-grid,
  .pilot-card-grid,
  .pilot-path,
  .social-hero-inner,
  .team-hero-inner,
  .stats-only-grid,
  .channel-grid,
  .team-role-grid,
  .share-strip-inner,
  .stats-action-inner,
  .team-invite-inner {
    grid-template-columns: 1fr;
  }

  .pilot-path {
    border-radius: 18px;
  }

  .pilot-path div {
    border-radius: 14px;
  }

  .stat-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .share-strip-inner,
  .stats-action-inner,
  .team-invite-inner {
    align-items: start;
  }

  .stats-only-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stats-board-main,
  .stats-spotlight,
  .compact-stat,
  .tall-stat,
  .wide-small-stat {
    grid-column: auto;
    grid-row: auto;
  }

  .stats-dashboard-inner {
    padding: 34px 0;
  }

  .stats-spotlight,
  .stats-board-main,
  .stat-feature-card {
    min-height: 168px;
    padding: 18px;
    border-radius: 8px;
  }

  .stats-spotlight strong {
    font-size: clamp(2.5rem, 9vw, 4rem);
  }

  .stats-board-main strong {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .stat-feature-card strong {
    font-size: clamp(2rem, 7vw, 3.3rem);
  }

  .stats-spotlight p,
  .stats-board-main p,
  .stat-feature-card p {
    max-width: 100%;
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.28;
  }

  .stats-board-main p {
    font-size: 15px;
  }

  .stat-tag,
  .stats-spotlight span {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

}

@media (max-width: 600px) {
  .header-inner,
  .hero,
  .mission-inner,
  .contact-inner,
  .footer-main,
  .social-hero-inner,
  .signal-inner,
  .team-hero-inner,
  .team-roles-inner,
  .stats-dashboard-inner,
  .stats-action-inner,
  .share-strip-inner,
  .team-invite-inner {
    width: min(100% - 32px, 1000px);
  }

  .main-nav {
    font-size: 13px;
  }

  .search-form {
    grid-column: 1 / -1;
    justify-self: stretch;
    order: 4;
  }

  .search-input {
    flex: 1;
    width: 100%;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions {
    width: 100%;
  }

  .donate-button,
  .learn-button {
    width: 100%;
  }

  .mission h2 {
    font-size: 31px;
  }

  .mission p {
    font-size: 17px;
  }

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

  .stat-list li {
    min-height: 150px;
  }

  .social-hero-inner,
  .team-hero-inner,
  .signal-inner,
  .team-roles-inner,
  .stats-dashboard-inner,
  .stats-action-inner,
  .share-strip-inner,
  .team-invite-inner {
    padding: 44px 0;
  }

  .social-hero-copy .page-title,
  .team-copy .page-title {
    font-size: 38px;
  }

  .social-hero-copy .page-copy,
  .team-copy .page-copy {
    font-size: 16px;
  }

  .signal-heading {
    display: block;
  }

  .channel-card,
  .team-role-card,
  .stat-feature-card,
  .stats-board-main {
    min-height: 0;
  }

  .stats-only-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .stats-board-main,
  .stats-spotlight,
  .compact-stat,
  .tall-stat,
  .wide-small-stat {
    grid-column: auto;
    grid-row: auto;
  }

  .stats-spotlight {
    min-height: 146px;
    padding: 16px;
  }

  .stats-spotlight strong {
    font-size: clamp(2.25rem, 12vw, 3.6rem);
  }

  .stats-spotlight p {
    font-size: 13px;
  }

  .stats-board-main,
  .stat-feature-card {
    padding: 16px;
  }

  .stats-board-main {
    min-height: 146px;
  }

  .stat-feature-card {
    min-height: 126px;
  }

  .stats-board-main strong {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .stat-feature-card strong {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .stats-board-main p {
    font-size: 13px;
  }

  .stat-feature-card p {
    max-width: 100%;
    margin-top: 12px;
    font-size: 12px;
  }

  .stat-tag {
    font-size: 9px;
    letter-spacing: 0.09em;
  }

  .team-stats {
    grid-template-columns: 1fr;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .newsletter-form input,
  .newsletter-form button {
    border: 1px solid #9c9c9c;
    border-radius: 4px;
  }

  .newsletter-form button {
    height: 48px;
    border-color: #000;
  }

  .copyright {
    position: static;
    margin-top: 28px;
  }

  .join-form input,
  .join-form textarea {
    font-size: 1rem;
  }

  .join-form input {
    height: 56px;
  }
}

@media (max-width: 420px) {
  .stats-only-grid {
    grid-template-columns: 1fr;
  }

  .stats-spotlight,
  .stats-board-main,
  .stat-feature-card {
    min-height: 0;
  }
}
