/* ========== HOME PAGE ========== */
.hero-home {
  padding: var(--space-12) 0;
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
  text-align: center;
}
.hero-home__title {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.hero-home__subtitle {
  font-size: var(--fs-lg);
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero-home__title { font-size: var(--fs-5xl); }
}

.trust-strip {
  padding: var(--space-8) 0;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  text-align: center;
}
@media (min-width: 768px) {
  .trust-strip__grid { grid-template-columns: 1fr 1fr 1fr; }
}
.trust-strip__item { padding: var(--space-3); }
.trust-strip__icon { font-size: 2.5rem; margin-bottom: var(--space-2); }
.trust-strip__title { font-weight: 700; margin-bottom: var(--space-1); }
.trust-strip__sub { color: var(--color-text-muted); font-size: var(--fs-sm); }

.products-grid {
  padding: var(--space-12) 0;
  background: var(--color-bg-alt);
}
.products-grid__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 640px) {
  .products-grid__list { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .products-grid__list { grid-template-columns: 1fr 1fr 1fr; }
}
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition);
}
.product-card:hover { transform: translateY(-4px); }
.product-card__image {
  aspect-ratio: 4 / 3;
  background: var(--color-bg-alt);
  overflow: hidden;
}
.product-card__image img { width: 100%; height: 100%; object-fit: cover; }
.product-card__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space-3);
}
.product-card__category {
  font-size: var(--fs-xs);
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-card__title {
  font-size: var(--fs-xl);
  line-height: 1.2;
}
.product-card__desc {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  flex: 1;
}
.product-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-top: auto;
}
.product-card__price-old {
  color: var(--color-text-light);
  text-decoration: line-through;
  font-size: var(--fs-sm);
}
.product-card__price-new {
  color: var(--color-urgency);
  font-weight: 800;
  font-size: var(--fs-xl);
}
.product-card__cta {
  display: block;
  text-align: center;
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-3);
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  margin-top: var(--space-2);
}
.product-card__cta:hover { background: var(--color-primary-dark); }

.why-us {
  padding: var(--space-12) 0;
}
.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .why-us__grid { grid-template-columns: 1fr 1fr 1fr; }
}
.why-us__item {
  padding: var(--space-5);
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}
.why-us__icon { font-size: 2rem; margin-bottom: var(--space-3); }
.why-us__title { margin-bottom: var(--space-2); }
.why-us__text { color: var(--color-text-muted); font-size: var(--fs-sm); line-height: 1.6; }

.customer-reviews {
  padding: var(--space-12) 0;
  background: var(--color-bg-alt);
}
.customer-reviews__rating {
  text-align: center;
  margin-bottom: var(--space-8);
}
.customer-reviews__score {
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-warning);
  line-height: 1;
}
.customer-reviews__stars {
  font-size: var(--fs-2xl);
  color: var(--color-warning);
  margin: var(--space-2) 0;
}
.customer-reviews__count {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
}

/* Policy pages */
.policy-page {
  padding: var(--space-10) 0;
}
.policy-page__inner {
  max-width: 760px;
  margin: 0 auto;
}
.policy-page h1 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-3);
}
.policy-page__updated {
  color: var(--color-text-light);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-8);
}
.policy-page h2 {
  font-size: var(--fs-xl);
  margin: var(--space-6) 0 var(--space-3);
}
.policy-page p, .policy-page ul {
  margin-bottom: var(--space-3);
  color: var(--color-text-muted);
  line-height: 1.7;
}
.policy-page ul { padding-left: var(--space-5); list-style: disc; }
.policy-page ul li { margin-bottom: var(--space-1); }
.policy-page a { color: var(--color-primary); text-decoration: underline; }
.policy-page strong { color: var(--color-text); }

/* ========== HOME — NEXUS SPEC SHEET ========== */
body.home-nx {
  font-family: "IBM Plex Sans", var(--font-base);
  background: #f4f1ea;
  color: #0a0b09;
}
body.home-nx .site-header {
  background: #0a0b09;
  border-bottom: 1px solid #1f211c;
}
body.home-nx .site-header .site-logo,
body.home-nx .site-header .site-logo__text-primary { color: #f4f1ea; }
body.home-nx .site-header .site-logo__text-accent {
  background: none;
  -webkit-text-fill-color: #d4ff3f;
  color: #d4ff3f;
}
body.home-nx .site-header__nav a { color: #b8bcb0; }
body.home-nx .site-header__nav a:hover { color: #d4ff3f; }

.nx-tape {
  background: #d4ff3f;
  color: #0a0b09;
  overflow: hidden;
  border-bottom: 2px solid #0a0b09;
}
.nx-tape__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  padding: 0.7rem 0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: nx-marquee 28s linear infinite;
}
.nx-tape__track span { white-space: nowrap; }
@keyframes nx-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.nx-hero {
  display: grid;
  grid-template-columns: 1fr;
  background: #0a0b09;
  color: #f4f1ea;
}
.nx-hero__copy {
  padding: 2.75rem 1.25rem 2.25rem;
}
.nx-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d4ff3f;
  margin-bottom: 1.4rem;
}
.nx-hero__title {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.4rem, 8vw, 5.4rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.nx-hero__title em {
  font-style: normal;
  color: #d4ff3f;
}
.nx-hero__text {
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #c5c8be;
  margin-bottom: 1.75rem;
}
.nx-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.nx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.nx-btn:hover { transform: translateY(-2px); }
.nx-btn--acid {
  background: #d4ff3f;
  color: #0a0b09;
}
.nx-btn--ghost {
  background: transparent;
  color: #f4f1ea;
  border-color: #3a3d36;
}
.nx-hero__frame {
  position: relative;
  background:
    linear-gradient(#1a1c17 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(90deg, #1a1c17 1px, transparent 1px) 0 0 / 28px 28px,
    #10120e;
  min-height: 280px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nx-hero__frame a { display: block; width: 100%; max-width: 460px; }
.nx-hero__frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border: 2px solid #d4ff3f;
  background: #f4f1ea;
}
.nx-hero__stamp {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 5.5rem;
  height: 5.5rem;
  border: 2px solid #d4ff3f;
  border-radius: 50%;
  color: #d4ff3f;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(12deg);
  background: rgba(10, 11, 9, 0.72);
}
@media (min-width: 880px) {
  .nx-hero { grid-template-columns: 1.05fr 0.95fr; min-height: 680px; }
  .nx-hero__copy {
    padding: 5rem 2rem 5rem 4.5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .nx-hero__frame { padding: 3rem; }
}

.nx-specbar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #d4ff3f;
  color: #0a0b09;
  border-bottom: 2px solid #0a0b09;
}
.nx-specbar__item {
  padding: 1.15rem 1rem;
  border-right: 1px solid #0a0b09;
  border-bottom: 1px solid #0a0b09;
}
.nx-specbar__item:nth-child(2n) { border-right: none; }
.nx-specbar__code {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  opacity: 0.7;
}
.nx-specbar__value {
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .nx-specbar { grid-template-columns: repeat(4, 1fr); }
  .nx-specbar__item { border-bottom: none; padding: 1.4rem 1.2rem; }
  .nx-specbar__item:nth-child(2n) { border-right: 1px solid #0a0b09; }
  .nx-specbar__item:last-child { border-right: none; }
}

.nx-section { padding: 4rem 1.25rem; }
.nx-wrap { max-width: 1120px; margin: 0 auto; }
.nx-kicker {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5c5f56;
  margin-bottom: 0.7rem;
}
.nx-h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 0.75rem;
}
.nx-lead {
  max-width: 36rem;
  color: #4a4d45;
  line-height: 1.65;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .nx-section { padding: 5.5rem 1.25rem; }
}

.nx-deal {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border: 2px solid #0a0b09;
}
.nx-deal__media {
  position: relative;
  display: block;
  background: #ece8df;
  aspect-ratio: 1 / 1;
  border-bottom: 2px solid #0a0b09;
}
.nx-deal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nx-deal__badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #0a0b09;
  color: #d4ff3f;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 0.55rem 0.85rem;
}
.nx-deal__body { padding: 1.75rem 1.4rem 2rem; }
.nx-deal__cat {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5c5f56;
  margin-bottom: 0.55rem;
}
.nx-deal__name {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.nx-deal__desc {
  color: #4a4d45;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.nx-deal__price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.nx-deal__now {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 800;
}
.nx-deal__was {
  color: #7a7d74;
  text-decoration: line-through;
}
.nx-deal__rating {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  margin-bottom: 1.4rem;
}
@media (min-width: 840px) {
  .nx-deal { grid-template-columns: 1fr 1fr; }
  .nx-deal__media { border-bottom: none; border-right: 2px solid #0a0b09; }
  .nx-deal__body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.nx-index { background: #0a0b09; color: #f4f1ea; }
.nx-index .nx-kicker { color: #d4ff3f; }
.nx-index .nx-lead { color: #b8bcb0; }
.nx-index__list { border-top: 1px solid #2a2d26; }
.nx-index__row {
  display: grid;
  grid-template-columns: 3.2rem 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 1.15rem 0;
  border-bottom: 1px solid #2a2d26;
  color: inherit;
  text-decoration: none;
}
.nx-index__row--soon { opacity: 0.45; pointer-events: none; }
.nx-index__num {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  color: #d4ff3f;
}
.nx-index__name {
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}
.nx-index__tag {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a8e84;
}
.nx-index__row:not(.nx-index__row--soon):hover .nx-index__name { color: #d4ff3f; }
@media (min-width: 720px) {
  .nx-index__name { font-size: 1.85rem; }
}

.nx-why__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 2px solid #0a0b09;
}
.nx-why__item {
  padding: 1.5rem 0;
  border-bottom: 2px solid #0a0b09;
}
.nx-why__num {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: #5c5f56;
  margin-bottom: 0.45rem;
}
.nx-why__item h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 0.45rem;
}
.nx-why__item p { color: #4a4d45; line-height: 1.6; }
@media (min-width: 800px) {
  .nx-why__list { grid-template-columns: repeat(3, 1fr); }
  .nx-why__item {
    padding: 1.75rem 1.5rem 1.75rem 0;
    border-bottom: none;
    border-right: 2px solid #0a0b09;
  }
  .nx-why__item:last-child { border-right: none; padding-right: 0; }
}

.nx-proof {
  background: #0a0b09;
  color: #f4f1ea;
  text-align: center;
  padding: 4.5rem 1.25rem;
}
.nx-proof__n {
  font-family: "Syne", sans-serif;
  font-size: clamp(5rem, 16vw, 8.5rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: #d4ff3f;
}
.nx-proof__stars {
  color: #d4ff3f;
  letter-spacing: 0.18em;
  font-size: 1.2rem;
  margin: 0.8rem 0 0.5rem;
}
.nx-proof__copy {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b8bcb0;
}

body.home-nx .site-footer { background: #0a0b09; }
body.home-nx .site-footer .site-logo__text-accent {
  background: none;
  -webkit-text-fill-color: #d4ff3f;
  color: #d4ff3f;
}
body.home-nx .site-footer__bottom { border-top-color: #2a2d26; }
