/* Homepage v3 — ink catalog (scoped to body.home-v3) */
body.home-v3 {
  font-family: "IBM Plex Sans", var(--font-base);
  background: #eef2f5;
  color: #071018;
}

.home-v3 .site-header {
  background: #071018;
  border-bottom: 1px solid #1a2a33;
}
.home-v3 .site-header .site-logo,
.home-v3 .site-header .site-logo__text-primary { color: #f4f7f8; }
.home-v3 .site-header .site-logo__text-accent {
  background: none;
  -webkit-text-fill-color: #00d4b0;
  color: #00d4b0;
}
.home-v3 .site-header__nav a { color: #9eb0b8; }
.home-v3 .site-header__nav a:hover { color: #00d4b0; }

.home-v3 .site-footer {
  background: #071018;
  color: #c5d0d6;
}
.home-v3 .site-footer a { color: #e8eef1; }
.home-v3 .site-footer a:hover { color: #00d4b0; }

.hx-ticker {
  background: #00d4b0;
  color: #071018;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 0;
}
.hx-ticker__track {
  display: inline-block;
  animation: hx-marquee 28s linear infinite;
}
.hx-ticker span { margin: 0 1.25rem; }
@keyframes hx-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hx-hero {
  display: grid;
  grid-template-columns: 1fr;
  background: #071018;
  color: #f4f7f8;
}
.hx-hero__copy {
  padding: 2.75rem 1.25rem 2.25rem;
}
.hx-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #00d4b0;
  margin-bottom: 1rem;
}
.hx-kicker::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: #00d4b0;
}
.hx-hero__title {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.3rem, 8vw, 5.1rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 1.15rem;
  max-width: 14ch;
}
.hx-hero__title em {
  font-style: normal;
  color: #00d4b0;
}
.hx-hero__text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #b7c4cb;
  max-width: 38rem;
  margin-bottom: 1.75rem;
}
.hx-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 1.35rem;
  border-radius: 0.35rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.hx-btn:hover { transform: translateY(-2px); }
.hx-btn--solid {
  background: #00d4b0;
  color: #071018;
}
.hx-btn--ghost {
  background: transparent;
  color: #f4f7f8;
  border: 1px solid #2a3d47;
}
.hx-hero__visual {
  position: relative;
  min-height: 280px;
  background:
    radial-gradient(circle at 70% 30%, rgba(0, 212, 176, 0.18), transparent 42%),
    #0c1a22;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.25rem 2rem;
}
.hx-hero__visual img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 0.4rem;
}
.hx-chip {
  position: absolute;
  bottom: 1.4rem;
  left: 1.25rem;
  background: #ff2d55;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.45rem 0.75rem;
  border-radius: 0.25rem;
}
@media (min-width: 900px) {
  .hx-hero { grid-template-columns: 1.1fr 0.9fr; min-height: 680px; }
  .hx-hero__copy {
    padding: 5.5rem 2rem 5rem 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hx-hero__visual { padding: 3rem; }
  .hx-chip { left: 3rem; bottom: 3rem; }
}

.hx-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #0c1a22;
  color: #f4f7f8;
  border-top: 1px solid #1a2a33;
}
.hx-stats__item {
  padding: 1.3rem 1.1rem;
  border-right: 1px solid #1a2a33;
  border-bottom: 1px solid #1a2a33;
}
.hx-stats__item:nth-child(2n) { border-right: none; }
.hx-stats__value {
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.hx-stats__label {
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: #8fa0a8;
}
@media (min-width: 768px) {
  .hx-stats { grid-template-columns: repeat(4, 1fr); }
  .hx-stats__item { border-bottom: none; padding: 1.6rem 1.4rem; }
  .hx-stats__item:nth-child(2n) { border-right: 1px solid #1a2a33; }
  .hx-stats__item:last-child { border-right: none; }
}

.hx-section { padding: 4rem 1.25rem; }
.hx-wrap { max-width: 1120px; margin: 0 auto; }
.hx-over {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0a8f78;
  margin-bottom: 0.55rem;
}
.hx-h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 0.6rem;
}
.hx-lead {
  color: #4d5d66;
  max-width: 36rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hx-feature {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border: 1px solid #d7e0e5;
  overflow: hidden;
}
.hx-feature__media {
  position: relative;
  display: block;
  background: #dce6ea;
  aspect-ratio: 1 / 1;
}
.hx-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hx-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #071018;
  color: #00d4b0;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.7rem;
}
.hx-feature__body { padding: 1.6rem 1.4rem 1.8rem; }
.hx-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0a8f78;
  margin-bottom: 0.45rem;
}
.hx-feature__name {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.7rem;
}
.hx-feature__desc {
  color: #4d5d66;
  line-height: 1.65;
  margin-bottom: 1.1rem;
}
.hx-spec {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  display: grid;
  gap: 0.45rem;
  font-size: 0.92rem;
}
.hx-spec li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px dashed #d7e0e5;
  padding-bottom: 0.4rem;
}
.hx-spec span { color: #6b7c85; }
.hx-spec strong { font-weight: 700; }
.hx-price {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin-bottom: 1.2rem;
}
.hx-price__old {
  color: #8a9aa2;
  text-decoration: line-through;
}
.hx-price__new {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #ff2d55;
}
@media (min-width: 860px) {
  .hx-feature { grid-template-columns: 1fr 1fr; }
  .hx-feature__body {
    padding: 2.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.hx-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}
.hx-card {
  background: #fff;
  border: 1px solid #d7e0e5;
  text-decoration: none;
  color: inherit;
  display: grid;
  grid-template-columns: 108px 1fr;
  min-height: 128px;
  transition: transform 0.2s, border-color 0.2s;
}
.hx-card:hover {
  transform: translateY(-3px);
  border-color: #071018;
}
.hx-card__img {
  background: #dce6ea;
  overflow: hidden;
}
.hx-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hx-card__body {
  padding: 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
}
.hx-card__body span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a8f78;
}
.hx-card__body strong {
  font-family: "Syne", sans-serif;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.hx-card__body p {
  font-size: 0.85rem;
  color: #5b6c74;
}
@media (min-width: 720px) {
  .hx-grid { grid-template-columns: 1fr 1fr; }
}

.hx-flow { background: #071018; color: #f4f7f8; }
.hx-flow .hx-over { color: #00d4b0; }
.hx-flow .hx-lead { color: #9eb0b8; }
.hx-flow__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}
.hx-flow__item {
  border-top: 1px solid #1a2a33;
  padding-top: 1rem;
}
.hx-flow__num {
  font-family: "Syne", sans-serif;
  color: #00d4b0;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.hx-flow__item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.hx-flow__item p {
  color: #9eb0b8;
  line-height: 1.6;
  font-size: 0.95rem;
}
@media (min-width: 800px) {
  .hx-flow__list { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

.hx-quotes { background: #e4eaee; }
.hx-quotes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}
.hx-quote {
  background: #fff;
  border-left: 4px solid #00d4b0;
  padding: 1.25rem 1.2rem;
}
.hx-quote p {
  font-size: 1.02rem;
  line-height: 1.55;
  margin-bottom: 0.7rem;
}
.hx-quote cite {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 700;
  color: #5b6c74;
}
@media (min-width: 800px) {
  .hx-quotes__grid { grid-template-columns: repeat(3, 1fr); }
}

.hx-close {
  text-align: center;
  padding: 4.5rem 1.25rem;
  background: #fff;
}
.hx-close .hx-h2 { margin-left: auto; margin-right: auto; }
.hx-close .hx-lead { margin-left: auto; margin-right: auto; }
.hx-score {
  font-family: "Syne", sans-serif;
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1;
  color: #071018;
  margin-bottom: 0.25rem;
}
.hx-stars { color: #00d4b0; letter-spacing: 0.12em; margin-bottom: 0.5rem; }

@media (prefers-reduced-motion: reduce) {
  .hx-ticker__track { animation: none; }
  .hx-btn:hover, .hx-card:hover { transform: none; }
}
