:root {
  color-scheme: dark;
  --hp-bg: #020617;
  --hp-panel: #0f172a;
  --hp-border: #1e293b;
  --hp-text: #e2e8f0;
  --hp-muted: #94a3b8;
  --hp-brand: #38bdf8;
  --hp-brand-text: #082f49;
}

body {
  margin: 0;
  background: var(--hp-bg);
  color: var(--hp-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hp-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 32rem),
    var(--hp-bg);
}

.hp-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
  border-radius: 12px;
  background: var(--hp-section-bg, transparent);
  color: var(--hp-section-text, var(--hp-text));
}

.hp-hero {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hp-eyebrow {
  margin: 0 0 16px;
  color: var(--hp-section-accent, var(--hp-brand));
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 20px;
  font-size: clamp(44px, 8vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hp-lead, .hp-text p, .hp-section-heading p, .hp-feature p, .hp-cta p {
  max-width: 720px;
  color: var(--hp-section-muted, var(--hp-muted));
  font-size: 18px;
  line-height: 1.75;
}

.hp-button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 12px;
  border-radius: 8px;
  background: var(--hp-section-accent, var(--hp-brand));
  color: var(--hp-brand-text);
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
}

.hp-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.hp-feature {
  border: 1px solid var(--hp-border);
  border-radius: 8px;
  background: var(--hp-section-card, rgba(15, 23, 42, 0.82));
  padding: 22px;
}

.hp-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.hp-stat,
.hp-testimonial,
.hp-pricing,
.hp-contact,
.hp-media {
  border: 1px solid var(--hp-border);
  border-radius: 8px;
  background: var(--hp-section-card, rgba(15, 23, 42, 0.82));
  padding: 28px;
}

.hp-stat strong,
.hp-price {
  display: block;
  color: var(--hp-section-accent, var(--hp-brand));
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  font-weight: 900;
}

.hp-stat span,
.hp-testimonial span {
  color: var(--hp-section-muted, var(--hp-muted));
}

.hp-testimonial blockquote {
  margin: 0 0 22px;
  max-width: 900px;
  font-size: clamp(28px, 5vw, 54px);
  line-height: 1.06;
  font-weight: 800;
}

.hp-pricing,
.hp-contact,
.hp-media {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 28px;
  align-items: center;
}

.hp-pricing ul {
  margin: 0;
  padding-left: 22px;
  color: var(--hp-section-muted, var(--hp-muted));
  line-height: 1.9;
}

.hp-faq details {
  border-top: 1px solid var(--hp-border);
  padding: 18px 0;
}

.hp-faq summary {
  cursor: pointer;
  font-weight: 800;
}

.hp-contact-box {
  display: grid;
  gap: 10px;
  color: var(--hp-muted);
  font-size: 20px;
  font-weight: 800;
}

.hp-contact-box a {
  color: var(--hp-section-accent, var(--hp-brand));
}

.hp-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
  background: rgba(148, 163, 184, 0.12);
}

.hp-media-placeholder {
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--hp-border);
  border-radius: 8px;
  color: var(--hp-muted);
  background: rgba(148, 163, 184, 0.08);
}

.hp-cta {
  margin-bottom: 72px;
  border: 1px solid var(--hp-border);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 0.92));
  padding: 48px;
}

@media (max-width: 720px) {
  .hp-section {
    width: min(100% - 28px, 1120px);
    padding: 48px 0;
  }

  .hp-cta {
    padding: 28px;
  }

  .hp-pricing,
  .hp-contact,
  .hp-media {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}