/*  NOVO Inference — White CI  */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg:          #FFFFFF;
  --bg-2:        #F8FAFC;
  --bg-3:        #F1F5F9;
  --nav-bg:      #0F172A;
  --border:      #E2E8F0;
  --text-1:      #0F172A;
  --text-2:      #475569;
  --text-3:      #94A3B8;
  --accent:      #2563EB;
  --accent-2:    #1D4ED8;
  --accent-light:#EFF6FF;
  --green:       #16A34A;
  --green-bg:    #F0FDF4;
  --red:         #DC2626;
  --red-bg:      #FEF2F2;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --max-w:       1080px;
  --narrow:      740px;
  --nav-h:       64px;
  --r:           10px;
  --r-lg:        16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }
input, select, textarea { font: inherit; }
h1, h2, h3, h4, p { margin: 0; }
code {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.88em;
  background: var(--bg-3);
  padding: 1px 6px;
  border-radius: 4px;
}

/* ── NAV ─────────────────────────────────────────────────────────────── */
.nv-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
  z-index: 100;
  display: flex;
  align-items: center;
}
.nv-nav__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nv-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-1);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.nv-nav__brand svg { color: var(--accent); }
.nv-btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 100px;
  background: var(--accent);
  color: #FFF;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s var(--ease);
  white-space: nowrap;
}
.nv-btn-nav:hover { background: var(--accent-2); transform: translateY(-1px); }

/* ── LAYOUT ───────────────────────────────────────────────────────────── */
.nv-page { padding-top: var(--nav-h); }
.nv-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.nv-container--narrow {
  max-width: var(--narrow);
  margin: 0 auto;
  padding: 0 24px;
}
.nv-section { padding: clamp(64px, 8vw, 112px) 0; }
.nv-section--alt { background: var(--bg-2); }

/* ── EYEBROW / SECTION HEAD ───────────────────────────────────────────── */
.nv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.nv-section-head { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
.nv-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-1);
  margin-bottom: 16px;
}
.nv-section-sub {
  font-size: 1.0625rem;
  color: var(--text-2);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── HERO ─────────────────────────────────────────────────────────────── */
.nv-hero {
  background: var(--nav-bg);
  color: #FFF;
  padding: clamp(80px, 10vw, 140px) 0 clamp(64px, 8vw, 96px);
  text-align: center;
}
.nv-hero .nv-eyebrow { color: #A5B4FC; }
.nv-hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #FFF;
  margin-bottom: 24px;
}
.nv-hero__title em {
  color: #93C5FD;
  font-style: normal;
}
.nv-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: #CBD5E1;
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.nv-hero__cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 56px;
}
.nv-btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 100px;
  background: var(--accent);
  color: #FFF;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: background 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(79, 70, 229, 0.35);
  will-change: transform;
}
.nv-btn-hero:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(79,70,229,0.4); }
.nv-hero__note { font-size: 0.8125rem; color: #64748B; }
.nv-hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 36px;
}
.nv-stat { padding: 0 28px; text-align: center; }
.nv-stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.08); }
.nv-stat__val {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: #FFF;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.nv-stat__label { font-size: 0.8125rem; color: #94A3B8; }

/* ── PAIN CARDS ───────────────────────────────────────────────────────── */
.nv-pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.nv-pain-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
}
.nv-pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--red);
  border-radius: 3px 0 0 3px;
}
.nv-pain-card__num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.nv-pain-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 8px;
}
.nv-pain-card__text { font-size: 0.9375rem; color: var(--text-2); line-height: 1.6; }

/* ── IMPACT GRID (6-cell) ─────────────────────────────────────────────── */
.nv-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.nv-impact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.nv-impact-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}
.nv-impact-card__num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.nv-impact-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 8px;
  line-height: 1.3;
}
.nv-impact-card__text { font-size: 0.9rem; color: var(--text-2); line-height: 1.6; }

/* ── SOL CARDS (4-cell EU) ────────────────────────────────────────────── */
.nv-sol-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.nv-sol-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
}
.nv-sol-card__icon {
  width: 44px; height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.nv-sol-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 10px;
  line-height: 1.35;
}
.nv-sol-card__text { font-size: 0.9375rem; color: var(--text-2); line-height: 1.65; }

/* ── BENEFIT SPLIT ────────────────────────────────────────────────────── */
.nv-benefit-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.nv-benefit-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
}
.nv-benefit-block__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.nv-benefit-block__title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text-1);
  margin-bottom: 24px;
}
.nv-benefit-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.nv-benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.5;
}
.nv-benefit-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green);
}
.nv-code-block {
  margin-top: 24px;
  background: #1E293B;
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow-x: auto;
}
.nv-code-block span {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #94A3B8;
  white-space: nowrap;
}
.nv-code-comment { color: #475569 !important; }
.nv-code-key { color: #93C5FD !important; }
.nv-code-str { color: #86EFAC !important; }
.nv-code-highlight { background: rgba(255,255,255,0.05); border-radius: 4px; }
.nv-metrics-row {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.nv-metric__val {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.nv-metric__label { font-size: 0.8125rem; color: var(--text-3); }

/* ── PRICING TABLE ────────────────────────────────────────────────────── */
.nv-table-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}
.nv-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.nv-table th, .nv-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.nv-table th {
  background: var(--bg-2);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-2);
}
.nv-table th:first-child, .nv-table td:first-child {
  text-align: left;
  color: var(--text-1);
  font-weight: 500;
}
.nv-table tr:last-child td { border-bottom: none; }
.nv-table__hl {
  background: var(--accent-light);
}
.nv-table__hl th, .nv-table th.nv-table__hl {
  background: var(--accent-light);
  color: var(--accent);
}
.nv-table__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--accent);
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.nv-ck { color: var(--green); font-weight: 700; }
.nv-cx { color: var(--text-3); }
.nv-green-val { color: var(--green); font-weight: 700; }
.nv-red-val { color: var(--red); }
.nv-table-note {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: var(--text-3);
}

/* ── LOI SECTION ──────────────────────────────────────────────────────── */
.nv-loi-section { background: var(--bg-2); }
.nv-loi-head { text-align: center; margin-bottom: 32px; }
.nv-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}
.nv-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: 100px;
  background: #FFF;
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-2);
}

/* ── FORM ─────────────────────────────────────────────────────────────── */
.nv-loi-form {
  background: #FFF;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
}
.nv-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.nv-field { display: flex; flex-direction: column; gap: 6px; }
.nv-field--full { margin-bottom: 20px; }
.nv-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-1);
}
.nv-req { color: var(--accent); margin-left: 2px; }
.nv-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9375rem;
  color: var(--text-1);
  background: var(--bg);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.nv-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}
.nv-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%2394A3B8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

/* HP field */
.nv-hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; height: 0; }

/* Signature */
.nv-sig-wrap {
  position: relative;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-2);
  cursor: crosshair;
}
.nv-sig-canvas {
  display: block;
  width: 100%;
  height: 140px;
  touch-action: none;
}
.nv-sig-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
  color: var(--text-3);
  font-size: 0.875rem;
  user-select: none;
}
.nv-sig-clear {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: 6px;
  background: #FFF;
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  transition: background 0.15s;
}
.nv-sig-clear:hover { background: var(--bg-3); }

/* Checkbox */
.nv-field--check { margin-bottom: 24px; }
.nv-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.nv-checkbox-native { position: absolute; opacity: 0; width: 0; height: 0; }
.nv-checkbox-box {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border: 2px solid var(--border);
  border-radius: 5px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: border-color 0.15s, background 0.15s;
}
.nv-checkbox-native:checked + .nv-checkbox-box {
  background: var(--accent);
  border-color: var(--accent);
}
.nv-checkbox-text { font-size: 0.875rem; color: var(--text-2); line-height: 1.55; }
.nv-inline-link { color: var(--accent); text-decoration: underline; }

/* Form error & submit */
.nv-form-error {
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--red-bg);
  border: 1px solid rgba(220,38,38,0.2);
  color: var(--red);
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.nv-btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  background: var(--accent);
  color: #FFF;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: background 0.2s, transform 0.15s var(--ease), box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(79,70,229,0.3);
  will-change: transform;
  cursor: pointer;
}
.nv-btn-submit:hover { background: var(--accent-2); transform: translateY(-1px); }
.nv-btn-submit:active { transform: translateY(0); }
.nv-btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.nv-form-note { margin-top: 10px; text-align: center; font-size: 0.8125rem; color: var(--text-3); }
.nv-form-footnote { margin-top: 20px; font-size: 0.8rem; color: var(--text-3); line-height: 1.6; border-top: 1px solid var(--border); padding-top: 16px; }

/* Spinner */
.nv-spinner {
  width: 18px; height: 18px;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── SUCCESS OVERLAY ──────────────────────────────────────────────────── */
.nv-success {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15,23,42,0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: opacity 0.3s;
}
.nv-success[hidden] { display: none; }
.nv-success__inner {
  position: relative;
  background: #FFF;
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}
.nv-success__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.nv-success__close:hover { background: var(--bg-3); color: var(--text-1); }
.nv-success__ref {
  margin-bottom: 16px;
  font-size: 0.875rem;
  color: var(--text-2);
}
.nv-success__icon {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  color: var(--green);
}
.nv-success__title {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text-1);
  margin-bottom: 16px;
}
.nv-success__text { font-size: 0.9375rem; color: var(--text-2); line-height: 1.65; margin-bottom: 24px; }
.nv-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-1);
  transition: background 0.15s;
  cursor: pointer;
  background: transparent;
}
.nv-btn-ghost:hover { background: var(--bg-2); }

/* ── FOOTER ───────────────────────────────────────────────────────────── */
.nv-footer {
  background: var(--nav-bg);
  color: #94A3B8;
  padding: 32px 0;
}
.nv-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}
.nv-footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFF;
  font-weight: 700;
  font-size: 0.9375rem;
}
.nv-footer__links { display: flex; gap: 24px; }
.nv-footer__link { font-size: 0.875rem; color: #64748B; transition: color 0.15s; }
.nv-footer__link:hover { color: #FFF; }
.nv-footer__copy { font-size: 0.8125rem; color: #94A3B8; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nv-pain-grid { grid-template-columns: 1fr; }
  .nv-impact-grid { grid-template-columns: 1fr; }
  .nv-sol-grid { grid-template-columns: 1fr; }
  .nv-benefit-split { grid-template-columns: 1fr; }
  .nv-form-row { grid-template-columns: 1fr; }
  .nv-hero__stats { flex-direction: column; gap: 20px; }
  .nv-stat:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 20px; }
  .nv-loi-form { padding: 24px; }
  .nv-benefit-block { padding: 24px; }
  .nv-table th, .nv-table td { padding: 10px 12px; font-size: 0.8125rem; }
  .nv-footer__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .nv-impact-grid { grid-template-columns: 1fr; }
}
