/* === ONPEX static page styles ================================ */

.page-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
.page-hero {
  background: var(--navy-700);
  color: var(--paper);
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -100px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191,160,106,0.14), transparent 65%);
}
.page-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 22px;
  position: relative;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--paper);
  max-width: 760px;
  margin: 0;
  text-wrap: balance;
  position: relative;
}
.page-lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--navy-100);
  max-width: 620px;
  margin: 22px 0 0;
  position: relative;
}
.page-section {
  padding: 88px 0;
  background: var(--white);
}
.page-section:nth-child(even) { background: var(--paper); }
.page-section h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--text-heading);
  margin: 0 0 24px;
}
.page-section h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  color: var(--text-heading);
  margin: 0 0 12px;
}
.page-section p,
.page-section li {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-body);
}
.page-section ul { margin: 0; padding-left: 20px; }
.page-section li + li { margin-top: 10px; }

/* How it works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.steps-grid article {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.step-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  color: var(--gold-400);
  margin-bottom: 18px;
}

/* Audience */
.audience-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 32px;
  list-style: none;
  padding: 0;
}
.audience-list li {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 24px;
}
.audience-list strong { display: block; color: var(--text-heading); margin-bottom: 4px; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.pricing-card.featured {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-gold), var(--shadow-md);
  transform: translateY(-4px);
}
.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}
.price {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 20px;
}
.price span {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-card li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
}
.pricing-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
}
.btn-accent, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 10px;
  transition: background 120ms ease;
}
.btn-accent {
  background: var(--gold-500);
  color: var(--navy-700);
}
.btn-accent:hover { background: var(--gold-400); }
.btn-primary {
  background: var(--navy-700);
  color: var(--paper);
}
.btn-primary:hover { background: var(--navy-600); }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-stats div {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 24px;
  text-align: center;
}
.about-stats strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 32px;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.about-stats span {
  font-size: 14px;
  color: var(--text-muted);
}

/* Legal */
.legal-text { max-width: 760px; }
.legal-text h2 {
  font-size: 28px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .steps-grid, .pricing-grid, .about-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .audience-list { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 40px; }
}

@media (max-width: 520px) {
  .page-container { padding: 0 20px; }
  .page-hero { padding: 72px 0 64px; }
  .page-hero h1 { font-size: 32px; }
  .page-section { padding: 56px 0; }
}
