/* =====================================================================
   Just Another Power-Up — brand hub (root page)
   Extends /email-inbox/email-inbox.css (design tokens + header/footer/btn).
   Mobile-first; breakpoints at 768px and 1080px.
   ===================================================================== */

/* ===== Hero ===== */
.home-hero {
  padding: 140px 20px 56px;
  text-align: center;
}
.home-hero-inner { max-width: 780px; margin: 0 auto; }
.home-hero .kicker { margin-bottom: 18px; }
.home-hero h1 {
  font-size: clamp(34px, 6vw, 56px);
  margin-bottom: 18px;
}
.home-hero h1 em { font-style: normal; }
.home-hero .home-sub {
  font-size: 18px;
  color: var(--body);
  max-width: 560px;
  margin: 0 auto 28px;
}
.home-hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
}
.home-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
}
.home-trust .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--border); }

/* ===== Product cards ===== */
.pu-section { padding: 40px 20px 30px; }
.pu-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.pu-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.pu-card:hover {
  border-color: var(--border-active);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.pu-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.pu-head img { height: 40px; width: auto; border-radius: 10px; box-shadow: var(--shadow-sm); }
.pu-head h2 {
  font-size: 24px;
  line-height: 1.15;
}
.pu-tagline {
  font-size: 16.5px;
  color: var(--body);
  margin-bottom: 18px;
}

.pu-shot {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--surface-2);
}
.pu-shot img { width: 100%; display: block; }

.pu-points {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pu-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--body);
}
.pu-points svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--mint); margin-top: 3px; }

.pu-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.pu-price {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 17px;
}
.pu-price span { font-weight: 500; color: var(--muted); font-size: 13.5px; }
.pu-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.pu-actions .btn { height: 46px; padding: 0 22px; font-size: 15px; }

/* ===== Ethos strip ===== */
.home-ethos { padding: 40px 20px 56px; }
.home-ethos-inner { max-width: var(--maxw); margin: 0 auto; }
.ethos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 26px;
}
.ethos-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 20px;
}
.ethos-item h3 { font-size: 17px; margin-bottom: 8px; }
.ethos-item p { font-size: 14.5px; color: var(--body); }
.ethos-item a { color: var(--primary); font-weight: 600; }

/* ===== Breakpoints ===== */
@media (min-width: 768px) {
  .home-hero { padding: 170px 24px 70px; }
  .pu-card { padding: 36px 34px; }
  .ethos-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1080px) {
  .pu-grid { grid-template-columns: 1fr 1fr; }
}
