/* ─── Homepage (nova/index) ───────────────────────────────────── */

/* Hero */
.nh-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 55%, #2d2d2d 100%);
  padding: 100px 0 80px;
  overflow: hidden;
  position: relative;
}
.nh-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(5,150,105,.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.nh-hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.nh-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,.15);
  color: #fbbf24;
  border: 1px solid rgba(245,158,11,.3);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 24px;
}
.nh-hero-eyebrow span { width:8px; height:8px; background:#fbbf24; border-radius:50%; display:inline-block; }
.nh-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.04em;
}
.nh-hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, #34d399, #6ee7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nh-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.nh-hero-sub strong { color: #6ee7b7; font-weight: 600; }
.nh-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.nh-hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.nh-stat-num { font-size: 1.6rem; font-weight: 800; color: #fff; display: block; }
.nh-stat-label { font-size: .8rem; color: rgba(255,255,255,.55); margin-top: 2px; }

/* Hero terminal card */
.nh-hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.4);
}
.nh-card-hd {
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nh-card-dots { display:flex; gap:6px; }
.nh-card-dot { width:10px; height:10px; border-radius:50%; }
.nh-card-title { font-size: .82rem; font-weight:600; color:rgba(255,255,255,.6); }
.nh-status-pill {
  display:flex; align-items:center; gap:6px;
  background:rgba(16,185,129,.15); color:#34d399;
  padding:4px 10px; border-radius:99px; font-size:.75rem; font-weight:600;
}
.nh-status-dot { width:6px; height:6px; background:#34d399; border-radius:50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.nh-card-rows { padding: 20px; display:flex; flex-direction:column; gap:12px; }
.nh-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .88rem;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nh-card-row:last-child { border-bottom: none; padding-bottom: 0; }
.nh-card-lbl { color: rgba(255,255,255,.5); }
.nh-card-val { color: #fff; font-weight: 500; }
.nh-card-tag { padding: 3px 10px; border-radius: 6px; font-size: .75rem; font-weight: 700; }
.nh-tag-green { background:rgba(16,185,129,.2); color:#34d399; }
.nh-tag-amber { background:rgba(245,158,11,.2); color:#fbbf24; }
.nh-tag-blue  { background:rgba(59,130,246,.2);  color:#93c5fd; }

/* Trust strip */
.nh-trust { background: var(--n-bg); padding: 28px 0; border-top: 1px solid var(--n-border); border-bottom: 1px solid var(--n-border); }
.nh-trust-inner { display:flex; align-items:center; gap:20px; flex-wrap:wrap; justify-content:center; }
.nh-trust-label { font-size:.82rem; font-weight:600; color:var(--n-text-muted); white-space:nowrap; }
.nh-trust-chips { display:flex; gap:10px; flex-wrap:wrap; justify-content:center; }
.nh-trust-chip {
  display:flex; align-items:center; gap:6px;
  background:#fff; border:1px solid var(--n-border);
  padding:7px 16px; border-radius:8px;
  font-size:.82rem; font-weight:500; color:var(--n-text); white-space:nowrap;
}

/* Stats bar */
.nh-statsbar { background: linear-gradient(90deg, #0a0a0a, #1a1a1a); padding: 40px 0; }
.nh-statsbar-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:24px; }
.nh-sbar-item { text-align:center; }
.nh-sbar-num { font-size:1.8rem; font-weight:900; color:#fff; display:block; }
.nh-sbar-label { font-size:.78rem; color:rgba(255,255,255,.5); margin-top:4px; }

/* Products */
.nh-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}
.nh-prod-card {
  background: var(--n-surface);
  border: 2px solid var(--n-border);
  border-radius: var(--n-radius-lg);
  padding: 28px 22px;
  position: relative;
  transition: var(--n-transition);
  display: flex;
  flex-direction: column;
}
.nh-prod-card:hover { border-color: var(--n-primary); transform: translateY(-4px); box-shadow: var(--n-shadow-lg); }
.nh-prod-badge {
  position:absolute; top:-12px; right:18px;
  background:var(--n-accent); color:var(--n-dark);
  font-size:.7rem; font-weight:700; padding:4px 12px; border-radius:99px;
  text-transform:uppercase; letter-spacing:.06em;
}
.nh-prod-icon {
  width: 48px; height: 48px; background: var(--n-bg);
  border-radius: 12px; display:flex; align-items:center;
  justify-content:center; font-size:1.5rem; margin-bottom:16px;
  border: 1px solid var(--n-primary-l);
}
.nh-prod-name { font-size:1.05rem; font-weight:700; color:var(--n-text); margin-bottom:8px; }
.nh-prod-price { font-size:.85rem; font-weight:600; color:var(--n-primary); margin-bottom:12px; }
.nh-prod-desc { font-size:.88rem; color:var(--n-text-muted); line-height:1.6; margin-bottom:16px; flex:1; }
.nh-prod-feats { list-style:none; margin-bottom:20px; }
.nh-prod-feat { font-size:.82rem; color:var(--n-text-muted); padding:4px 0; display:flex; gap:8px; align-items:flex-start; }
.nh-prod-feat::before { content:'✓'; color:var(--n-primary); font-weight:700; flex-shrink:0; }
.nh-prod-link { display:inline-flex; align-items:center; gap:6px; font-size:.88rem; font-weight:600; color:var(--n-primary); margin-top:auto; }
.nh-prod-link:hover { gap:10px; text-decoration:none; }

/* Use cases */
.nh-uc { background: var(--n-bg); }
.nh-uc-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:20px; }
.nh-uc-card {
  background:var(--n-surface); border:1px solid var(--n-border);
  border-radius:var(--n-radius-lg); padding:28px;
  transition:var(--n-transition); display:flex; flex-direction:column; gap:12px;
}
.nh-uc-card:hover { border-color:var(--n-primary); box-shadow:var(--n-shadow); }
.nh-uc-icon { font-size:2rem; }
.nh-uc-name { font-size:1.05rem; font-weight:700; color:var(--n-text); }
.nh-uc-desc { font-size:.9rem; color:var(--n-text-muted); line-height:1.65; }
.nh-uc-link { font-size:.85rem; font-weight:600; color:var(--n-primary); margin-top:auto; display:inline-flex; align-items:center; gap:4px; }
.nh-uc-link:hover { gap:8px; text-decoration:none; }

/* Infrastructure */
.nh-infra-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.nh-infra-countries { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-bottom:20px; }
.nh-country-tile { background:var(--n-bg); border:1px solid var(--n-border); border-radius:10px; padding:10px; text-align:center; font-size:.78rem; }
.nh-country-flag { font-size:1.3rem; margin-bottom:4px; }
.nh-country-name { font-weight:600; color:var(--n-text); }
.nh-country-ips  { color:var(--n-primary); font-weight:600; font-size:.75rem; }
.nh-infra-feats { display:flex; flex-direction:column; gap:20px; }
.nh-infra-feat { display:flex; gap:14px; align-items:flex-start; }
.nh-infra-feat-icon {
  width:44px; height:44px; background:var(--n-bg);
  border:1px solid var(--n-primary-l); border-radius:10px;
  display:flex; align-items:center; justify-content:center; font-size:1.2rem; flex-shrink:0;
}
.nh-infra-feat-title { font-size:.95rem; font-weight:700; color:var(--n-text); margin-bottom:4px; }
.nh-infra-feat-desc { font-size:.85rem; color:var(--n-text-muted); line-height:1.6; }

/* Developer section */
.nh-dev { background: #0a1a0f; }
.nh-dev-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.nh-dev .nova-section-label { background:rgba(5,150,105,.2); color:#6ee7b7; }
.nh-dev .nova-section-title { color:#fff; }
.nh-dev .nova-section-sub { color:rgba(255,255,255,.6); }
.nh-code-box { background: #0d1f13; border:1px solid rgba(255,255,255,.08); border-radius:16px; overflow:hidden; }
.nh-code-hd { display:flex; align-items:center; gap:8px; padding:12px 18px; background:rgba(255,255,255,.04); border-bottom:1px solid rgba(255,255,255,.06); }
.nh-code-dots { display:flex; gap:6px; }
.nh-code-dot { width:10px; height:10px; border-radius:50%; }
.nh-code-lang { font-size:.78rem; color:rgba(255,255,255,.4); margin-left:auto; font-family:var(--n-mono); }
.nh-code-body { padding:24px; }
.nh-code-body pre { margin:0; }
.nh-code-body code { font-family:var(--n-mono); font-size:.83rem; line-height:1.7; color:#e2e8f0; white-space:pre-wrap; }
.nh-code-body .cm { color:#4b7a5a; }
.nh-code-body .kw { color:#86efac; }
.nh-code-body .str { color:#fca5a5; }
.nh-code-body .var { color:#93c5fd; }
.nh-code-body .num { color:#fbbf24; }
.nh-code-body .fn  { color:#c084fc; }
.nh-dev-feats { display:flex; flex-direction:column; gap:20px; }
.nh-dev-feat { display:flex; gap:14px; align-items:flex-start; }
.nh-dev-feat-icon { width:40px; height:40px; background:rgba(5,150,105,.15); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:1.1rem; flex-shrink:0; }
.nh-dev-feat-title { font-size:.92rem; font-weight:700; color:#fff; margin-bottom:3px; }
.nh-dev-feat-desc { font-size:.85rem; color:rgba(255,255,255,.55); line-height:1.6; }
.nh-dev-actions { display:flex; gap:12px; margin-top:24px; flex-wrap:wrap; }
.nh-dev-actions a { padding:10px 20px; border-radius:8px; font-size:.88rem; font-weight:600; border:1px solid rgba(255,255,255,.18); color:rgba(255,255,255,.8); transition:var(--n-transition); }
.nh-dev-actions a:hover { background:rgba(255,255,255,.08); color:#fff; text-decoration:none; }

/* Pricing preview */
.nh-plans-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:20px; }
.nh-plan-card { background:var(--n-surface); border:2px solid var(--n-border); border-radius:var(--n-radius-lg); padding:28px 22px; position:relative; transition:var(--n-transition); }
.nh-plan-card:hover { border-color:var(--n-primary); box-shadow:var(--n-shadow); transform:translateY(-3px); }
.nh-plan-card.popular { border-color:var(--n-primary); box-shadow: 0 0 0 3px rgba(5,150,105,.1); }
.nh-plan-popular-pill { position:absolute; top:-14px; left:50%; transform:translateX(-50%); background:var(--n-primary); color:#fff; font-size:.72rem; font-weight:700; padding:5px 16px; border-radius:99px; white-space:nowrap; text-transform:uppercase; letter-spacing:.06em; }
.nh-plan-name { font-size:.9rem; font-weight:700; color:var(--n-text-muted); text-transform:uppercase; letter-spacing:.06em; margin-bottom:12px; }
.nh-plan-price { display:flex; align-items:baseline; gap:4px; margin-bottom:4px; }
.nh-plan-price strong { font-size:2.4rem; font-weight:900; color:var(--n-text); letter-spacing:-.04em; }
.nh-plan-price span { font-size:.9rem; color:var(--n-text-muted); }
.nh-plan-traffic { font-size:.88rem; color:var(--n-primary); font-weight:600; margin-bottom:20px; }
.nh-plan-feats { list-style:none; margin-bottom:24px; }
.nh-plan-feat { font-size:.85rem; color:var(--n-text-muted); padding:5px 0; display:flex; gap:8px; }
.nh-plan-feat::before { content:'✓'; color:var(--n-primary); font-weight:700; flex-shrink:0; }
.nh-plan-cta { display:block; width:100%; padding:12px; border-radius:10px; text-align:center; font-size:.9rem; font-weight:700; transition:var(--n-transition); }
.nh-plan-cta.solid { background:var(--n-primary); color:#fff; }
.nh-plan-cta.outline { border:2px solid var(--n-primary); color:var(--n-primary); }
.nh-plan-cta:hover { opacity:.85; text-decoration:none; }

/* CTA section */
.nh-cta { background: linear-gradient(135deg, var(--n-primary-d) 0%, #0a0a0a 100%); padding: 80px 0; text-align:center; }
.nh-cta h2 { font-size:clamp(1.8rem,4vw,2.8rem); font-weight:900; color:#fff; margin-bottom:14px; letter-spacing:-.03em; }
.nh-cta p { font-size:1.05rem; color:rgba(255,255,255,.7); max-width:540px; margin:0 auto 32px; }
.nh-cta-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.nh-cta-note { margin-top:20px; font-size:.82rem; color:rgba(255,255,255,.4); }

/* Testimonials */
.nh-testi-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:20px; }
.nh-testi-card { background:var(--n-surface); border:1px solid var(--n-border); border-radius:var(--n-radius-lg); padding:28px; }
.nh-testi-stars { color:#f59e0b; font-size:1.1rem; margin-bottom:12px; }
.nh-testi-quote { font-size:.92rem; color:var(--n-text); line-height:1.7; margin-bottom:20px; font-style:italic; }
.nh-testi-author { display:flex; align-items:center; gap:12px; }
.nh-testi-avatar { width:40px; height:40px; border-radius:50%; background:var(--n-primary); color:#fff; display:flex; align-items:center; justify-content:center; font-size:.9rem; font-weight:700; flex-shrink:0; }
.nh-testi-name { font-size:.9rem; font-weight:700; color:var(--n-text); }
.nh-testi-role { font-size:.78rem; color:var(--n-text-muted); }

/* FAQ */
.nova-faq-item { border:1px solid var(--n-border); border-radius:12px; margin-bottom:10px; overflow:hidden; }
.nova-faq-q { width:100%; background:#fff; border:none; padding:18px 22px; font-size:.95rem; font-weight:600; color:var(--n-text); text-align:left; cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:12px; font-family:inherit; }
.nova-faq-icon { font-size:1.3rem; color:var(--n-primary); flex-shrink:0; }
.nova-faq-a { display:none; padding:0 22px 18px; font-size:.9rem; color:var(--n-text-muted); line-height:1.75; }

@media(max-width:900px) {
  .nh-hero-grid { grid-template-columns:1fr; }
  .nh-hero-card { display:none; }
  .nh-infra-grid { grid-template-columns:1fr; }
  .nh-dev-grid { grid-template-columns:1fr; }
  .nh-statsbar-grid { grid-template-columns:repeat(3,1fr); }
}
@media(max-width:640px) {
  .nh-statsbar-grid { grid-template-columns:repeat(2,1fr); }
  .nh-hero-ctas { flex-direction:column; align-items:flex-start; }
  .nh-hero-stats { gap:20px; }
  .nh-cta-btns { flex-direction:column; align-items:center; }
}
