.page-home .home-hero {
  position: relative;
  background-color: var(--green-deep);
  background-image:
    linear-gradient(rgba(217, 201, 163, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 201, 163, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  color: var(--paper);
  overflow: hidden;
}
.page-home .home-hero__wall {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70%;
  height: auto;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}
.page-home .home-hero__media {
  position: relative;
  z-index: 1;
  height: 220px;
  margin: 0 0 16px;
  overflow: hidden;
}
.page-home .home-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .home-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 59, 26, 0.55) 0%, rgba(11, 59, 26, 0.05) 42%, rgba(11, 59, 26, 0.62) 100%);
}
.page-home .home-hero__coord {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--sand);
  letter-spacing: 0.08em;
}
.page-home .home-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  padding-bottom: 28px;
}
.page-home .home-hero__index {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 14px 0 10px;
  border-bottom: 1px solid rgba(217, 201, 163, 0.22);
}
.page-home .home-hero__side-label {
  margin-right: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--sand);
}
.page-home .home-hero__side-link {
  display: inline-block;
  padding: 7px 12px;
  border: 1px solid transparent;
  color: var(--paper);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.page-home .home-hero__side-link:hover,
.page-home .home-hero__side-link:focus-visible {
  border-color: var(--sand);
  background: rgba(217, 201, 163, 0.08);
}
.page-home .home-hero__rot {
  display: none;
}
.page-home .home-hero__content {
  position: relative;
  padding: 24px 0 4px;
}
.page-home .home-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--orange);
}
.page-home .home-hero__content h1 {
  margin: 12px 0 16px;
  font-family: var(--font-head);
  font-size: clamp(32px, 7.6vw, 52px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 12em;
}
.page-home .home-hero__lead {
  margin: 0;
  max-width: 46em;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(252, 250, 242, 0.84);
}
.page-home .home-hero__quick {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 22px;
  padding: 12px 18px;
  max-width: 640px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 90, 31, 0.14);
  font-size: 14px;
  font-weight: 600;
  color: var(--paper);
}
.page-home .home-hero__quick-step {
  padding: 3px 8px;
  border: 1px solid rgba(255, 90, 31, 0.55);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--orange);
}
.page-home .home-hero__quick-arrow {
  color: var(--orange);
  font-size: 18px;
}
.page-home .home-hero__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 26px;
  max-width: 780px;
}
@media (min-width: 480px) {
  .page-home .home-hero__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.page-home .home-hero-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 128px;
  padding: 16px 16px 14px;
  border: 1px solid rgba(217, 201, 163, 0.22);
  background: rgba(252, 250, 242, 0.06);
  color: var(--paper);
  text-decoration: none;
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}
.page-home .home-hero-card:hover {
  transform: translateY(-4px) skewX(-1deg);
  border-color: var(--orange);
  background: rgba(252, 250, 242, 0.12);
}
.page-home .home-hero-card:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
.page-home .home-hero-card__idx {
  position: absolute;
  top: 10px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
}
.page-home .home-hero-card__title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  font-style: italic;
}
.page-home .home-hero-card__meta {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(252, 250, 242, 0.7);
}
.page-home .home-hero-card__en {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--sand);
}
.page-home .home-hero__corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 132px;
  height: 52px;
  z-index: 1;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 14% 100%);
  transform: skewX(-8deg);
  transform-origin: top right;
}

.page-home .home-section {
  position: relative;
  padding: 52px 0;
}
.page-home .home-sec-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
}
.page-home .home-sec-head__title {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.2;
}
.page-home .home-sec-head__num {
  margin-right: 4px;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--orange);
}
.page-home .home-sec-head__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate);
}

.page-home .home-feature-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}
.page-home .home-feature-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
}
.page-home .home-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 4px;
  background: var(--orange);
}

.page-home .home-clips {
  background: var(--paper);
  color: var(--ink);
}
.page-home .home-clips__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
.page-home .home-clips__media {
  overflow: hidden;
  border: 1px solid var(--sand);
  background: var(--green-pale);
}
.page-home .home-clips__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.page-home .home-clips__intro {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}
.page-home .home-clips__timeline {
  display: grid;
  gap: 14px;
  margin: 22px 0 22px;
  padding: 14px 0 0;
  border-top: 1px solid var(--sand);
  list-style: none;
}
.page-home .home-clips__tl-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate);
}
.page-home .home-clips__tl-mark {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  margin-top: 6px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
}
.page-home .home-clips__tl-item--active .home-clips__tl-mark {
  width: 16px;
  height: 16px;
  margin-top: 5px;
  background: var(--green);
}

.page-home .home-teams {
  background: var(--green);
  color: var(--paper);
}
.page-home .home-teams .home-sec-head__desc,
.page-home .home-data .home-sec-head__desc {
  color: rgba(252, 250, 242, 0.72);
}
.page-home .home-teams__layout {
  max-width: 760px;
}
.page-home .home-teams__intro {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(252, 250, 242, 0.92);
}
.page-home .home-teams__media {
  margin: 20px 0;
  overflow: hidden;
  border: 1px solid rgba(252, 250, 242, 0.25);
  background: var(--green-deep);
}
.page-home .home-teams__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.page-home .home-catalogs {
  display: grid;
  gap: 12px;
}
.page-home .home-catalog {
  padding: 16px 18px;
  border-top: 1px solid rgba(252, 250, 242, 0.12);
  border-right: 1px solid rgba(252, 250, 242, 0.12);
  border-bottom: 1px solid rgba(252, 250, 242, 0.12);
  border-left: 4px solid var(--orange);
  background: rgba(11, 59, 26, 0.55);
}
.page-home .home-catalog__title {
  display: block;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  font-style: italic;
}
.page-home .home-catalog__desc {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(252, 250, 242, 0.76);
}

.page-home .home-data {
  background: var(--ink);
  color: var(--paper);
}
.page-home .home-data__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}
.page-home .home-data__panel {
  padding: 18px;
  border: 1px solid rgba(217, 201, 163, 0.2);
  background: rgba(252, 250, 242, 0.04);
}
.page-home .home-data__chart {
  display: block;
  width: 100%;
  height: auto;
}
.page-home .home-data__note {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(252, 250, 242, 0.78);
}
.page-home .home-data__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.page-home .home-stat {
  padding: 18px;
  border: 1px solid rgba(217, 201, 163, 0.16);
  background: rgba(252, 250, 242, 0.05);
}
.page-home .home-stat__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--orange);
}
.page-home .home-stat__label {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(252, 250, 242, 0.7);
}
.page-home .home-data__text {
  margin: 20px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(252, 250, 242, 0.86);
}

.page-home .home-screen {
  background: var(--green-pale);
  color: var(--ink);
}
.page-home .home-screen__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
.page-home .home-screen__media {
  overflow: hidden;
  border: 1px solid var(--sand);
  background: var(--paper);
}
.page-home .home-screen__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.page-home .home-screen__intro {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}
.page-home .home-screen .home-feature-list li {
  color: var(--ink);
}

.page-home .home-path {
  position: relative;
  background-color: var(--green-deep);
  background-image:
    linear-gradient(rgba(217, 201, 163, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 201, 163, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  color: var(--paper);
}
.page-home .home-path .container {
  position: relative;
  z-index: 2;
}
.page-home .home-path__label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--orange);
}
.page-home .home-path__title {
  margin: 10px 0 0;
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  font-style: italic;
}
.page-home .home-path__steps {
  display: grid;
  gap: 20px;
  margin: 32px 0 24px;
}
.page-home .home-path__arrow {
  display: block;
  font-size: 28px;
  line-height: 1;
  text-align: center;
  color: var(--orange);
  transform: rotate(90deg);
}
.page-home .home-path-step {
  display: block;
  padding: 24px;
  border: 1px solid rgba(217, 201, 163, 0.25);
  background: rgba(252, 250, 242, 0.04);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.page-home .home-path-step:hover,
.page-home .home-path-step:focus-within {
  border-color: var(--orange);
  background: rgba(252, 250, 242, 0.08);
}
.page-home .home-path-step__num {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
}
.page-home .home-path-step__title {
  margin: 8px 0;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  font-style: italic;
}
.page-home .home-path-step__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(252, 250, 242, 0.76);
}

.page-home .home-trust {
  padding: 40px 0;
  background: var(--paper);
  color: var(--ink);
}
.page-home .home-trust__inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.page-home .home-trust__label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--orange);
}
.page-home .home-trust__statement {
  margin: 8px 0 0;
  max-width: 34em;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
}
.page-home .home-trust__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-home .home-trust__nav a {
  padding: 8px 14px;
  border: 1px solid var(--sand);
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.page-home .home-trust__nav a:hover,
.page-home .home-trust__nav a:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
}

@media (min-width: 720px) {
  .page-home .home-clips__layout,
  .page-home .home-screen__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .page-home .home-data__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .page-home .home-data__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-home .home-path__steps {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
  }
  .page-home .home-path__arrow {
    transform: none;
  }
  .page-home .home-trust__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
}

@media (min-width: 960px) {
  .page-home .home-hero {
    min-height: 100vh;
  }
  .page-home .home-hero__media {
    position: absolute;
    top: 0;
    right: 0;
    width: 54%;
    height: 100%;
    z-index: 1;
    margin: 0;
  }
  .page-home .home-hero__media::after {
    background: linear-gradient(90deg, var(--green-deep) 0%, rgba(11, 59, 26, 0.72) 28%, rgba(11, 59, 26, 0.14) 78%, rgba(11, 59, 26, 0.02) 100%);
  }
  .page-home .home-hero__inner {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    min-height: 100vh;
    padding-bottom: 40px;
  }
  .page-home .home-hero__index {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 52px 28px 40px 0;
    border-right: 1px solid rgba(217, 201, 163, 0.25);
    border-bottom: 0;
    position: relative;
  }
  .page-home .home-hero__side-label {
    margin: 0 0 20px;
    letter-spacing: 0.18em;
  }
  .page-home .home-hero__side-link {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border-left: 2px solid transparent;
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.04em;
  }
  .page-home .home-hero__side-link:hover,
  .page-home .home-hero__side-link:focus-visible {
    border-left-color: var(--orange);
    background: rgba(217, 201, 163, 0.07);
  }
  .page-home .home-hero__rot {
    display: block;
    position: absolute;
    left: 6px;
    bottom: 28px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--sand);
  }
  .page-home .home-hero__content {
    grid-column: 2;
    grid-row: 1;
    padding: 56px 4vw 40px 52px;
  }
  .page-home .home-hero__content h1 {
    font-size: clamp(40px, 4.6vw, 72px);
  }
  .page-home .home-hero__lead {
    font-size: 17px;
  }
  .page-home .home-hero__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .page-home .home-section {
    padding: 76px 0;
  }
  .page-home .home-screen__content {
    order: 1;
  }
  .page-home .home-screen__media {
    order: 2;
  }
  .page-home .home-teams__layout {
    max-width: 820px;
  }
}
