/* ═══════════════════════════════════════════════════════════════
   ZENTRAFOCUS — PAGES v2.0
   Homepage · Free Reset · Thank You · About · Legal
   ═══════════════════════════════════════════════════════════════ */

/* ── PAGE BODY OFFSET ────────────────────────────────────────── */
.page-body {
  padding-top: var(--nav-h);
}

/* ═══════════════════════════════════════
   HOMEPAGE
   ═══════════════════════════════════════ */

/* Hero */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: var(--sp-32) 0 var(--sp-20);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(185,28,28,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: var(--sp-6);
}

.hero__eyebrow::before { content: '//'; }

.hero__headline {
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--c-white);
  margin-bottom: var(--sp-6);
}

.hero__headline em {
  color: var(--c-red-2);
  font-style: normal;
}

.hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--c-soft);
  max-width: 560px;
  margin: 0 auto var(--sp-10);
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}

@media (min-width: 640px) {
  .hero__cta { flex-direction: row; justify-content: center; }
}

.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: var(--sp-8);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--c-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Problem Section */
.problem {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.problem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .problem__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-20); }
}

.problem__quote {
  border-left: 2px solid var(--c-red);
  padding-left: var(--sp-6);
  margin: var(--sp-8) 0;
}

.problem__quote p {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--c-light);
  font-style: italic;
}

.problem__stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.problem__stat {
  background: var(--c-card);
  padding: var(--sp-5);
  text-align: center;
}

.problem__stat-num {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--c-red-2);
  line-height: 1;
  margin-bottom: var(--sp-1);
}

.problem__stat-label {
  font-size: 11px;
  color: var(--c-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
}

/* Solution / What You Get */
.solution__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-12);
}

@media (min-width: 640px) {
  .solution__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .solution__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Email Capture Section */
.email-section {
  text-align: center;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
}

.email-section__inner {
  max-width: 600px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   FREE RESET PAGE
   ═══════════════════════════════════════ */

.reset-hero {
  padding: var(--sp-24) 0 var(--sp-16);
  text-align: center;
  border-bottom: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
}

.reset-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-red-dim), transparent);
}

.reset-hero__book {
  width: 140px;
  margin: 0 auto var(--sp-8);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), var(--shadow-red);
}

.reset-hero__book img {
  width: 100%;
  height: auto;
}

.reset-sections {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  margin-top: var(--sp-12);
}

@media (min-width: 768px) {
  .reset-sections { grid-template-columns: repeat(2, 1fr); }
}

.reset-chapter {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.reset-chapter__num {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--c-red-2);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  margin-top: 2px;
}

.reset-chapter__title {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 4px;
}

.reset-chapter__desc {
  font-size: var(--fs-sm);
  color: var(--c-soft);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   THANK YOU PAGE
   ═══════════════════════════════════════ */

.thankyou {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-32) 0;
}

.thankyou__inner {
  max-width: 600px;
}

.thankyou__icon {
  width: 56px;
  height: 56px;
  background: var(--c-red-dim);
  border: 1px solid rgba(185,28,28,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-6);
  font-size: 22px;
}

/* ═══════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════ */

.about-hero {
  padding: var(--sp-24) 0 var(--sp-16);
  border-bottom: 1px solid var(--c-border);
}

.about-manifesto {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.about-manifesto__text {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--c-light);
  max-width: 760px;
}

.about-manifesto__text strong {
  color: var(--c-white);
  font-weight: 600;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

@media (min-width: 640px) {
  .about-values { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .about-values { grid-template-columns: repeat(3, 1fr); }
}

.about-value {
  padding: var(--sp-6);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  background: var(--c-card);
}

.about-value__num {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--c-red-2);
  letter-spacing: 0.15em;
  margin-bottom: var(--sp-3);
}

.about-value__title {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: var(--sp-2);
}

.about-value__desc {
  font-size: var(--fs-sm);
  color: var(--c-soft);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════ */

.legal-hero {
  padding: var(--sp-20) 0 var(--sp-12);
  border-bottom: 1px solid var(--c-border);
}

.legal-body {
  padding: var(--sp-16) 0;
  max-width: var(--max-w-md);
}

.legal-body h2 {
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--c-white);
  margin: var(--sp-10) 0 var(--sp-4);
}

.legal-body h2:first-child { margin-top: 0; }

.legal-body p {
  font-size: var(--fs-base);
  color: var(--c-soft);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
}

.legal-body ul {
  list-style: disc;
  padding-left: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.legal-body ul li {
  font-size: var(--fs-base);
  color: var(--c-soft);
  line-height: 1.7;
}

.legal-body a {
  color: var(--c-red-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ═══════════════════════════════════════
   PRODUCTS INDEX PAGE
   ═══════════════════════════════════════ */

.products-hero {
  padding: var(--sp-24) 0 var(--sp-16);
  border-bottom: 1px solid var(--c-border);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

@media (min-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

.product-tile {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: border-color var(--t-base), transform var(--t-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.product-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-red-dim), transparent);
}

.product-tile:hover {
  border-color: rgba(185,28,28,0.25);
  transform: translateY(-3px);
}

.product-tile--featured {
  border-color: rgba(185,28,28,0.2);
}

.product-tile--featured::before {
  background: linear-gradient(90deg, transparent, var(--c-red), transparent);
  opacity: 0.4;
}

.product-tile__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-red-2);
}

.product-tile__title {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: -0.015em;
}

.product-tile__desc {
  font-size: var(--fs-base);
  color: var(--c-soft);
  line-height: 1.7;
  flex: 1;
}

.product-tile__price {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: -0.02em;
}

.product-tile__price span {
  font-size: var(--fs-base);
  font-weight: 400;
  color: var(--c-soft);
}
