.page-home {
  --home-orbit-white: rgba(255, 255, 255, 0.85);
  --home-orbit-orange: rgba(255, 107, 53, 0.9);
  background-color: var(--paper);
  font-family: var(--font-body);
  color: var(--ink);
  overflow-x: hidden;
}

.page-home h1,
.page-home h2,
.page-home h3 {
  font-family: var(--font-head);
}

.page-home h1 {
  margin: 0;
}

.page-home h2 {
  font-weight: 900;
  letter-spacing: -0.01em;
}

.page-home h3 {
  font-weight: 700;
}

.page-home .home-hero {
  position: relative;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 28px 20px 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.page-home .home-hero-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--deep-green);
  background: var(--light-green);
  border-radius: var(--radius-full);
  padding: 7px 16px;
  margin-bottom: 18px;
}

.page-home .home-hero h1 {
  font-size: clamp(38px, 7vw, 68px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.page-home .home-hero h1 em {
  font-style: normal;
  color: var(--grass);
}

.page-home .home-hero-lead {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(30, 30, 30, 0.78);
  max-width: 48ch;
  margin-bottom: 22px;
}

.page-home .home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.page-home .home-hero-note {
  font-size: 12px;
  color: var(--warm-gray);
  border-left: 2px solid var(--orange);
  padding-left: 10px;
  line-height: 1.6;
}

.page-home .home-hero-viz {
  position: relative;
}

.page-home .home-hero-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.page-home .home-orbit-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.page-home .home-orbit-ring {
  position: absolute;
  border-radius: 50%;
}

.page-home .home-orbit-ring-one {
  width: 64%;
  height: 64%;
  top: 18%;
  left: 18%;
  border: 2px dashed var(--home-orbit-white);
  animation: home-orbit-spin 32s linear infinite;
}

.page-home .home-orbit-ring-two {
  width: 36%;
  height: 36%;
  top: 32%;
  left: 32%;
  border: 1px solid var(--home-orbit-orange);
  animation: home-orbit-spin-rev 18s linear infinite;
}

.page-home .home-orbit-ball {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.18);
  top: 16%;
  left: 30%;
}

.page-home .home-orbit-ball-two {
  width: 11px;
  height: 11px;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
  top: 66%;
  left: 66%;
}

.page-home .home-viz-note {
  position: absolute;
  right: 12px;
  top: 16px;
  z-index: 3;
  writing-mode: vertical-rl;
  color: var(--white);
  background: rgba(30, 30, 30, 0.55);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.page-home .home-features {
  background: var(--light-green);
  padding: 72px 20px;
}

.page-home .home-features-head {
  max-width: var(--container-max);
  margin-inline: auto;
  margin-bottom: 40px;
}

.page-home .home-features-head h2 {
  font-size: clamp(26px, 4vw, 38px);
  margin: 10px 0 0;
}

.page-home .home-features-wrap {
  max-width: var(--container-max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .home-feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-home .home-feature {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 22px 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-left: 4px solid var(--grass);
}

.page-home .home-feature:nth-child(2) {
  border-left-color: var(--navy);
}

.page-home .home-feature:nth-child(3) {
  border-left-color: var(--orange);
}

.page-home .home-feature:nth-child(4) {
  border-left-color: var(--deep-green);
}

.page-home .home-feature-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 30px;
  line-height: 1;
  color: var(--grass);
  min-width: 40px;
}

.page-home .home-feature h3 {
  font-size: 18px;
  margin: 0 0 6px;
  line-height: 1.3;
}

.page-home .home-feature p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(30, 30, 30, 0.72);
  margin: 0;
}

.page-home .home-feature-visual {
  position: relative;
}

.page-home .home-feature-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.page-home .home-feature-note {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
}

.page-home .home-map {
  padding: 72px 20px;
  max-width: var(--container-max);
  margin-inline: auto;
}

.page-home .home-map-head {
  margin-bottom: 28px;
}

.page-home .home-map-head h2 {
  font-size: clamp(26px, 4vw, 38px);
  margin: 10px 0 8px;
}

.page-home .home-map-desc {
  font-size: 14px;
  color: rgba(30, 30, 30, 0.65);
  max-width: 58ch;
  line-height: 1.7;
}

.page-home .home-map-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .home-map-card {
  display: block;
  text-decoration: none;
  color: var(--ink);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  box-shadow: var(--shadow-sm);
}

.page-home .home-map-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.page-home .home-map-card::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.page-home .home-map-index {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--warm-gray);
  display: block;
  margin-bottom: 10px;
}

.page-home .home-map-card h3 {
  font-size: 20px;
  margin: 0 0 8px;
}

.page-home .home-map-card p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 16px;
  opacity: 0.78;
}

.page-home .home-map-more {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.page-home .home-map-card--light {
  background: var(--light-green);
}

.page-home .home-map-card--navy {
  background: var(--navy);
  color: var(--white);
}

.page-home .home-map-card--orange {
  background: var(--orange);
  color: var(--white);
}

.page-home .home-map-card--dark {
  background: var(--ink);
  color: var(--white);
}

.page-home .home-map-card--navy .home-map-index,
.page-home .home-map-card--orange .home-map-index,
.page-home .home-map-card--dark .home-map-index {
  color: rgba(255, 255, 255, 0.72);
}

.page-home .home-map-card--navy p,
.page-home .home-map-card--orange p,
.page-home .home-map-card--dark p {
  opacity: 0.82;
}

.page-home .home-tablet {
  padding: 64px 20px;
  background: var(--navy);
  color: var(--white);
}

.page-home .home-tablet-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .home-tablet-copy h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  margin: 12px 0 12px;
}

.page-home .home-tablet-copy p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 20px;
}

.page-home .home-tablet-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.page-home .home-stats {
  padding: 64px 20px;
  background: var(--paper);
}

.page-home .home-stats-inner {
  max-width: var(--container-max);
  margin-inline: auto;
}

.page-home .home-stats-head {
  margin-bottom: 32px;
}

.page-home .home-stats-head h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  margin: 10px 0 0;
}

.page-home .home-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.page-home .home-stat {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--grass);
}

.page-home .home-stat:nth-child(2) {
  border-bottom-color: var(--navy);
}

.page-home .home-stat:nth-child(3) {
  border-bottom-color: var(--orange);
}

.page-home .home-stat:nth-child(4) {
  border-bottom-color: var(--deep-green);
}

.page-home .home-stat strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(36px, 6vw, 54px);
  line-height: 1.1;
  color: var(--deep-green);
}

.page-home .home-stat span {
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--warm-gray);
  letter-spacing: 0.06em;
}

.page-home .home-news {
  padding: 72px 20px;
  background: var(--paper);
}

.page-home .home-news-head {
  max-width: var(--container-max);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.page-home .home-news-head h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  margin: 8px 0 0;
}

.page-home .home-news-more {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}

.page-home .home-filter-bar {
  max-width: var(--container-max);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.page-home .home-news-list {
  max-width: var(--container-max);
  margin-inline: auto;
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.page-home .home-news-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--navy);
}

.page-home .home-news-item:nth-child(2) {
  border-left-color: var(--orange);
}

.page-home .home-news-item:nth-child(3) {
  border-left-color: var(--grass);
}

.page-home .home-news-item h3 {
  font-size: 17px;
  margin: 10px 0 6px;
}

.page-home .home-news-item p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(30, 30, 30, 0.72);
  margin: 0;
}

.page-home .home-news-tag {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  background: rgba(0, 78, 137, 0.08);
  border-radius: var(--radius-full);
  padding: 4px 10px;
}

.page-home .home-news-footnote {
  max-width: var(--container-max);
  margin-inline: auto;
  margin-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(30, 30, 30, 0.1);
  padding-top: 18px;
}

.page-home .home-news-footnote p {
  font-size: 13px;
  color: var(--warm-gray);
  margin: 0;
}

.page-home .home-news-footnote a {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--deep-green);
  text-decoration: none;
}

.page-home .home-brand {
  padding: 72px 20px 40px;
  max-width: var(--container-max);
  margin-inline: auto;
}

.page-home .home-brand-copy {
  max-width: 64ch;
}

.page-home .home-brand-copy h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  margin: 10px 0 0;
}

.page-home .home-brand-copy p {
  font-size: 15px;
  line-height: 1.8;
  margin: 16px 0 24px;
}

.page-home .home-brand img {
  width: 100%;
  aspect-ratio: 8 / 2;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-top: 20px;
  display: block;
}

.page-home .home-trust {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 24px 20px 64px;
}

.page-home .home-trust p {
  margin: 0;
  background: rgba(60, 179, 113, 0.1);
  border-left: 4px solid var(--grass);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 18px 22px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(30, 30, 30, 0.8);
}

.page-home .home-trust a {
  color: var(--deep-green);
  font-family: var(--font-head);
  font-weight: 700;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .page-home .home-hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    padding-top: 64px;
    padding-bottom: 96px;
  }

  .page-home .home-map-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .home-stat-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .home-tablet-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .page-home .home-news-list {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .home-news-item:first-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .page-home .home-features-wrap {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .page-home .home-feature-visual {
    position: sticky;
    top: 24px;
  }
}

@keyframes home-orbit-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes home-orbit-spin-rev {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
