/* ════════════════════════════════════════════════════
   SOVEREIGNTY — Venture-Specific Styles
   ════════════════════════════════════════════════════ */

/* ─── Product Hero ─────────────────────────────── */
.product-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}
.product-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #171412 0%, #2a1f18 40%, #1a1510 100%);
  z-index: 0;
}
.product-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 50%, rgba(197,123,69,0.08), transparent),
    radial-gradient(ellipse 400px 300px at 80% 30%, rgba(61,90,58,0.06), transparent);
}
.product-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 32px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.product-hero-body { max-width: 540px; }
.product-hero-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.product-hero-headline {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.product-hero-headline strong { font-weight: 600; }
.product-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 460px;
}
.product-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero visual (canvas preview) */
.product-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-preview-frame {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  position: relative;
}
.hero-preview-frame canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-preview-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.5);
  padding: 6px 12px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

/* ─── Feature Grid ─────────────────────────────── */
.features-section { background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  padding: 32px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(197,123,69,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--accent);
}
.feature-name {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--fg);
}
.feature-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ─── How It Works ─────────────────────────────── */
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
}
.workflow-step {
  counter-increment: step;
  position: relative;
  padding-top: 48px;
}
.workflow-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.workflow-step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.workflow-step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ─── Pricing / CTA Section ────────────────────── */
.pricing-section { background: var(--dark); color: #fff; }
.pricing-section .section-kicker { color: rgba(255,255,255,0.5); }
.pricing-section .section-title { color: #fff; }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.pricing-card {
  padding: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.pricing-card.featured {
  border-color: var(--accent);
  background: rgba(197,123,69,0.06);
}
.pricing-card-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.pricing-card-price {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 300;
  margin-bottom: 8px;
}
.pricing-card-price strong { font-weight: 600; }
.pricing-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  line-height: 1.6;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.pricing-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pricing-features li::before {
  content: '✓ ';
  color: var(--accent);
  font-weight: 600;
}

/* ─── Buttons (venture-specific) ───────────────── */
.btn-accent {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}
.btn-accent:hover { background: #d4894f; transform: translateY(-1px); }
.btn-outline-light {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s;
}
.btn-outline-light:hover { border-color: #fff; }

/* ─── Footer overrides ─────────────────────────── */
.footer-brand-col { display: flex; flex-direction: column; gap: 4px; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-meta { max-width: var(--max); margin: 24px auto 0; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ─── Responsive ───────────────────────────────── */
@media (max-width: 768px) {
  .product-hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 80px 24px 60px; }
  .product-hero-visual { display: none; }
  .workflow-steps { grid-template-columns: 1fr 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .workflow-steps { grid-template-columns: 1fr; }
}
