.home-page .site-header {
  display: none;
}

.home-page {
  background:
    radial-gradient(circle at 50% 15%, rgb(255 255 255 / 95%), transparent 38rem),
    var(--color-canvas);
}

.home-hero {
  padding: var(--space-7) 0 var(--space-8);
  text-align: center;
}

.home-hero__inner {
  max-width: 54rem;
}

.home-brand {
  width: 6rem;
  margin: 0 auto var(--space-2);
}

.home-brand__symbol {
  display: block;
  width: 100%;
  overflow: visible;
}

.home-brand__person {
  fill: #7046bd;
}

.home-brand__heart {
  fill: none;
  stroke: #7046bd;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 8;
}

.home-brand__journey {
  fill: none;
  stroke: #21aaa8;
  stroke-linecap: round;
  stroke-width: 6;
}

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

h1 {
  margin-bottom: var(--space-3);
  color: #173663;
  font-size: clamp(2.5rem, 9vw, 4.35rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

h2 {
  margin-bottom: var(--space-5);
  color: #1b315b;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  line-height: 1.25;
}

.tagline {
  margin-bottom: var(--space-5);
  color: #008b91;
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 750;
}

.introduction {
  max-width: 42rem;
  margin: 0 auto var(--space-7);
  color: #3e4c60;
  font-size: 1.05rem;
}

.pillars-section {
  scroll-margin-top: var(--space-6);
}

.pillars {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-7);
  text-align: center;
}

.pillar {
  padding: var(--space-6) var(--space-5);
  border: 1px solid var(--pillar-border);
  border-radius: var(--radius-large);
  background: rgb(255 255 255 / 74%);
  box-shadow: 0 0.8rem 2rem rgb(32 50 75 / 7%);
}

.pillar--understand {
  --pillar-color: #7046bd;
  --pillar-border: #dcd2f0;
}

.pillar--support {
  --pillar-color: #ec6b20;
  --pillar-border: #f3d5c3;
}

.pillar--share {
  --pillar-color: #079a9c;
  --pillar-border: #c6e4e3;
}

.pillar__icon {
  min-height: 3.5rem;
  display: grid;
  place-items: center;
  margin-bottom: var(--space-3);
  color: var(--pillar-color);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.35em;
}

.pillar h3 {
  margin-bottom: var(--space-4);
  color: var(--pillar-color);
  font-size: 1.15rem;
  line-height: 1.25;
}

.pillar p {
  margin-bottom: 0;
  color: #435064;
  font-size: 0.925rem;
}

.community {
  margin-bottom: var(--space-7);
}

.community__list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5) var(--space-3);
  list-style: none;
}

.community__list li {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  color: #233755;
  font-size: 0.8rem;
  font-weight: 700;
}

.community__list span {
  min-height: 2.25rem;
  color: #079a9c;
  font-size: 1.75rem;
  letter-spacing: -0.25em;
}

.community__list li:nth-child(1) span { color: #7046bd; }
.community__list li:nth-child(2) span { color: #187fd0; }
.community__list li:nth-child(4) span { color: #ec6b20; }
.community__list li:nth-child(5) span { color: #56a83a; }

.trust-panel {
  margin-bottom: var(--space-6);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  border-radius: var(--radius-large);
  background: #f0eafb;
  color: #243b64;
  text-align: left;
}

.trust-panel__icon {
  color: #7046bd;
  font-size: 2.5rem;
}

.trust-panel p,
.trust-panel strong {
  display: block;
  margin-bottom: 0;
}

.home-actions {
  max-width: 28rem;
  margin-inline: auto;
  display: grid;
  gap: var(--space-3);
}

.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-5);
  border: 2px solid #079a9c;
  border-radius: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}

.button--primary {
  background: #079a9c;
  color: #fff;
}

.button--secondary {
  background: transparent;
  color: #087c81;
}

.home-page .site-footer {
  position: relative;
  overflow: hidden;
  padding-top: var(--space-8);
  border: 0;
  background: linear-gradient(165deg, #f0effb 25%, #dcdcf3 25% 58%, #c7cbea 58%);
  color: #263b61;
}

@media (min-width: 36rem) {
  .community__list {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 44rem) {
  .home-hero {
    padding-top: var(--space-8);
  }

  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}
