/* Minimal reset so the static fallback looks reasonable before React hydrates */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: #020617;
  color: #e5e7eb;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
}
a { color: #60a5fa; text-decoration: none; }
a:hover { color: #93c5fd; }
#root-static {
  background: radial-gradient(circle at top, #0f172a, #020617);
  min-height: 100vh;
}
.static-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 24px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.static-hero img { max-width: 480px; width: 100%; height: auto; }
.static-hero .tagline { font-size: 1.15rem; opacity: 0.85; max-width: 620px; line-height: 1.65; }
.static-hero .cta-hint { font-size: 0.95rem; opacity: 0.65; }
.static-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.btn-primary {
  padding: 11px 32px; border-radius: 999px; background: #2563eb;
  color: #fff; font-weight: 700; font-size: 0.95rem; text-decoration: none; display: inline-block;
}
.btn-secondary {
  padding: 11px 32px; border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.35);
  color: #e5e7eb; font-weight: 600; font-size: 0.95rem; text-decoration: none; display: inline-block;
}
.static-hiw-heading { text-align: center; padding: 0 24px 32px; }
.static-hiw-heading h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800;
  margin: 0 0 12px; letter-spacing: -0.02em; line-height: 1.2;
}
.static-hiw-heading h1 .accent { color: #60a5fa; }
.static-hiw-heading p { font-size: 1rem; opacity: 0.7; max-width: 560px; margin: 0 auto; line-height: 1.7; }
.static-cards {
  max-width: 1200px; margin: 0 auto; padding: 0 24px 80px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px;
}
.static-card {
  background: linear-gradient(160deg, rgba(30,58,138,0.25), rgba(15,23,42,0.7));
  border: 1px solid rgba(148,163,184,0.15); border-radius: 20px;
  overflow: hidden; display: flex; flex-direction: column;
}
.static-card.wide { grid-column: 1 / -1; }
.static-card-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-bottom: 1px solid rgba(148,163,184,0.1);
}
.static-card.wide .static-card-img { aspect-ratio: 21/7; }
.static-card-body { padding: 24px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.static-card-header { display: flex; align-items: center; gap: 12px; }
.static-card-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(59,130,246,0.2); border: 1px solid rgba(59,130,246,0.4);
  color: #93c5fd; font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.static-card h2 { margin: 0; font-size: 1.05rem; font-weight: 700; color: #f1f5f9; }
.static-card p { margin: 0; font-size: 0.85rem; opacity: 0.75; line-height: 1.6; }
.static-card ul { margin: 0; padding-left: 18px; display: flex; flex-direction: column; gap: 4px; }
.static-card li { font-size: 0.82rem; opacity: 0.7; line-height: 1.5; }
.static-pricing {
  border-top: 1px solid rgba(148,163,184,0.1); background: rgba(15,23,42,0.6);
  padding: 64px 24px; text-align: center;
}
.static-pricing-inner { max-width: 560px; margin: 0 auto; }
.static-pricing h2 { font-size: 1.4rem; font-weight: 700; margin: 0 0 16px; }
.static-pricing p { font-size: 0.95rem; opacity: 0.75; line-height: 1.8; margin: 0 0 32px; }
.static-pricing strong { color: #f1f5f9; }
@media (max-width: 600px) {
  .static-hero { padding: 48px 16px 32px; }
  .static-cards { padding: 0 16px 60px; }
  .static-card.wide { grid-column: auto; }
  .static-card.wide .static-card-img { aspect-ratio: 16/9; }
}
