.page-home {
  --home-blue: var(--color-primary-deep-blue);
  --home-gold: var(--color-primary-gold);
  --home-gold-deep: var(--color-accent-deep-gold);
  --home-teal: var(--color-accent-teal);
  --home-bg: var(--color-page-bg);
  --home-card: var(--color-card-bg);
  --home-ink: var(--color-text-primary);
  --home-muted: var(--color-text-secondary);
  --home-border: var(--color-line-border);
  --home-ok: var(--color-state-ok);
  font-family: var(--font-body);
  color: var(--home-ink);
  background: var(--home-bg);
  overflow-x: hidden;
}
.page-home h1,
.page-home h2,
.page-home h3 {
  font-family: var(--font-heading);
}
.page-home .section-index {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--home-gold-deep);
  margin-bottom: 8px;
}
.page-home .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  background: var(--home-gold);
  color: var(--color-card-bg);
  font-weight: 600;
  border-radius: 0;
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.page-home .cta-button:hover,
.page-home .cta-button:focus-visible {
  background: var(--home-gold-deep);
  transform: translateY(-1px);
}
.page-home .cta-button--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}
.page-home .cta-button--outline:hover,
.page-home .cta-button--outline:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--home-gold);
}
.page-home .status-panel__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-border);
  flex: 0 0 auto;
}
.page-home .status-panel__dot--ok {
  background: var(--home-ok);
  box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.25);
}
.page-home .home-hero {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--home-blue);
}
.page-home .home-hero__text {
  padding: 48px 20px 40px;
  color: #fff;
}
.page-home .home-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 32px;
}
.page-home .home-hero__crumb a {
  color: var(--home-gold);
  text-decoration: none;
}
.page-home .home-hero__kicker {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--home-gold);
  margin-bottom: 14px;
}
.page-home .home-hero__title {
  font-size: clamp(32px, 8vw, 64px);
  font-weight: 900;
  line-height: 1.12;
  margin: 0 0 20px;
  color: #fff;
  letter-spacing: 0.02em;
}
.page-home .home-hero__title span {
  display: block;
  color: var(--home-gold);
}
.page-home .home-hero__lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.8;
  max-width: 34em;
}
.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.page-home .home-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(184, 138, 68, 0.4);
}
.page-home .home-hero__meta-item {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.page-home .home-hero__meta-item .site-version {
  color: var(--home-gold);
  font-weight: 600;
}
.page-home .home-hero__visual {
  position: relative;
  min-height: 360px;
  background: linear-gradient(135deg, var(--home-blue), var(--home-teal));
}
.page-home .home-hero__visual-inner {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
}
.page-home .home-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.page-home .home-hero__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  display: block;
}
.page-home .home-console {
  background: var(--home-bg);
}
.page-home .home-console__aside {
  background: var(--home-blue);
  color: #fff;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(184, 138, 68, 0.4);
}
.page-home .home-console__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 12px;
  border: 1px solid rgba(184, 138, 68, 0.35);
}
.page-home .home-console__status-version {
  margin-left: 2px;
  color: var(--home-gold);
  font-weight: 600;
}
.page-home .home-console__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 6px;
}
.page-home .home-console__current {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--home-gold);
  margin: 0 0 12px;
}
.page-home .home-console__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-home .home-console__list a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 10px;
  border: 1px solid rgba(184, 138, 68, 0.35);
  transition: border-color var(--transition-fast), color var(--transition-fast);
}
.page-home .home-console__list a:hover,
.page-home .home-console__list a:focus-visible {
  border-color: var(--home-gold);
  color: var(--home-gold);
}
.page-home .home-console__main {
  min-width: 0;
}
.page-home .home-version,
.page-home .home-index,
.page-home .home-news {
  padding: 48px 20px;
}
.page-home .home-version__header,
.page-home .home-index__header,
.page-home .home-news__header {
  padding-left: 14px;
  border-left: 3px solid var(--home-gold);
}
.page-home .home-version__title,
.page-home .home-index__title,
.page-home .home-news__title,
.page-home .home-contact__title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin: 8px 0 16px;
}
.page-home .home-version__lead,
.page-home .home-index__lead,
.page-home .home-news__lead,
.page-home .home-contact__lead {
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 46em;
}
.page-home .home-version__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 28px;
}
.page-home .home-version__panel {
  background: var(--home-card);
  border: 1px solid var(--home-border);
  border-top: 3px solid var(--home-gold);
  padding: 24px;
}
.page-home .home-version__panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.page-home .home-version__panel-label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--home-muted);
}
.page-home .home-version__number {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 8px;
  color: var(--home-blue);
}
.page-home .home-version__status {
  font-size: 14px;
  color: var(--home-muted);
  margin-bottom: 20px;
}
.page-home .home-version__link {
  color: var(--home-gold-deep);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(138, 109, 59, 0.5);
  transition: border-color var(--transition-fast);
}
.page-home .home-version__link:hover,
.page-home .home-version__link:focus-visible {
  border-bottom-color: var(--home-gold);
}
.page-home .home-version__timeline {
  background: var(--home-card);
  border: 1px solid var(--home-border);
  padding: 24px;
}
.page-home .home-version__timeline-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--home-gold-deep);
}
.page-home .home-version__timeline-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
  display: grid;
  gap: 0;
}
.page-home .home-version__timeline-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--home-border);
}
.page-home .home-version__timeline-list li:last-child {
  border-bottom: none;
}
.page-home .home-version__tag {
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--home-bg);
  border: 1px solid var(--home-border);
  padding: 3px 8px;
  color: var(--home-ink);
  min-width: 52px;
  text-align: center;
}
.page-home .home-version__tag--current {
  background: var(--home-gold);
  border-color: var(--home-gold);
  color: #fff;
}
.page-home .home-version__footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 20px;
}
.page-home .image-frame--timeline img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 1px solid var(--home-border);
}
.page-home .home-version__caption {
  font-weight: 600;
  margin: 0 0 6px;
}
.page-home .home-version__note {
  color: var(--home-muted);
  font-size: 14px;
  margin: 0;
}
.page-home .home-index__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
.page-home .home-index__card {
  background: var(--home-card);
  border: 1px solid var(--home-border);
  padding: 24px;
  text-decoration: none;
  color: var(--home-ink);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}
.page-home .home-index__card:hover,
.page-home .home-index__card:focus-visible {
  border-color: var(--home-gold);
  box-shadow: 6px 6px 0 rgba(184, 138, 68, 0.25);
  transform: translate(-2px, -2px);
}
.page-home .home-index__no {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--home-gold-deep);
  letter-spacing: 0.1em;
}
.page-home .home-index__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--home-muted);
}
.page-home .home-index__card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 6px 0 0;
}
.page-home .home-index__card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--home-muted);
  margin: 0;
}
.page-home .home-index__go {
  margin-top: auto;
  color: var(--home-gold-deep);
  font-size: 14px;
  font-weight: 600;
}
.page-home .home-news__header {
  position: relative;
}
.page-home .home-news__decor {
  position: absolute;
  right: 0;
  top: -12px;
  width: 72px;
  height: 72px;
  opacity: 0.35;
  pointer-events: none;
}
.page-home .home-news__decor img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .home-news__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.page-home .home-news__filter {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--home-border);
  background: var(--home-card);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--home-ink);
  text-decoration: none;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}
.page-home .home-news__filter:first-child {
  border-color: var(--home-gold);
  color: var(--home-gold-deep);
}
.page-home .home-news__filter:hover,
.page-home .home-news__filter:focus-visible {
  border-color: var(--home-gold);
}
.page-home .home-news__list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.page-home .home-news__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid var(--home-border);
}
.page-home .home-news__item:first-child {
  border-top: 1px solid var(--home-border);
}
.page-home .home-news__item-tags {
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-home .home-news__tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--home-gold-deep);
  border: 1px solid rgba(184, 138, 68, 0.4);
  padding: 2px 8px;
  width: fit-content;
}
.page-home .home-news__time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--home-muted);
}
.page-home .home-news__item h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}
.page-home .home-news__item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--home-muted);
  margin: 0;
  max-width: 60em;
}
.page-home .home-news__go {
  font-size: 14px;
  font-weight: 600;
  color: var(--home-gold-deep);
  text-decoration: none;
}
.page-home .home-contact {
  background: var(--home-blue);
  color: #fff;
  padding: 56px 20px;
}
.page-home .home-contact__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.page-home .home-contact__lead {
  color: rgba(255, 255, 255, 0.7);
}
.page-home .home-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}
.page-home .home-contact__card {
  background: var(--home-card);
  color: var(--home-ink);
  padding: 20px;
  border-top: 2px solid var(--home-gold);
}
.page-home .home-contact__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--home-muted);
  margin-bottom: 8px;
}
.page-home .home-contact__value {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  word-break: break-all;
}
.page-home .home-contact__bottom {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid rgba(184, 138, 68, 0.35);
  padding-top: 28px;
}
.page-home .home-contact__response {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-home .home-contact__chart img {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  border: 1px solid rgba(184, 138, 68, 0.5);
}
.page-home .home-contact__note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 30em;
  margin: 0;
}
.page-home .home-contact__bottom .cta-button {
  width: fit-content;
}
@media (min-width: 640px) {
  .page-home .home-index__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .home-contact__response {
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 760px) {
  .page-home .home-contact__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .home-contact__card--wide {
    grid-column: 1 / -1;
  }
}
@media (min-width: 960px) {
  .page-home .home-hero {
    grid-template-columns: 7fr 5fr;
    min-height: 100vh;
  }
  .page-home .home-hero__text {
    padding: 80px 56px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .page-home .home-hero__title {
    font-size: clamp(44px, 5vw, 68px);
  }
  .page-home .home-hero__lead {
    font-size: 17px;
  }
  .page-home .home-hero__visual {
    min-height: 0;
  }
  .page-home .home-hero__visual-inner {
    height: 100%;
    min-height: 720px;
  }
  .page-home .home-console {
    display: grid;
    grid-template-columns: 280px 1fr;
  }
  .page-home .home-console__aside {
    position: sticky;
    top: 0;
    height: 100vh;
    box-sizing: border-box;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 56px 32px;
    border-bottom: none;
    border-right: 1px solid rgba(184, 138, 68, 0.35);
  }
  .page-home .home-console__list {
    flex-direction: column;
    gap: 2px;
  }
  .page-home .home-console__list a {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.78);
  }
  .page-home .home-version,
  .page-home .home-index,
  .page-home .home-news {
    padding: 72px 32px;
  }
  .page-home .home-version__body {
    grid-template-columns: 280px 1fr;
    gap: 32px;
  }
  .page-home .home-version__footer {
    grid-template-columns: 400px 1fr;
    align-items: center;
    gap: 32px;
  }
  .page-home .home-news__decor {
    width: 120px;
    height: 120px;
    right: 24px;
    top: -8px;
  }
  .page-home .home-news__item {
    grid-template-columns: 130px 1fr 90px;
    align-items: center;
    gap: 20px;
  }
  .page-home .home-news__item-tags {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .page-home .home-news__item h3 {
    font-size: 20px;
  }
  .page-home .home-news__go {
    text-align: right;
  }
  .page-home .home-contact {
    padding: 96px 48px;
  }
  .page-home .home-contact__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1080px) {
  .page-home .home-contact__grid {
    grid-template-columns: 1.2fr 1fr 1.4fr;
  }
  .page-home .home-contact__card--wide {
    grid-column: auto;
  }
}
@media (min-width: 1200px) {
  .page-home .home-index__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
