/* Product / marketing landing — index.html (home) */
body.page-product {
  min-height: 100vh;
}

.page-product .site-page-shell .product-hero {
  margin-bottom: 16px;
}

.page-product .product-hero {
  position: relative;
  padding: 36px 32px 32px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background:
    linear-gradient(145deg, rgba(17, 24, 39, 0.95), rgba(15, 23, 42, 0.75)),
    radial-gradient(ellipse 70% 60% at 90% 10%, rgba(99, 102, 241, 0.22), transparent);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.page-product .product-hero::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15), transparent 70%);
  pointer-events: none;
}

.page-product .product-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  border: 1px solid rgba(99, 102, 241, 0.45);
  color: #c7d2fe;
  background: rgba(99, 102, 241, 0.12);
}

.page-product .product-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.8);
}

.page-product .product-hero .product-badge + .product-badge {
  margin-left: 8px;
}

.page-product .product-badge--free {
  border-color: rgba(34, 197, 94, 0.45);
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.12);
}

.page-product .product-badge--free .product-badge-dot {
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.8);
}

.page-product .product-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  max-width: 16ch;
  font-size: clamp(2rem, 5.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: #f8fafc;
}

.page-product .product-hero h1 span {
  background: linear-gradient(90deg, #a5b4fc, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-product .product-lead {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 54ch;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.65;
}

.page-product .product-cta-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.page-product .product-hero-note {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  max-width: 520px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted, #94a3b8);
}

.page-product .product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.page-product .product-btn:hover {
  transform: translateY(-1px);
}

.page-product .product-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #4f46e5);
  box-shadow: 0 8px 24px var(--accent-glow);
  border: 1px solid rgba(129, 140, 248, 0.5);
}

.page-product .product-btn-primary:hover {
  color: #fff;
  box-shadow: 0 10px 28px rgba(99, 102, 241, 0.45);
}

.page-product .product-btn-secondary {
  color: var(--text);
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid var(--border-soft);
}

.page-product .product-btn-secondary:hover {
  color: #fff;
  background: rgba(51, 65, 85, 0.9);
}

.page-product .product-btn-ghost {
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  padding-left: 12px;
  padding-right: 12px;
}

.page-product .product-btn-ghost:hover {
  color: var(--link);
}

.page-product .product-trust {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

.page-product .product-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.page-product .product-trust svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.page-product .product-main {
  padding: 8px 0 24px;
}

.page-product .product-section-title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.page-product .product-section-heading {
  margin: 0 0 20px;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #f1f5f9;
}

.page-product .product-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}

.page-product .product-feature {
  padding: 20px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(17, 24, 39, 0.55);
  transition: border-color 0.2s, transform 0.2s;
}

.page-product .product-feature:hover {
  border-color: rgba(99, 102, 241, 0.4);
  transform: translateY(-2px);
}

.page-product .product-feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 18px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(6, 182, 212, 0.15));
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.page-product .product-feature h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  color: #f1f5f9;
}

.page-product .product-feature p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

.page-product .product-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}

.page-product .product-step {
  padding: 18px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.6);
}

.page-product .product-step-num {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.page-product .product-step h3 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 600;
  color: #e2e8f0;
}

.page-product .product-step p {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.page-product .product-schema-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}

.page-product .product-schema-tag {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: #c7d2fe;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.28);
}

.page-product .product-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.page-product .product-panel {
  padding: 22px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(17, 24, 39, 0.5);
}

.page-product .product-panel h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #f1f5f9;
}

.page-product .product-panel ul {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
}

.page-product .product-panel li {
  margin-bottom: 6px;
}

.page-product .product-faq {
  margin-bottom: 48px;
}

.page-product .product-faq-item {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(17, 24, 39, 0.4);
  margin-bottom: 10px;
}

.page-product .product-faq-item h3 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 600;
  color: #e2e8f0;
}

.page-product .product-faq-item p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

.page-product .product-faq-item a {
  color: var(--link);
}

.page-product .product-cta-band {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(99, 102, 241, 0.35);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(6, 182, 212, 0.08));
  text-align: center;
}

.page-product .product-cta-band h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 700;
  color: #f8fafc;
}

.page-product .product-cta-band p {
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--text-muted);
}

.page-product .product-cta-band .product-cta-row {
  justify-content: center;
  margin-top: 0;
}

@media (max-width: 820px) {
  .page-product .product-features {
    grid-template-columns: 1fr 1fr;
  }
  .page-product .product-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .page-product .product-hero {
    padding: 24px 18px 22px;
  }
  .page-product .product-hero h1 {
    max-width: none;
  }
  .page-product .product-features,
  .page-product .product-steps,
  .page-product .product-two-col {
    grid-template-columns: 1fr;
  }
  .page-product .product-cta-row {
    flex-direction: column;
  }
  .page-product .product-btn {
    width: 100%;
  }
}
