.page-home {
  background: var(--c-bg);
  color: var(--c-text);
  overflow-x: hidden;
}

.page-home .breadcrumb {
  max-width: var(--container-w);
  margin-inline: auto;
  padding: 18px 20px 0;
}

.page-home .breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--c-muted);
}

.page-home .breadcrumb li + li::before {
  content: "/";
  margin-right: 6px;
  color: var(--c-line);
}

.page-home .breadcrumb [aria-current="page"] {
  color: var(--c-amber);
}

.page-home .home-hero-grid {
  position: relative;
  display: grid;
  gap: 30px;
  max-width: var(--container-w);
  margin-inline: auto;
  padding: 26px 20px 44px;
}

.page-home .home-hero-grid__copy {
  position: relative;
  z-index: 1;
}

.page-home .home-hero-grid__badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.page-home .home-hero-grid__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--c-gold);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.page-home .home-hero-grid__year {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--c-muted);
}

.page-home .home-hero-grid__label {
  margin-bottom: 8px;
}

.page-home .home-hero-grid h1 {
  margin: 0 0 16px;
  font-family: var(--f-display);
  font-size: clamp(30px, 7vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--c-text);
}

.page-home .home-hero-grid__lead {
  max-width: 47em;
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--c-muted);
}

.page-home .home-hero-grid__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.page-home .home-hero-grid__facts .stat-item {
  padding: 12px 14px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-m);
  background: var(--c-bg-soft);
}

.page-home .home-hero-grid__facts .stat-item__label {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-muted);
}

.page-home .home-hero-grid__facts .stat-item__num {
  display: block;
  margin-top: 5px;
  font-family: var(--f-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-text);
}

.page-home .home-hero-grid__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .home-hero-grid__visual {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 9 / 7;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-l);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), var(--c-bg-deep) 60%);
  box-shadow: var(--shadow);
}

.page-home .home-hero-grid__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .home-hero-grid__svg {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.page-home .home-hero-grid__loadtag {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  min-width: 96px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 107, 53, 0.55);
  border-radius: var(--radius-m);
  background: rgba(10, 18, 42, 0.9);
  box-shadow: 0 8px 24px rgba(4, 8, 20, 0.4);
  text-align: right;
}

.page-home .home-hero-grid__loadtag-num {
  font-family: var(--f-mono);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--c-accent);
}

.page-home .home-hero-grid__loadtag-unit {
  font-size: 12px;
  color: var(--c-text);
}

.page-home .home-hero-grid__loadtag-label {
  display: block;
  margin-top: 5px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-muted);
}

.page-home .section-heading {
  margin-bottom: 22px;
}

.page-home .section-heading .section-label {
  margin-bottom: 8px;
}

.page-home .section-heading h2 {
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(24px, 4.5vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--c-text);
}

.page-home .home-retrieval {
  max-width: var(--container-w);
  margin-inline: auto;
  padding: 8px 20px 48px;
}

.page-home .home-retrieval__heading {
  margin-bottom: 20px;
}

.page-home .home-retrieval__frame {
  display: grid;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-l);
  background: linear-gradient(145deg, var(--c-bg-soft), var(--c-bg-deep));
}

.page-home .home-retrieval__demo {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .home-retrieval__searchbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: var(--radius-m);
  background: var(--c-light);
  color: var(--c-dark);
  font-family: var(--f-mono);
  font-size: 13px;
}

.page-home .home-retrieval__searchbar-prefix {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--c-accent);
  color: #fff;
  font-size: 12px;
}

.page-home .home-retrieval__searchbar-query {
  padding: 5px 11px;
  border: 1px solid #c3ccd9;
  border-radius: 999px;
  background: #fff;
  color: var(--c-dark);
}

.page-home .home-retrieval__searchbar-arrow {
  font-weight: 700;
  color: var(--c-accent);
}

.page-home .home-retrieval__searchbar-step {
  margin-left: auto;
  padding: 4px 10px;
  border: 1px solid var(--c-gold);
  border-radius: 999px;
  color: var(--c-gold);
  font-size: 12px;
}

.page-home .home-retrieval__steps {
  display: grid;
  gap: 12px;
}

.page-home .home-retrieval__step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-m);
  background: rgba(10, 18, 42, 0.6);
}

.page-home .home-retrieval__step-order {
  grid-row: 1 / span 2;
  font-family: var(--f-mono);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--c-accent);
}

.page-home .home-retrieval__step-body h3 {
  margin: 0 0 4px;
  font-family: var(--f-display);
  font-size: 17px;
  color: var(--c-text);
}

.page-home .home-retrieval__step-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  color: var(--c-muted);
}

.page-home .home-retrieval__curve {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  aspect-ratio: 5 / 3;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-m);
  background: var(--c-bg-deep);
}

.page-home .home-retrieval__curve-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .home-retrieval__curve-svg {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.page-home .home-retrieval__caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 3;
  margin: 0;
  padding: 6px 10px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-s);
  background: rgba(10, 18, 42, 0.92);
  color: var(--c-amber);
  font-family: var(--f-mono);
  font-size: 12px;
  line-height: 1.5;
}

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

.page-home .home-products__head {
  margin-bottom: 22px;
}

.page-home .home-products__sub {
  max-width: 46em;
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-muted);
}

.page-home .home-products__grid {
  display: grid;
  gap: 16px;
}

.page-home .home-productcard {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding: 24px 22px 22px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-l);
  background: linear-gradient(160deg, var(--c-bg-soft), var(--c-bg));
  color: var(--c-text);
  text-decoration: none;
  transition: transform 0.25s var(--ease-out), border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.page-home .home-productcard::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 64px;
  height: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--grad-accent);
}

.page-home .home-productcard:hover,
.page-home .home-productcard:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.85);
  box-shadow: var(--shadow);
}

.page-home .home-productcard:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}

.page-home .home-productcard__no {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--c-muted);
}

.page-home .home-productcard h3 {
  margin: 12px 0 8px;
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.2;
  color: var(--c-text);
}

.page-home .home-productcard .tag {
  align-self: flex-start;
}

.page-home .home-productcard p {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--c-muted);
}

.page-home .home-productcard ul {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.page-home .home-productcard li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-text);
}

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

.page-home .home-productcard--main {
  min-height: 320px;
}

.page-home .home-productcard--wide {
  grid-column: 1 / -1;
  flex-direction: column;
  gap: 18px;
}

.page-home .home-productcard--wide .home-productcard__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .home-productcard--wide p {
  margin-bottom: 0;
}

.page-home .home-productcard__visual {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-m);
}

.page-home .home-devices {
  padding: 48px 20px;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  background: linear-gradient(160deg, var(--c-bg-soft), var(--c-bg-deep) 70%);
}

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

.page-home .home-devices__intro {
  max-width: 46em;
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-muted);
}

.page-home .home-devices__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.page-home .home-devices__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border: 1px solid rgba(45, 212, 191, 0.4);
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.08);
  color: var(--c-teal);
  font-family: var(--f-mono);
  font-size: 13px;
}

.page-home .home-devices__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  font-size: 13px;
  color: var(--c-muted);
}

.page-home .home-devices__stat strong {
  margin-left: 2px;
  font-family: var(--f-mono);
  font-weight: 600;
  color: var(--c-text);
}

.page-home .home-service {
  display: grid;
  gap: 28px;
  max-width: var(--container-w);
  margin-inline: auto;
  padding: 48px 20px;
}

.page-home .home-service__map {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-l);
  background: var(--c-bg-soft);
}

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

.page-home .home-service__lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.page-home .home-service__info .section-heading {
  margin-bottom: 12px;
}

.page-home .home-service__info > p {
  max-width: 46em;
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--c-muted);
}

.page-home .home-service__city-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .home-service__city-list li {
  padding: 10px 6px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-s);
  background: var(--c-bg-soft);
  color: var(--c-text);
  font-family: var(--f-mono);
  font-size: 14px;
  text-align: center;
}

.page-home .home-trust {
  padding: 40px 20px 48px;
  border-top: 1px solid var(--c-line);
  background: var(--c-bg-deep);
}

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

.page-home .home-trust .section-heading {
  margin-bottom: 16px;
}

.page-home .home-trust__items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-home .home-trust__note {
  margin: 22px 0 0;
  font-size: 13px;
  line-height: 1.9;
  color: var(--c-muted);
}

.page-home .home-trust__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 14px;
}

.page-home .home-trust__contact {
  color: var(--c-accent);
  text-decoration: none;
  font-size: 14px;
}

.page-home .home-trust__contact:hover,
.page-home .home-trust__contact:focus-visible {
  color: var(--c-amber);
  text-decoration: underline;
}

@keyframes pageHomePulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.page-home .home-hero-grid__pulse {
  animation: pageHomePulse 2.4s ease-in-out infinite;
}

@keyframes pageHomeLineGlow {
  0%, 100% { stroke-opacity: 0.9; }
  50% { stroke-opacity: 0.45; }
}

.page-home .home-hero-grid__line {
  animation: pageHomeLineGlow 3.6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-hero-grid__pulse,
  .page-home .home-hero-grid__line {
    animation: none;
  }
}

@media (min-width: 960px) {
  .page-home .home-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 48px;
    padding: 56px 24px 72px;
  }

  .page-home .home-hero-grid__lead {
    font-size: 16px;
  }

  .page-home .home-retrieval__frame {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 32px;
    padding: 28px;
  }

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

  .page-home .home-products {
    padding-top: 32px;
  }

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

  .page-home .home-productcard--wide {
    flex-direction: row;
    align-items: center;
  }

  .page-home .home-productcard--wide .home-productcard__text {
    flex: 1;
  }

  .page-home .home-productcard--wide .home-productcard__visual {
    width: 280px;
    height: 210px;
    flex-shrink: 0;
  }

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

  .page-home .home-trust {
    padding: 52px 24px;
  }
}
