html:has(.home-page) {
  scroll-behavior: smooth;
  scroll-padding-top: var(--home-header-height);
}

.home-page {
  --home-green: #05A105;
  --home-green-dark: #048904;
  --home-bg: #EBFFF4;
  --home-bg-soft: #F5FFF8;
  --home-text: #1E1E1E;
  --home-muted: #595858;
  --home-border: #E2E8E4;
  --home-header-height: 88px;
  --home-scroll-anchor-offset: var(--home-header-height);
  --home-section-inset-x: 16px;
  --home-section-max-width: 1140px;
  min-height: 100vh;
  background: var(--home-bg);
  color: var(--home-text);
  font-family: Inter, sans-serif;
}

.home-container {
  box-sizing: border-box;
  width: min(1200px, 100% - 32px);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Header */
.home-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--home-bg);
  padding: 20px 0 16px;
  border-bottom: 1px solid #05A105;
  box-sizing: border-box;
}

.home-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.home-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--home-green);
  flex-shrink: 0;
}

.home-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.home-brand span {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.home-nav {
  display: none;
  align-items: center;
  gap: 36px;
}

.home-nav a,
.home-nav-link {
  color: var(--home-text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.home-nav a:hover,
.home-nav-link:hover {
  color: var(--home-green);
}

.home-header-actions {
  display: none;
  align-items: center;
  gap: 12px;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--home-green);
  transition: opacity 0.15s ease;
}

.home-btn:hover {
  opacity: 0.92;
  color: inherit;
}

.home-btn-solid {
  background: var(--home-green);
  color: #fff !important;
  border-color: var(--home-green);
}

.home-btn-outline {
  background: #fff;
  color: var(--home-green) !important;
}

.home-btn-outline[href*="login"] {
  background: #EBFFF4;
}

.home-btn-login-solo {
  background-color: #05A105 !important;
  color: #ffffff !important;
  border-color: #05A105 !important;
  font-size: 25px;
  font-weight: 600;
  min-height: 48px;
}

.home-btn-dashboard-solo {
  background-color: #05A105 !important;
  color: #ffffff !important;
  border-color: #05A105 !important;
  font-size: 25px;
  font-weight: 600;
  min-height: 48px;
}

.home-mobile-only {
  display: none !important;
}

.home-footer-mobile {
  display: none;
}

.home-btn-block {
  width: 100%;
}

/* Hero */
.home-hero {
  padding: 8px 0 48px;
}

.home-hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.home-hero-art {
  width: min(280px, 72vw);
  height: auto;
}

.home-hero-copy {
  width: 100%;
}

.home-hero-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--home-green);
}

.home-hero-title--desktop {
  display: none;
}

.home-hero-title--mobile {
  display: block;
}

.home-hero-subtitle {
  margin: 14px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--home-muted);
}

.home-hero-cta {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

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

.home-social-login {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.home-social-login p {
  margin: 0;
  font-size: 12px;
  color: var(--home-muted);
}

.home-social-icons {
  display: flex;
  gap: 14px;
  align-items: center;
}

.home-social-icons a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--home-border);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--home-text);
}

.home-trust {
  margin-top: 22px;
  display: none;
  align-items: center;
  gap: 12px;
}

.home-trust-avatars {
  display: flex;
  align-items: center;
}

.home-trust-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-trust-avatar:first-child {
  margin-left: 0;
}

.home-trust-avatar__initials {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}

.home-trust-avatar--more {
  background: var(--home-green);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.home-trust p {
  margin: 0;
  font-size: 13px;
  color: var(--home-muted);
  font-weight: 500;
}

.home-hero-desktop-art {
  display: none;
}

/* Section shared */
.home-section {
  padding: 40px 0;
}

.home-section-white {
  background: #fff;
}

#giftshop {
  padding: 56px 0 0;
}

#giftshop .home-container,
#community .home-container,
#security .home-container,
.home-get-started .home-container,
.home-footer-desktop .home-container {
  padding-left: 0;
  padding-right: 0;
  width: calc(100% - (2 * var(--home-section-inset-x)));
  max-width: min(var(--home-section-max-width), calc(100% - (2 * var(--home-section-inset-x))));
  margin-left: auto;
  margin-right: auto;
}

#community.home-section {
  padding-top: 56px;
}

#security {
  padding: 0 0 24px;
  scroll-margin-top: var(--home-scroll-anchor-offset);
}

#giftshop,
#community {
  scroll-margin-top: var(--home-scroll-anchor-offset);
}

.home-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: #D9F5E4;
  color: var(--home-green);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

.home-section-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--home-green);
}

.home-section-desc {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--home-muted);
  max-width: 640px;
}

/* Steps */
.home-steps-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.home-step-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--home-green);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.home-step-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 14px;
}

.home-step h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--home-text);
}

.home-step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--home-muted);
  max-width: 280px;
}

/* Community */
.home-category {
  margin-top: 32px;
}

.home-category--secondary,
.home-category--church {
  padding-top: 24px;
}

.home-category-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.home-category-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #F4F6F3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-category-icon img {
  width: 28px;
  height: 28px;
}

.home-category-head h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.home-category-head p {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--home-muted);
}

.home-category--university .home-category-icon,
.home-category--secondary .home-category-icon,
.home-category--church .home-category-icon {
  width: 64px;
  height: 57px;
}

.home-category--university .home-category-icon {
  background: #CDE2CE;
}

.home-category--secondary .home-category-icon {
  background: #FFA500;
}

.home-category--church .home-category-icon {
  background: #FAE2A0;
}

.home-category--university .home-category-icon img,
.home-category--secondary .home-category-icon img,
.home-category--church .home-category-icon img {
  width: 30px;
  height: 30px;
}

.home-category--university .home-category-head h3,
.home-category--secondary .home-category-head h3,
.home-category--church .home-category-head h3 {
  font-size: 30px;
  font-weight: 700;
  color: #000;
}

.home-category--university .home-category-head p,
.home-category--secondary .home-category-head p,
.home-category--church .home-category-head p {
  font-size: 20px;
  font-weight: 500;
  color: #000;
}

.home-category--university .home-group-card,
.home-category--secondary .home-group-card,
.home-category--church .home-group-card {
  border: 1px solid #D5EFD5;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.home-category--university .home-group-logo,
.home-category--secondary .home-group-logo,
.home-category--church .home-group-logo {
  width: 62px;
  height: 62px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-category--university .home-group-logo {
  background: #F4F6F3;
}

.home-category--secondary .home-group-logo {
  background: #FFA500;
}

.home-category--church .home-group-logo {
  background: #FAE2A0;
}

.home-category--university .home-group-logo img,
.home-category--secondary .home-group-logo img,
.home-category--church .home-group-logo img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  object-position: center;
}

.home-category--university .home-group-card-top,
.home-category--secondary .home-group-card-top,
.home-category--church .home-group-card-top {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  gap: 12px;
}

.home-category--university .home-group-meta--university,
.home-category--secondary .home-group-meta--university,
.home-category--church .home-group-meta--university {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.home-category--university .home-group-university-head,
.home-category--secondary .home-group-university-head,
.home-category--church .home-group-university-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.home-category--university .home-group-tag,
.home-category--secondary .home-group-tag,
.home-category--church .home-group-tag {
  display: inline-block;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  color: #05A105;
}

.home-category--university .home-group-meta--university h4,
.home-category--secondary .home-group-meta--university h4,
.home-category--church .home-group-meta--university h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  line-height: 1.35;
}

.home-category--university .home-group-subtitle,
.home-category--secondary .home-group-subtitle,
.home-category--church .home-group-subtitle {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.35;
}

.home-category--university .home-group-status,
.home-category--secondary .home-group-status,
.home-category--church .home-group-status {
  padding: 4px 10px;
  border-radius: 999px;
  background: #EBFFF4;
  font-size: 14px;
  font-weight: 500;
  color: #05A105;
  white-space: nowrap;
  flex-shrink: 0;
}

.home-category--university .home-group-status-dot,
.home-category--secondary .home-group-status-dot,
.home-category--church .home-group-status-dot {
  display: none;
}

.home-category--university .home-group-stat,
.home-category--secondary .home-group-stat,
.home-category--church .home-group-stat {
  font-size: 14px;
  font-weight: 400;
  color: #595858;
}

.home-category--university .home-group-stat img,
.home-category--secondary .home-group-stat img,
.home-category--church .home-group-stat img {
  width: 25px;
  height: 25px;
}

.home-category--university .home-group-stat strong,
.home-category--secondary .home-group-stat strong,
.home-category--church .home-group-stat strong {
  font-size: 14px;
  font-weight: 400;
  color: #595858;
}

.home-category--university .home-group-stats,
.home-category--secondary .home-group-stats,
.home-category--church .home-group-stats {
  margin-top: auto;
  padding-top: 12px;
  border-top: none;
}

.home-group-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-group-card {
  background: #fff;
  border: 1px solid var(--home-border);
  border-radius: 12px;
  padding: 14px 16px;
}

.home-group-card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.home-group-logo {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #F4F6F3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--home-green);
  flex-shrink: 0;
  overflow: hidden;
}

.home-group-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-group-meta {
  flex: 1;
  min-width: 0;
}

.home-group-meta h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.home-group-meta p {
  margin: 4px 0 0;
  font-size: 11px;
  color: var(--home-muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.home-group-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--home-green);
  white-space: nowrap;
}

.home-group-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-green);
}

.home-group-stats {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--home-border);
  display: flex;
  gap: 18px;
}

.home-group-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--home-muted);
  font-weight: 500;
}

.home-group-stat img {
  width: 16px;
  height: 16px;
}

.home-group-stat strong {
  color: var(--home-text);
  font-weight: 700;
}

/* Stats bar */
.home-stats {
  background: #fff;
  padding: 28px 0;
}

.home-stats--community {
  margin-top: 40px;
  padding-top: 40px;
  background: transparent;
}

.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.home-stat-item {
  text-align: center;
}

.home-stat-item + .home-stat-item {
  position: relative;
}

.home-stat-value {
  margin: 0;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  color: var(--home-green);
}

.home-stat-label {
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--home-muted);
}

/* Security */
.home-security-cards {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-security-card {
  background: #fff;
  border: 1px solid #D5EFD5;
  border-radius: 14px;
  padding: 24px 20px;
}

.home-security-card-icon {
  width: 64px;
  height: 57px;
  border-radius: 10px;
  background: #CDE2CE;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.home-security-card-icon img {
  width: 32px;
  height: 32px;
}

.home-security-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.home-security-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: #000;
}

/* Get started */
.home-get-started {
  background: #fff;
  padding: 48px 0 72px;
  text-align: center;
}

.home-get-started-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-get-started-title {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  color: #05A105;
  line-height: 1.2;
}

.home-get-started-desc {
  margin: 14px 0 0;
  max-width: 560px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
}

.home-get-started-actions {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
  max-width: 100%;
}

.home-get-started-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: auto;
  max-width: 100%;
  justify-content: center;
}

.home-get-started-actions-row .home-btn {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
}

.home-get-started-content {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 100%;
}

/* Desktop footer */
.home-footer-desktop {
  background: #05A105;
  color: #fff;
  padding: 22px 0;
}

.home-footer-desktop-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.home-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}

.home-footer-brand img {
  width: 28px;
  height: 28px;
}

.home-footer-brand span {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
}

.home-footer-desktop-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  min-width: 0;
}

.home-footer-desktop-links a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}

.home-footer-desktop-copy {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-align: right;
  flex-shrink: 1;
  min-width: 0;
}

/* Why section (mobile) */
.home-why-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.home-why-item {
  text-align: center;
}

.home-why-item img {
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
}

.home-why-item h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
}

.home-why-item p {
  margin: 0 auto;
  max-width: 300px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--home-muted);
}

/* Footer CTA + footer */
.home-footer-cta {
  padding: 36px 0;
  text-align: center;
}

.home-footer-cta p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--home-muted);
}

.home-footer {
  background: var(--home-green-dark);
  color: #fff;
  padding: 28px 0 24px;
  text-align: center;
}

.home-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  margin-bottom: 16px;
}

.home-footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

.home-footer-copy {
  margin: 0;
  font-size: 12px;
  opacity: 0.85;
}

/* Mobile footer */
.home-footer-mobile {
  background: #05A105;
  color: #fff;
  padding: 24px 0;
}

.home-footer-mobile-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
}

.home-footer-mobile-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.home-footer-mobile-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.home-footer-mobile-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 1;
}

.home-footer-mobile-brand img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.home-footer-mobile-brand span {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}

.home-footer-mobile-copy {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  html:has(.home-page) {
    scroll-padding-top: 0;
  }

  .home-desktop-only {
    display: none !important;
  }

  .home-footer-mobile {
    display: block;
  }

  .home-page {
    --home-header-height: 84px;
    --home-hero-gap: 16px;
    --home-hero-cta-mt: 22px;
    --home-hero-trust-mt: 32px;
    --home-section-inset-x: 24px;
    padding-top: 0;
  }

  .home-header {
    position: static;
    width: auto;
    z-index: auto;
    background: var(--home-bg);
    border-bottom: none;
    padding-top: 28px;
    padding-bottom: 16px;
  }

  .home-viewport {
    min-height: calc(100vh - var(--home-header-height));
    min-height: calc(100dvh - var(--home-header-height));
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
  }

  .home-hero {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 32px;
    min-height: 0;
  }

  .home-hero > .home-container {
    width: calc(100% - (2 * var(--home-section-inset-x)));
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    margin-inline: auto;
  }

  .home-hero-grid {
    gap: var(--home-hero-gap);
  }

  .home-hero-copy {
    width: 100%;
  }

  .home-hero-art {
    width: min(300px, calc(100% - 48px));
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .home-hero-cta {
    margin-top: var(--home-hero-cta-mt);
    width: 100%;
  }

  .home-hero-cta-row {
    width: 100%;
  }

  .home-hero-cta-row .home-btn {
    flex: 1 1 0;
    min-width: 0;
  }

  .home-hero-cta-row--solo {
    justify-content: center;
  }

  .home-hero-cta-row--solo .home-btn-login-solo {
    flex: 0 0 calc((100% - 12px) / 2);
    max-width: calc((100% - 12px) / 2);
    background-color: #05A105 !important;
    color: #ffffff !important;
    border-color: #05A105 !important;
    font-size: 25px;
    font-weight: 600;
    min-height: 48px;
  }

  .home-hero-cta-row--solo .home-btn-dashboard-solo {
    flex: 0 0 calc((100% - 12px) / 2);
    max-width: calc((100% - 12px) / 2);
    background-color: #05A105 !important;
    color: #ffffff !important;
    border-color: #05A105 !important;
    font-size: 25px;
    font-weight: 600;
    min-height: 48px;
  }

  .home-header-inner {
    position: relative;
    display: block;
    min-height: 40px;
  }

  .home-header .home-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .home-brand {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .home-brand img {
    flex-shrink: 0;
    margin-left: 8px;
  }

  .home-brand span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 33px;
    font-weight: 700;
    padding-top: 6px;
  }

  .home-hero-title--mobile {
    font-size: 33px;
    line-height: 1.15;
    font-weight: 700;
  }

  .home-hero-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #595858;
  }

  .home-trust {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 10px;
    margin-top: var(--home-hero-trust-mt);
  }

  .home-trust p {
    font-size: 14px;
    font-weight: 600;
    color: #05A105;
    white-space: normal;
    text-align: center;
  }

  @media (max-width: 400px) {
    .home-trust {
      flex-direction: column;
      gap: 8px;
    }
  }

  #giftshop,
  #community.home-section,
  #security,
  .home-get-started {
    padding-top: 16px;
  }

  .home-section {
    padding: 0;
  }

  #giftshop {
    padding-bottom: 8px;
  }

  #community.home-section {
    padding-bottom: 8px;
  }

  #security {
    padding-bottom: 12px;
  }

  .home-get-started {
    padding-bottom: 20px;
  }

  .home-stats--community {
    margin-top: 20px;
    padding-top: 20px;
  }

  .home-category {
    margin-top: 20px;
  }

  .home-category--secondary,
  .home-category--church {
    padding-top: 12px;
  }

  .home-step {
    background: #fff;
    border: 1px solid #D5EFD5;
    border-radius: 14px;
    padding: 24px 16px 20px;
  }

  .home-step-badge {
    width: 44px;
    height: 44px;
    font-size: 25px;
  }

  .home-step-icon {
    width: 47px;
    height: 47px;
  }

  .home-step h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
  }

  .home-step p {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    max-width: none;
  }

  .home-stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #000;
  }

  .home-stat-value {
    font-size: 32px;
  }

  .home-security-card h3 {
    font-size: 20px;
    font-weight: 600;
  }

  .home-security-card p {
    font-size: 18px;
  }

  .home-get-started-title {
    font-size: 32px;
  }

  .home-get-started-desc {
    font-size: 18px;
  }

  /* Giftshop, Community, Security & Get Started mobile — match design mockup */
  #giftshop,
  #community,
  #security,
  .home-get-started {
    --home-section-inset-x: 32px;
  }

  #giftshop .home-container,
  #community .home-container,
  #security .home-container,
  .home-get-started .home-container,
  .home-footer-mobile .home-container {
    width: calc(100% - (2 * var(--home-section-inset-x)));
    max-width: none;
    margin-inline: auto;
    padding-inline: 0;
    text-align: left;
  }

  .home-get-started .home-container {
    text-align: center;
  }

  #giftshop .home-tag,
  #community .home-tag,
  #security .home-tag,
  #alumni-benefits .home-tag,
  .home-get-started .home-tag {
    font-size: 16px;
    font-weight: 600;
    color: #05A105;
    background: #CDE2CE;
    border: none;
    padding: 3px 10px;
    margin-bottom: 10px;
  }

  #giftshop .home-section-title,
  #community .home-section-title,
  #security .home-section-title,
  #alumni-benefits .home-section-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    color: #05A105;
    text-align: left;
  }

  .home-get-started .home-get-started-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    color: #05A105;
    text-align: center;
  }

  #giftshop .home-section-desc,
  #community .home-section-desc,
  #security .home-section-desc,
  #alumni-benefits .home-section-desc {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #000;
    text-align: left;
    margin-top: 8px;
    max-width: none;
  }

  .home-get-started .home-get-started-desc {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #000;
    text-align: center;
    margin-top: 8px;
    max-width: none;
  }

  .home-get-started {
    text-align: center;
  }

  .home-get-started-inner {
    align-items: center;
  }

  .home-get-started-content {
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    align-items: center;
  }

  .home-get-started-actions {
    margin-top: 20px;
    width: 100%;
  }

  .home-get-started-actions-row {
    justify-content: center;
    width: auto;
    max-width: 100%;
  }

  .home-get-started-actions-row .home-btn {
    flex: 0 0 auto;
    width: auto;
    padding-left: 18px;
    padding-right: 18px;
  }

  .home-footer-mobile {
    --home-section-inset-x: 32px;
  }

  .home-get-started-actions-row--solo .home-btn-login-solo {
    width: 100%;
    max-width: 100%;
    flex: none;
    background-color: #05A105 !important;
    color: #ffffff !important;
    border-color: #05A105 !important;
    font-size: 25px;
    font-weight: 600;
    min-height: 48px;
  }

  .home-get-started-actions-row--solo .home-btn-dashboard-solo {
    width: 100%;
    max-width: 100%;
    flex: none;
    background-color: #05A105 !important;
    color: #ffffff !important;
    border-color: #05A105 !important;
    font-size: 25px;
    font-weight: 600;
    min-height: 48px;
  }

  #giftshop .home-steps-list {
    margin-top: 28px;
    margin-left: 36px;
    margin-right: 36px;
    gap: 28px;
  }

  #giftshop .home-step {
    background: #fff;
    border: 1px solid #E2E8E4;
    border-radius: 14px;
    padding: 28px 48px 26px;
    margin-left: 12px;
    margin-right: 12px;
    box-sizing: border-box;
  }

  #giftshop .home-step-badge {
    width: 44px;
    height: 44px;
    font-size: 25px;
    margin-bottom: 22px;
  }

  #giftshop .home-step-icon {
    width: 47px;
    height: 47px;
    margin-bottom: 12px;
  }

  #giftshop .home-step h3 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
  }

  #giftshop .home-step p {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
    color: #000;
    max-width: none;
  }

  #security .home-security-cards {
    margin-top: 28px;
    margin-left: 28px;
    margin-right: 28px;
    gap: 28px;
  }

  #security .home-security-card {
    background: #fff;
    border: 1px solid #E2E8E4;
    border-radius: 14px;
    padding: 18px 20px 16px;
    margin-left: 8px;
    margin-right: 8px;
    box-sizing: border-box;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  #security .home-security-card-icon {
    margin-bottom: 12px;
    align-self: flex-start;
  }

  #security .home-security-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
    text-align: left;
    align-self: flex-start;
  }

  #security .home-security-card p {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
    color: #000;
    text-align: left;
  }

  /* Community group categories — mobile (university, secondary, church) */
  .home-category--university .home-category-head h3,
  .home-category--secondary .home-category-head h3,
  .home-category--church .home-category-head h3 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
  }

  .home-category--university .home-category-head p,
  .home-category--secondary .home-category-head p,
  .home-category--church .home-category-head p {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    line-height: 1.4;
  }

  .home-category--university .home-category-icon,
  .home-category--secondary .home-category-icon,
  .home-category--church .home-category-icon {
    width: 32px;
    height: 35px;
    border-radius: 6px;
  }

  .home-category--university .home-category-icon img,
  .home-category--secondary .home-category-icon img,
  .home-category--church .home-category-icon img {
    width: 18px;
    height: 18px;
  }

  .home-category--university .home-group-logo,
  .home-category--secondary .home-group-logo,
  .home-category--church .home-group-logo {
    width: 51px;
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .home-category--university .home-group-logo img,
  .home-category--secondary .home-group-logo img,
  .home-category--church .home-group-logo img {
    width: 51px;
    height: 51px;
    object-fit: contain;
    object-position: center;
  }

  .home-category--university .home-group-tag,
  .home-category--secondary .home-group-tag,
  .home-category--church .home-group-tag {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
  }

  .home-category--university .home-group-meta--university h4,
  .home-category--secondary .home-group-meta--university h4,
  .home-category--church .home-group-meta--university h4 {
    font-size: 16px;
    font-weight: 600;
  }

  .home-category--university .home-group-subtitle,
  .home-category--secondary .home-group-subtitle,
  .home-category--church .home-group-subtitle {
    font-size: 14px;
    font-weight: 400;
  }

  .home-category--university .home-group-status,
  .home-category--secondary .home-group-status,
  .home-category--church .home-group-status {
    font-size: 12px;
    font-weight: 500;
    padding: 3px 8px;
  }

  .home-category--university .home-group-stat,
  .home-category--secondary .home-group-stat,
  .home-category--church .home-group-stat {
    font-size: 12px;
    font-weight: 400;
    color: #595858;
  }

  .home-category--university .home-group-stat img,
  .home-category--secondary .home-group-stat img,
  .home-category--church .home-group-stat img {
    width: 25px;
    height: 25px;
  }

  .home-category--university .home-group-stat strong,
  .home-category--secondary .home-group-stat strong,
  .home-category--church .home-group-stat strong {
    font-size: 12px;
    font-weight: 400;
    color: #595858;
  }

  .home-stats--community .home-stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #05A105;
  }

  .home-stats--community .home-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: #000;
  }
}

@media (min-width: 992px) {
  .home-mobile-only {
    display: none !important;
  }

  .home-footer-mobile {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .home-viewport {
    min-height: calc(100vh - var(--home-header-height));
    min-height: calc(100dvh - var(--home-header-height));
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
  }

  .home-header {
    padding: 24px 0 20px;
  }

  .home-header-inner {
    position: relative;
    padding-bottom: 0;
  }

  .home-brand {
    margin-left: 0;
    min-width: 0;
  }

  .home-brand span {
    font-size: 26px;
    font-weight: 800;
    color: #05A105;
  }

  .home-nav {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    gap: 20px;
    max-width: calc(100% - 360px);
  }

  .home-nav .home-nav-link {
    color: #595858;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
  }

  .home-nav .home-nav-link:hover,
  .home-nav .home-nav-link.is-active {
    color: #05A105;
  }

  .home-header-actions {
    display: flex;
    margin-right: 0;
    flex-shrink: 0;
  }

  .home-header-actions .home-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .home-hero {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    padding: 0 0 32px;
    min-height: 0;
  }

  .home-hero > .home-container {
    width: calc(100% - (2 * var(--home-section-inset-x)));
    max-width: min(var(--home-section-max-width), calc(100% - (2 * var(--home-section-inset-x))));
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .home-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    text-align: left;
    gap: 32px;
  }

  .home-hero-art {
    display: none;
  }

  .home-hero-desktop-art {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .home-hero-desktop-art img {
    width: min(400px, 100%);
    height: auto;
  }

  .home-hero-title {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 800;
    color: #05A105;
  }

  .home-hero-title--mobile {
    display: none;
  }

  .home-hero-title--desktop {
    display: block;
  }

  .home-hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #595858;
    margin-top: 18px;
  }

  .home-trust p {
    font-size: 16px;
    font-weight: 600;
    color: #05A105;
  }

  .home-hero-cta-row {
    justify-content: flex-start;
  }

  .home-hero-cta-row--solo {
    display: none;
  }

  .home-trust {
    display: flex;
  }

  .home-social-login {
    display: none;
  }

  .home-section {
    padding: 56px 0;
  }

  #giftshop {
    padding: 80px 0 0;
  }

  #community.home-section {
    padding: 80px 0 56px;
  }

  #security {
    padding: 0 0 24px;
  }

  .home-security-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
    align-items: start;
  }

  .home-security-card {
    padding: 28px 22px;
  }

  .home-security-card h3 {
    font-size: 20px;
    font-weight: 600;
  }

  .home-security-card p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.45;
  }

  .home-get-started .home-get-started-title {
    font-size: 40px;
    font-weight: 700;
    color: #05A105;
    text-align: center;
  }

  .home-get-started .home-get-started-desc {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    text-align: center;
  }

  .home-get-started-inner {
    align-items: center;
  }

  .home-get-started-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    max-width: 100%;
  }

  .home-get-started-actions-row .home-btn {
    flex: 0 0 auto;
    width: auto;
  }

  .home-get-started-actions-row--solo .home-btn-login-solo {
    width: auto;
    min-width: 200px;
    font-size: 14px;
    font-weight: 700;
    min-height: 40px;
    background-color: #05A105 !important;
    color: #ffffff !important;
    border-color: #05A105 !important;
  }

  .home-get-started-actions-row--solo .home-btn-dashboard-solo {
    width: auto;
    min-width: 200px;
    font-size: 14px;
    font-weight: 700;
    min-height: 40px;
    background-color: #05A105 !important;
    color: #ffffff !important;
    border-color: #05A105 !important;
  }

  .home-stats--community {
    margin-top: 56px;
    padding-top: 48px;
  }

  .home-section-title {
    font-size: 32px;
  }

  .home-section-desc {
    font-size: 15px;
  }

  #giftshop .home-tag,
  #community .home-tag,
  #security .home-tag,
  #alumni-benefits .home-tag,
  .home-get-started .home-tag {
    font-size: 25px;
    font-weight: 600;
    color: #05A105;
    border: 1px solid #05A105;
  }

  #giftshop .home-tag,
  #community .home-tag,
  #security .home-tag,
  #alumni-benefits .home-tag,
  .home-get-started .home-tag {
    background: #CDE2CE;
    border: none;
    padding: 4px 12px;
  }

  #giftshop .home-section-title,
  #community .home-section-title,
  #security .home-section-title,
  #alumni-benefits .home-section-title {
    font-size: 40px;
    font-weight: 700;
    color: #05A105;
    text-align: left;
  }

  #giftshop .home-section-desc,
  #community .home-section-desc,
  #security .home-section-desc,
  #alumni-benefits .home-section-desc {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    text-align: left;
  }

  #giftshop .home-steps-list {
    margin-left: 0;
    margin-right: 0;
  }

  #security .home-security-cards {
    margin-left: 0;
    margin-right: 0;
  }

  #giftshop .home-step-badge {
    width: 44px;
    height: 44px;
    font-size: 25px;
  }

  #giftshop .home-step-icon {
    width: 47px;
    height: 47px;
  }

  #giftshop .home-step h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
  }

  #giftshop .home-step p {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    max-width: none;
  }

  .home-steps-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .home-step {
    background: #fff;
    border: 1px solid #D5EFD5;
    border-radius: 14px;
    padding: 24px 16px 20px;
  }

  .home-group-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .home-category--cols-4 .home-group-cards {
    grid-template-columns: repeat(4, 1fr);
  }

  .home-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .home-stat-value {
    font-size: 36px;
  }

  .home-stat-label {
    font-size: 20px;
    font-weight: 600;
    color: #000;
  }

  .home-footer-cta,
  .home-why {
    display: none !important;
  }

  .home-footer-desktop-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .home-footer-brand span {
    font-size: 30px;
  }

  .home-footer-brand img {
    width: 28px;
    height: 28px;
  }

  .home-footer-desktop-links a,
  .home-footer-desktop-copy {
    font-size: 20px;
  }
}

@media (min-width: 992px) and (max-width: 1279.98px) {
  .home-footer-brand span {
    font-size: 24px;
  }

  .home-footer-desktop-links a,
  .home-footer-desktop-copy {
    font-size: 16px;
  }

  .home-footer-desktop-inner {
    gap: 16px;
  }
}

@media (min-width: 1280px) {
  .home-brand {
    margin-left: -48px;
  }

  .home-brand span {
    font-size: 30px;
  }

  .home-nav {
    gap: 36px;
    max-width: none;
  }

  .home-nav .home-nav-link {
    font-size: 25px;
  }

  .home-header-actions {
    margin-right: -56px;
  }

  .home-header-actions .home-btn {
    padding: 8px 22px;
    font-size: 14px;
  }

  .home-footer-brand {
    margin-left: -48px;
  }

  .home-footer-desktop-links {
    gap: 12px 28px;
  }

  .home-footer-desktop-copy {
    margin-right: -56px;
    flex-shrink: 0;
  }
}

@media (min-width: 992px) {
  .home-page {
    --home-section-inset-x: 32px;
    --home-section-max-width: 1140px;
  }

  .home-container {
    width: min(1200px, 100% - 64px);
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* Legal pages */
.home-page--legal {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.home-legal {
  flex: 1 1 auto;
  background: #fff;
  padding: 32px 0 56px;
}

.home-legal-container {
  width: calc(100% - (2 * var(--home-section-inset-x)));
  max-width: min(var(--home-section-max-width), calc(100% - (2 * var(--home-section-inset-x))));
  margin-inline: auto;
  padding-inline: 0;
}

.home-legal-title {
  margin: 0 0 20px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--home-green);
}

.home-legal-body {
  color: var(--home-text);
  font-size: 15px;
  line-height: 1.7;
}

.home-legal-body h2 {
  margin: 28px 0 10px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: #000;
}

.home-legal-body p {
  margin: 0 0 14px;
}

.home-legal-body ul {
  margin: 0 0 16px;
  padding-left: 22px;
}

.home-legal-body li {
  margin-bottom: 8px;
}

.home-legal-body a {
  color: var(--home-green);
  font-weight: 600;
  text-decoration: none;
}

.home-legal-body a:hover {
  text-decoration: underline;
}

.home-legal-updated {
  margin-top: 24px !important;
  font-size: 14px;
  font-weight: 600;
  color: var(--home-muted);
}

.home-legal-contact-card {
  margin: 24px 0;
  padding: 24px 20px;
  border: 1px solid #D5EFD5;
  border-radius: 14px;
  background: var(--home-bg-soft);
}

.home-legal-contact-card h2 {
  margin-top: 0;
}

.home-legal-contact-link {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .home-page--legal .home-footer-mobile {
    display: block;
  }

  .home-legal {
    padding: 24px 0 40px;
  }

  .home-legal-title {
    font-size: 24px;
  }

  .home-legal-body {
    font-size: 14px;
  }

  .home-legal-body h2 {
    font-size: 16px;
  }
}

@media (min-width: 992px) {
  .home-legal {
    padding: 48px 0 72px;
  }

  .home-legal-title {
    font-size: 40px;
    margin-bottom: 24px;
  }

  .home-legal-body {
    font-size: 16px;
    max-width: 900px;
  }

  .home-legal-body h2 {
    font-size: 22px;
    margin-top: 32px;
  }
}
