.page-home {
  --home-gap: 20px;
  --home-radius: 28px;
}

.page-home .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding-top: 18px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.page-home .breadcrumb__item {
  color: var(--c-mid);
}

.page-home .breadcrumb__item--current {
  color: var(--c-gold);
  font-weight: 700;
}

.page-home .home-hero {
  padding: 24px 0 48px;
  background:
    radial-gradient(ellipse at 82% 12%, rgba(255, 215, 0, 0.1) 0%, transparent 52%),
    linear-gradient(135deg, var(--c-navy-deep) 0%, var(--c-navy) 56%, #102e5e 100%);
  color: var(--c-white);
}

.page-home .home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--home-gap);
}

.page-home .home-hero__main {
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border-radius: var(--home-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-width: 0;
}

.page-home .home-hero__media {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 200px;
  overflow: hidden;
  background: var(--c-navy);
}

.page-home .home-hero__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.04);
}

.page-home .home-hero__anchor {
  position: absolute;
  left: 18px;
  bottom: 6px;
  font-family: var(--font-heading);
  font-size: clamp(64px, 12vw, 104px);
  line-height: 1;
  color: var(--c-gold);
  text-shadow: 0 4px 24px rgba(6, 19, 43, 0.5);
  letter-spacing: 0.02em;
  user-select: none;
  pointer-events: none;
}

.page-home .home-hero__body {
  padding: 22px 18px 26px;
  display: flex;
  flex-direction: column;
}

.page-home .home-hero__title {
  margin: 4px 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(26px, 5vw, 42px);
  line-height: 1.1;
  color: var(--c-navy);
  letter-spacing: 0.01em;
}

.page-home .home-hero__lead {
  margin: 0 0 14px;
  color: var(--c-mid);
  font-size: 15px;
  line-height: 1.65;
}

.page-home .home-hero__status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(10, 31, 68, 0.05);
  border: 1px solid var(--c-silver);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.page-home .home-hero__status-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.page-home .home-hero__status-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--c-navy);
  font-weight: 700;
}

.page-home .home-hero__tabs {
  margin-top: 2px;
}

.page-home .home-hero__tabs .tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.page-home .home-hero__tabs .tabs__btn {
  appearance: none;
  border: 1px solid var(--c-silver);
  background: var(--c-white);
  color: var(--c-navy);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.page-home .home-hero__tabs .tabs__btn:hover {
  transform: translateY(-2px);
  border-color: var(--c-gold);
}

.page-home .home-hero__tabs .tabs__btn[aria-selected="true"] {
  background: var(--c-navy);
  border-color: var(--c-navy);
  color: var(--c-gold);
}

.page-home .home-hero__tabs .tabs__panel {
  animation: homeFadeIn 0.28s ease both;
}

@keyframes homeFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-home .home-hero__list {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.page-home .home-hero__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--c-dark);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
}

.page-home .home-hero__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-gold);
}

.page-home .home-hero__side {
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border-radius: var(--home-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-width: 0;
}

.page-home .home-hero__side-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.page-home .home-hero__side-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
}

.page-home .home-hero__side--group .home-hero__side-body {
  justify-content: center;
}

.page-home .home-hero__side-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 1.3;
  color: var(--c-navy);
}

.page-home .home-hero__side-text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-mid);
}

.page-home .home-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.page-home .home-hero__pills .pill {
  background: var(--c-pale);
  color: var(--c-anchor);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
}

.page-home .home-hero__notice {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border-radius: var(--home-radius);
  background: linear-gradient(120deg, var(--c-gold) 0%, #f0c400 100%);
  color: var(--c-navy);
  overflow: hidden;
  min-width: 0;
}

.page-home .home-hero__notice-num {
  position: absolute;
  right: 16px;
  bottom: 4px;
  font-family: var(--font-heading);
  font-size: 72px;
  line-height: 1;
  color: rgba(10, 31, 68, 0.16);
  user-select: none;
  pointer-events: none;
}

.page-home .home-hero__notice-body {
  position: relative;
  z-index: 1;
}

.page-home .home-hero__notice .panel__label {
  color: var(--c-navy);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.page-home .home-hero__notice-text {
  margin: 6px 0 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-navy);
  max-width: 720px;
}

.page-home .home-compare {
  padding: 52px 0;
}

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

.page-home .home-compare__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 26px;
}

.page-home .home-compare__item {
  background: var(--c-white);
  border: 1px solid rgba(192, 192, 192, 0.38);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  min-width: 0;
}

.page-home .home-compare__item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-gold);
}

.page-home .home-compare__num {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 1;
  color: rgba(10, 31, 68, 0.14);
}

.page-home .home-compare__name {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--c-navy);
}

.page-home .home-compare__desc {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-mid);
}

.page-home .home-compare__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .home-compare__links .tag {
  background: var(--c-light);
  color: var(--c-navy);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.page-home .home-compare__links .tag:hover {
  background: var(--c-navy);
  color: var(--c-gold);
  transform: translateY(-2px);
}

.page-home .home-compare__media {
  margin-bottom: 26px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.page-home .home-compare__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .home-compare__table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-silver);
  background: var(--c-white);
  box-shadow: var(--shadow-sm);
}

.page-home .home-compare__table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-family: var(--font-body);
}

.page-home .home-compare__caption {
  padding: 16px 16px 8px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--c-navy);
}

.page-home .home-compare__table th,
.page-home .home-compare__table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  line-height: 1.5;
}

.page-home .home-compare__table thead th {
  background: var(--c-navy);
  color: var(--c-gold);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-home .home-compare__table tbody tr:nth-child(even) {
  background: var(--c-light);
}

.page-home .home-compare__table tbody tr:hover {
  background: var(--c-pale);
}

.page-home .home-compare__table td a {
  color: var(--c-navy);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--c-gold);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-home .home-compare__table td a:hover {
  color: var(--c-anchor);
  border-color: var(--c-anchor);
}

.page-home .home-stats {
  padding: 52px 0;
  background:
    radial-gradient(ellipse at 12% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--c-navy-deep) 0%, var(--c-navy) 68%, #102e5e 100%);
}

.page-home .home-stats__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.page-home .home-stats__content {
  color: var(--c-white);
}

.page-home .home-stats__lead {
  margin: 10px 0 24px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
}

.page-home .home-stats__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.page-home .home-stats__item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(192, 192, 192, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
}

.page-home .home-stats__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1;
  color: var(--c-gold);
}

.page-home .home-stats__label {
  display: block;
  margin-top: 7px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
}

.page-home .home-stats__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.page-home .home-stats__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .home-explore {
  padding: 52px 0;
}

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

.page-home .home-explore__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.page-home .home-explore__link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--c-light);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: 20px 18px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-home .home-explore__link:hover {
  background: var(--c-white);
  border-color: var(--c-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.page-home .home-explore__icon {
  color: var(--c-navy);
}

.page-home .home-explore__name {
  margin-top: 2px;
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--c-navy);
}

.page-home .home-explore__text {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.5;
  color: var(--c-mid);
}

.page-home a:focus-visible,
.page-home .tabs__btn:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 2px;
  border-radius: 8px;
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-hero__tabs .tabs__panel {
    animation: none;
  }
  .page-home .home-compare__item,
  .page-home .home-explore__link,
  .page-home .home-hero__tabs .tabs__btn {
    transition: none;
  }
}

@media (min-width: 768px) {
  .page-home .home-hero__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .home-hero__main {
    grid-column: 1 / -1;
  }

  .page-home .home-hero__media {
    aspect-ratio: 21 / 10;
  }

  .page-home .home-hero__body {
    padding: 26px 28px 30px;
  }

  .page-home .home-hero__notice {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 22px;
  }

  .page-home .home-hero__notice-body {
    flex: 1;
  }

  .page-home .home-compare__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .home-stats__grid {
    gap: 32px;
  }

  .page-home .home-stats__items {
    gap: 14px;
  }

  .page-home .home-stats__item {
    padding: 18px 14px;
  }

  .page-home .home-stats__num {
    font-size: 36px;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: auto auto;
    gap: 22px;
  }

  .page-home .home-hero__main {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
  }

  .page-home .home-hero__side--entry {
    grid-column: 5 / 7;
    grid-row: 1 / 2;
  }

  .page-home .home-hero__side--group {
    grid-column: 5 / 7;
    grid-row: 2 / 3;
  }

  .page-home .home-hero__notice {
    grid-column: 1 / 7;
    grid-row: 3 / 4;
  }

  .page-home .home-hero__media {
    aspect-ratio: 16 / 7;
    min-height: 0;
  }

  .page-home .home-hero__body {
    padding: 28px 30px 32px;
  }

  .page-home .home-hero__title {
    font-size: 42px;
  }

  .page-home .home-hero__side-title {
    font-size: 19px;
  }

  .page-home .home-compare__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .page-home .home-stats__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }

  .page-home .home-explore__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .page-home .home-explore__link {
    padding: 24px 20px;
  }
}
