.page-home {
  --home-gold-soft: rgba(212, 175, 55, 0.18);
  --home-primary-soft: rgba(0, 179, 134, 0.12);
  background-color: var(--c-bg);
  color: var(--c-text);
  font-family: var(--t-sans);
  overflow-x: hidden;
}

.page-home .home-page-dragon {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 110px;
  pointer-events: none;
  opacity: 0.7;
  z-index: 0;
}
.page-home .home-page-dragon__svg {
  width: 100%;
  height: 100%;
  display: block;
}

.page-home .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--t-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 0.6rem;
}
.page-home .section-label::before {
  content: "";
  width: 2.2em;
  height: 2px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-gold));
  flex-shrink: 0;
}
.page-home .section-label--gold {
  color: var(--c-gold);
}
.page-home .section-label--gold::before {
  background: linear-gradient(90deg, var(--c-gold), transparent);
}
.page-home .section-title {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.24;
  color: var(--c-deep);
  margin: 0 0 0.85rem;
}

.page-home .home-hero {
  position: relative;
  padding: 1.25rem 1.25rem 2rem;
  z-index: 1;
}
.page-home .home-hero__grid {
  display: grid;
  grid-template-areas: "copy" "visual" "index";
  gap: 1.75rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-home .home-hero__copy { grid-area: copy; }
.page-home .home-hero__visual { grid-area: visual; }
.page-home .home-hero__index { grid-area: index; }

.page-home .home-hero__crumb {
  font-size: 0.8rem;
  color: var(--c-text-2);
  margin-bottom: 1rem;
}
.page-home .home-hero__crumb a {
  color: var(--c-text-2);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.page-home .home-hero__crumb a:hover {
  color: var(--c-primary);
}
.page-home .home-hero__crumb .breadcrumb__sep {
  margin: 0 0.4em;
  opacity: 0.5;
}
.page-home .home-hero__crumb [aria-current] {
  color: var(--c-deep);
  font-weight: 600;
}

.page-home .home-hero__kicker {
  font-family: var(--t-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--c-primary);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.page-home .home-hero__title {
  font-size: clamp(2.1rem, 7vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--c-deep);
  margin: 0 0 1.25rem;
}
.page-home .home-hero__title span {
  display: block;
  color: var(--c-primary);
  position: relative;
  padding-left: 0.52em;
  margin-top: 0.18em;
}
.page-home .home-hero__title span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.08em;
  bottom: 0.08em;
  width: 0.26em;
  background: linear-gradient(180deg, var(--c-gold), var(--c-gold-light));
}

.page-home .home-hero__lead {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--c-text-2);
  max-width: 620px;
  margin: 0 0 1.75rem;
}
.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-home .btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.page-home .btn:hover {
  transform: translateY(-2px);
}
.page-home .btn-primary:hover {
  box-shadow: 0 8px 24px rgba(0, 179, 134, 0.28);
}
.page-home .btn-gold:hover {
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.page-home .home-hero__visual {
  position: relative;
  margin: 0;
}
.page-home .home-hero__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 3%, 98% 100%, 2% 96%);
  filter: contrast(1.06) saturate(1.1);
  box-shadow: var(--shadow-md);
}
.page-home .home-hero__chop {
  position: absolute;
  left: 1rem;
  bottom: 1.25rem;
  display: inline-block;
  background: var(--c-deep);
  color: var(--c-gold);
  font-family: var(--t-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.5rem 1rem 0.5rem 0.9rem;
  clip-path: polygon(0 0, 100% 0, 94% 100%, 4% 100%);
}

.page-home .home-hero__index {
  position: relative;
  background: linear-gradient(150deg, var(--c-deep) 0%, var(--c-deep-3) 100%);
  color: #F7F7F2;
  padding: 2rem 1.65rem;
  overflow: hidden;
}
.page-home .home-hero__index::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--c-gold) 0%, var(--c-primary) 60%, transparent 100%);
}
.page-home .home-hero__index-caption {
  font-family: var(--t-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--c-gold);
  margin: 0 0 0.5rem;
}
.page-home .home-hero__index-title {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 1.4rem;
}
.page-home .home-hero__index-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.15rem;
}
.page-home .home-hero__index-list a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.1rem;
  color: rgba(247, 247, 242, 0.82);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.28s var(--ease), padding-left 0.28s var(--ease), border-color 0.28s var(--ease);
}
.page-home .home-hero__index-list a::after {
  content: "→";
  color: var(--c-gold);
  font-family: var(--t-mono);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}
.page-home .home-hero__index-list a:hover {
  color: #fff;
  padding-left: 0.4rem;
  border-color: rgba(212, 175, 55, 0.5);
}
.page-home .home-hero__index-list a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.page-home .home-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 1.8rem;
}
.page-home .home-hero__stat {
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1rem 0.4rem 0.9rem;
}
.page-home .home-hero__stat-num {
  display: block;
  font-family: var(--t-mono);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--c-gold);
}
.page-home .home-hero__stat-label {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.74rem;
  line-height: 1.4;
  color: rgba(247, 247, 242, 0.72);
}

.page-home .home-focus {
  padding: 2.5rem 1.25rem;
  background: var(--c-surface);
}
.page-home .home-focus__grid {
  display: grid;
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-home .home-focus__copy .section-title {
  max-width: 520px;
}
.page-home .home-focus__lead {
  color: var(--c-text-2);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.page-home .home-focus__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.page-home .home-focus__points li {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed var(--c-border);
}
.page-home .home-focus__points li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--c-primary);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.page-home .home-focus__points span {
  font-weight: 700;
  color: var(--c-deep);
  min-width: 5em;
}
.page-home .home-focus__points small {
  color: var(--c-text-2);
  font-size: 0.85rem;
}
.page-home .home-focus__chart {
  margin: 0;
  position: relative;
}
.page-home .home-focus__chart img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: contrast(1.04) saturate(1.05);
}
.page-home .home-focus__board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--c-deep), var(--c-deep-3));
  color: #fff;
  padding: 1.25rem;
}
.page-home .home-focus__cell {
  border-left: 3px solid var(--c-gold);
  padding: 1rem 1.2rem;
  transition: background-color 0.3s var(--ease);
}
.page-home .home-focus__cell:nth-child(2) { border-left-color: var(--c-primary); }
.page-home .home-focus__cell:nth-child(3) { border-left-color: var(--c-gold-light); }
.page-home .home-focus__cell:hover {
  background-color: rgba(255, 255, 255, 0.04);
}
.page-home .home-focus__num {
  display: inline-block;
  font-family: var(--t-mono);
  font-weight: 700;
  font-size: 1.85rem;
  line-height: 1.2;
  color: var(--c-gold);
}
.page-home .home-focus__unit {
  font-size: 0.9rem;
  color: var(--c-gold-light);
  margin-left: 0.25rem;
}
.page-home .home-focus__cell p {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: rgba(247, 247, 242, 0.78);
  line-height: 1.65;
}

.page-home .home-matrix {
  padding: 3rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-home .home-matrix__head {
  max-width: 680px;
  margin-bottom: 1.75rem;
}
.page-home .home-matrix__head > p:last-child {
  color: var(--c-text-2);
  margin: 0;
  line-height: 1.75;
}
.page-home .home-matrix__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.page-home .home-matrix__item {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--c-surface);
  padding: 1.65rem 1.5rem 1.4rem;
  text-decoration: none;
  color: var(--c-text);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--c-primary);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.page-home .home-matrix__item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 42px;
  height: 42px;
  border-left: 1px solid rgba(0, 179, 134, 0.16);
  border-bottom: 1px solid rgba(0, 179, 134, 0.16);
  pointer-events: none;
}
.page-home .home-matrix__item--gold {
  border-top-color: var(--c-gold);
  background: linear-gradient(150deg, var(--c-deep), var(--c-deep-3));
  color: #F7F7F2;
}
.page-home .home-matrix__item--gold::after {
  border-color: rgba(212, 175, 55, 0.3);
}
.page-home .home-matrix__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--c-gold);
}
.page-home .home-matrix__tag {
  font-family: var(--t-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--c-primary);
  margin-bottom: 0.5rem;
}
.page-home .home-matrix__item--gold .home-matrix__tag {
  color: var(--c-gold);
}
.page-home .home-matrix__item h3 {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 0.65rem;
  color: var(--c-deep);
}
.page-home .home-matrix__item--gold h3 {
  color: #fff;
}
.page-home .home-matrix__item p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--c-text-2);
  margin: 0;
}
.page-home .home-matrix__item--gold p {
  color: rgba(247, 247, 242, 0.78);
}
.page-home .home-matrix__go {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-primary);
  position: relative;
}
.page-home .home-matrix__go::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--c-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.page-home .home-matrix__item:hover .home-matrix__go::after {
  transform: scaleX(1);
}
.page-home .home-matrix__item--gold .home-matrix__go {
  color: var(--c-gold);
}
.page-home .home-matrix__item--gold .home-matrix__go::after {
  background: var(--c-gold);
}

.page-home .home-member {
  padding: 3rem 1.25rem;
  background: var(--c-bg);
}
.page-home .home-member__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-home .home-member__copy .section-title {
  margin-bottom: 1rem;
}
.page-home .home-member__copy > p:not(.section-label) {
  color: var(--c-text-2);
  line-height: 1.85;
}
.page-home .home-member__benefits {
  list-style: none;
  margin: 1.5rem 0 1.9rem;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}
.page-home .home-member__benefits li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
  color: var(--c-deep);
}
.page-home .home-member__check {
  width: 1.7em;
  height: 1.7em;
  border-radius: 50%;
  background: var(--home-primary-soft);
  color: var(--c-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.82em;
  border: 1px solid rgba(0, 179, 134, 0.35);
  flex-shrink: 0;
}
.page-home .home-member__shot {
  position: relative;
  margin: 0;
}
.page-home .home-member__shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 6px solid var(--c-surface);
  box-shadow: var(--shadow-md);
  transform: rotate(-1.2deg);
}
.page-home .home-member__shot::before {
  content: "";
  position: absolute;
  inset: -0.5rem 0.5rem 0.5rem -0.5rem;
  background: linear-gradient(135deg, var(--c-gold), transparent 70%);
  z-index: -1;
  opacity: 0.55;
  transform: rotate(2deg);
}

.page-home .home-support {
  padding: 3rem 1.25rem;
  background: linear-gradient(180deg, var(--c-surface), var(--c-bg));
}
.page-home .home-support__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-home .home-support__head {
  max-width: 720px;
  margin-bottom: 2rem;
}
.page-home .home-support__head > p:not(.section-label) {
  color: var(--c-text-2);
  line-height: 1.8;
  margin: 0;
}
.page-home .home-support__grid {
  display: grid;
  gap: 1rem;
}
.page-home .home-support__card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  padding: 1.6rem 1.5rem;
  text-decoration: none;
  color: var(--c-text);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  position: relative;
}
.page-home .home-support__card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--c-primary), var(--c-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.page-home .home-support__card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.page-home .home-support__card:hover::after {
  transform: scaleX(1);
}
.page-home .home-support__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: var(--c-bg);
  color: var(--c-primary);
  font-family: var(--t-mono);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
}
.page-home .home-support__icon--gold {
  color: var(--c-gold);
}
.page-home .home-support__card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 0.65rem;
  color: var(--c-deep);
}
.page-home .home-support__card p {
  color: var(--c-text-2);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0.4rem 0 0;
}
.page-home .home-support__link {
  color: var(--c-primary);
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.page-home .home-support__link:hover {
  text-decoration: underline;
  color: var(--c-gold);
}
.page-home .home-support__go {
  display: inline-block;
  margin-top: 1rem;
  color: var(--c-primary);
  font-weight: 700;
  font-size: 0.85rem;
}
.page-home .home-support__legal {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  font-size: 0.84rem;
  color: var(--c-text-2);
}
.page-home .home-support__legal span:last-child {
  color: var(--c-deep);
  font-weight: 600;
}

.page-home .home-dragon-mark {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: -1rem;
}
.page-home .home-dragon-mark__img {
  display: block;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  opacity: 0.14;
  filter: grayscale(0.35) contrast(1.1);
}

@media (min-width: 768px) {
  .page-home .home-hero {
    padding: 2rem 2rem 2.5rem;
  }
  .page-home .home-hero__title {
    font-size: clamp(2.8rem, 5vw, 3.6rem);
  }
  .page-home .home-hero__index {
    padding: 2.5rem 2.25rem;
  }
  .page-home .home-hero__stats {
    gap: 1rem;
  }
  .page-home .home-focus,
  .page-home .home-matrix,
  .page-home .home-member,
  .page-home .home-support {
    padding: 4rem 2rem;
  }
  .page-home .home-focus__points {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .page-home .home-focus__points li {
    border-bottom: 0;
    border-left: 1px solid var(--c-border);
    padding-left: 1rem;
    flex-direction: column;
    gap: 0.25rem;
  }
  .page-home .home-focus__points li::before {
    display: none;
  }
  .page-home .home-focus__board {
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    padding: 0;
  }
  .page-home .home-focus__cell {
    padding: 1.75rem 1.5rem;
    border-left: 0;
    border-top: 3px solid var(--c-gold);
  }
  .page-home .home-focus__cell:nth-child(2) { border-top-color: var(--c-primary); }
  .page-home .home-focus__cell:nth-child(3) { border-top-color: var(--c-gold-light); }
  .page-home .home-matrix__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .page-home .home-support__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .page-home .section-title {
    font-size: 2.2rem;
  }
  .page-home .home-hero {
    padding: 2.5rem clamp(1.5rem, 5vw, 4rem) 3.5rem;
  }
  .page-home .home-hero__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    grid-template-areas:
      "copy index"
      "visual index";
    gap: 2rem clamp(1.5rem, 4vw, 3.5rem);
  }
  .page-home .home-hero__copy {
    align-self: start;
  }
  .page-home .home-hero__lead {
    font-size: 1.08rem;
  }
  .page-home .home-hero__index {
    align-self: stretch;
    clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%);
    padding: 3.5rem 2.75rem;
    margin-right: -0.1rem;
  }
  .page-home .home-hero__index-list a {
    padding: 0.9rem 0.1rem;
  }
  .page-home .home-hero__stats {
    margin-top: 2.6rem;
  }
  .page-home .home-hero__stat {
    padding: 1.4rem 0.5rem 1.2rem;
  }
  .page-home .home-focus__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    grid-template-areas:
      "copy chart"
      "board board";
    gap: 2.5rem clamp(1.5rem, 4vw, 4rem);
  }
  .page-home .home-focus__copy { grid-area: copy; }
  .page-home .home-focus__chart { grid-area: chart; }
  .page-home .home-focus__board { grid-area: board; }
  .page-home .home-focus__cell p {
    font-size: 0.95rem;
  }
  .page-home .home-matrix__grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .page-home .home-matrix__item:nth-child(1) { grid-column: span 4; }
  .page-home .home-matrix__item:nth-child(2) { grid-column: span 2; }
  .page-home .home-matrix__item:nth-child(3) { grid-column: span 2; }
  .page-home .home-matrix__item:nth-child(4) { grid-column: span 4; }
  .page-home .home-member__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 4rem;
  }
  .page-home .home-member__shot img {
    aspect-ratio: 4 / 3;
  }
}
