/* =========================================================================
   Nexora Aero — Design-Ops Automation Audit
   site.css — all styles. Tokens replicated locally (NOT linked to live site).
   Sharp corners are core to brand: --nx-radius is 0.
   ========================================================================= */

:root {
  /* Brand tokens (replicated; do not link real site css) */
  --nx-blue: #0754f8;
  --nx-blue-2: #3b7bff;
  --nx-green: #0169fe;
  --nx-pink: #3d8bff;
  --nx-orange: #0169fe;
  --nx-violet: #0169fe;
  --nx-ink: #080808;
  --nx-ink-2: #1a1a1f;
  --nx-muted: #5a5a5a;
  --nx-bg: #f6f6f6;
  --nx-glass: rgba(255, 255, 255, .55);
  --nx-radius: 0px;          /* SHARP CORNERS */
  --nx-radius-sm: 2px;
  --font-sans: 'Inter', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Derived */
  --nx-line: rgba(8, 8, 8, .12);
  --nx-line-2: rgba(8, 8, 8, .07);
  --nx-shadow: 0 1px 2px rgba(8, 8, 8, .04), 0 18px 50px -28px rgba(8, 8, 8, .22);
  --nx-shadow-lg: 0 30px 80px -40px rgba(8, 8, 8, .5);
  --maxw: 1160px;
  --gutter: clamp(20px, 5vw, 56px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--nx-ink);
  background: var(--nx-bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Animated gradient backdrop — subtle, premium */
body::before {
  content: "";
  position: fixed;
  inset: -25%;
  z-index: -2;
  background:
    radial-gradient(40% 50% at 15% 12%, rgba(7, 84, 248, .10), transparent 60%),
    radial-gradient(38% 48% at 88% 18%, rgba(1, 105, 254, .08), transparent 60%),
    radial-gradient(45% 55% at 75% 88%, rgba(8, 200, 66, .07), transparent 60%),
    radial-gradient(40% 50% at 10% 92%, rgba(255, 138, 42, .06), transparent 60%);
  filter: blur(8px);
  animation: nxDrift 26s var(--ease) infinite alternate;
}
@keyframes nxDrift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-3%, 2%, 0) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) { body::before { animation: none; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  margin: 0 0 .4em;
  line-height: 1.08;
  letter-spacing: -.022em;
  font-weight: 800;
}
h1 { font-size: clamp(2.05rem, 5.2vw, 3.55rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.55rem); }
h3 { font-size: clamp(1.18rem, 2vw, 1.42rem); }
p { margin: 0 0 1rem; }

/* ---------- Layout helpers ---------- */
.nx-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.nx-section { padding: clamp(56px, 9vw, 116px) 0; position: relative; }
.nx-section--tight { padding: clamp(40px, 6vw, 72px) 0; }
.nx-center { text-align: center; }
.nx-grid { display: grid; gap: 22px; }
@media (min-width: 760px) {
  .nx-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .nx-grid-2 { grid-template-columns: repeat(2, 1fr); }
}

/* Eyebrow — JetBrains Mono uppercase */
.nx-eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--nx-blue);
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.nx-eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
  opacity: .55;
}
.nx-center .nx-eyebrow { justify-content: center; }

.nx-lede { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: var(--nx-muted); max-width: 60ch; }
.nx-center .nx-lede { margin-left: auto; margin-right: auto; }
.nx-mono { font-family: var(--font-mono); }
.nx-muted { color: var(--nx-muted); }

/* ---------- Buttons ---------- */
.nx-btn {
  --bg: var(--nx-ink);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -.01em;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid transparent;
  border-radius: var(--nx-radius);
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, opacity .2s;
  will-change: transform;
  line-height: 1;
}
.nx-btn:hover { transform: translateY(-2px); box-shadow: var(--nx-shadow-lg); }
.nx-btn:active { transform: translateY(0); }
.nx-btn--primary {
  --fg: #fff;
  background: linear-gradient(110deg, var(--nx-blue), var(--nx-blue-2));
}
.nx-btn--accent {
  --fg: #06210f;
  background: linear-gradient(110deg, var(--nx-green), #4be07a);
}
.nx-btn--ghost {
  --bg: transparent;
  --fg: var(--nx-ink);
  border-color: var(--nx-line);
}
.nx-btn--ghost:hover { background: rgba(8, 8, 8, .04); box-shadow: none; transform: translateY(-1px); }
.nx-btn--lg { padding: 17px 34px; font-size: 16px; }
.nx-btn--block { width: 100%; }
.nx-btn--sm { padding: 10px 18px; font-size: 13.5px; }

/* Accessible focus states (global) */
:where(a, button, input, select, textarea, [tabindex], summary):focus-visible {
  outline: 2.5px solid var(--nx-blue);
  outline-offset: 3px;
  border-radius: var(--nx-radius-sm);
}

/* ---------- Glass surfaces / cards ---------- */
.nx-card {
  background: var(--nx-glass);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, .65);
  box-shadow: var(--nx-shadow);
  border-radius: var(--nx-radius);
  padding: 30px;
  position: relative;
}
.nx-card--solid { background: #fff; }

.nx-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono);
  font-size: 10.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 5px 11px;
  border: 1px solid var(--nx-line);
  border-radius: 999px;
  color: var(--nx-muted);
  background: rgba(255, 255, 255, .5);
}
.nx-tag--ok { color: #06882a; border-color: rgba(8, 200, 66, .35); background: rgba(8, 200, 66, .08); }
.nx-tag--accent { color: var(--nx-blue); border-color: rgba(7, 84, 248, .3); background: rgba(7, 84, 248, .07); }

/* dot accent */
.nx-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--nx-green); display: inline-block; }

/* ---------- Header ---------- */
.nx-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 246, 246, .72);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border-bottom: 1px solid var(--nx-line-2);
}
.nx-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}
.nx-logo { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: -.03em; font-size: 18px; }
.nx-logo__mark {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--nx-blue), var(--nx-green));
  display: grid; place-items: center;
  color: #fff; font-family: var(--font-mono); font-weight: 700; font-size: 15px;
  border-radius: var(--nx-radius-sm);
}
.nx-logo__sub { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: var(--nx-muted); font-weight: 500; }
.nx-nav { display: flex; align-items: center; gap: 28px; }
.nx-nav a { font-size: 14.5px; color: var(--nx-muted); font-weight: 500; transition: color .2s; }
.nx-nav a:hover, .nx-nav a[aria-current="page"] { color: var(--nx-ink); }
.nx-nav__cta { margin-left: 4px; }
.nx-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nx-burger span { display: block; width: 22px; height: 2px; background: var(--nx-ink); margin: 4px 0; transition: .25s var(--ease); }

@media (max-width: 860px) {
  .nx-nav { position: fixed; inset: 66px 0 auto; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(246, 246, 246, .98); backdrop-filter: blur(20px);
    padding: 8px var(--gutter) 22px; border-bottom: 1px solid var(--nx-line);
    transform: translateY(-130%); transition: transform .35s var(--ease); }
  .nx-nav[data-open="true"] { transform: translateY(0); }
  .nx-nav a { padding: 14px 0; border-bottom: 1px solid var(--nx-line-2); font-size: 16px; }
  .nx-nav__cta { margin: 14px 0 0; }
  .nx-burger { display: block; }
  .nx-nav[data-open="true"] ~ .nx-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
}

/* ---------- Hero ---------- */
.nx-hero { padding: clamp(48px, 7vw, 86px) 0 clamp(40px, 6vw, 64px); position: relative; }
.nx-hero__grid { display: grid; gap: clamp(34px, 5vw, 56px); align-items: start; }
@media (min-width: 980px) { .nx-hero__grid { grid-template-columns: 1.02fr 1fr; } }
.nx-hero h1 { margin-bottom: 20px; }
.nx-hero__highlight { background: linear-gradient(110deg, var(--nx-blue), var(--nx-violet)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nx-hero__cta-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }
.nx-hero__meta { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 26px; font-size: 13px; color: var(--nx-muted); }
.nx-hero__meta span { display: inline-flex; align-items: center; gap: 8px; }

/* ---------- Calculator widget ---------- */
.nx-calc { padding: 0; overflow: hidden; }
.nx-calc__head {
  padding: 22px 26px;
  border-bottom: 1px solid var(--nx-line-2);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: rgba(255, 255, 255, .35);
}
.nx-calc__head h3 { margin: 0; font-size: 16px; letter-spacing: -.01em; }
.nx-calc__body { padding: 24px 26px 8px; }
.nx-field { margin-bottom: 20px; }
.nx-field__top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 9px; }
.nx-field label { font-size: 13.5px; font-weight: 600; }
.nx-field__val { font-family: var(--font-mono); font-size: 14px; font-weight: 600; color: var(--nx-blue); }
.nx-field__hint { font-size: 11.5px; color: var(--nx-muted); margin-top: 7px; }

/* Range slider */
.nx-range { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; background: var(--nx-line); border-radius: 999px; outline-offset: 6px; cursor: pointer; }
.nx-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 999px; background: #fff; border: 2px solid var(--nx-blue); box-shadow: 0 4px 12px rgba(7, 84, 248, .35); cursor: grab; transition: transform .15s var(--ease); }
.nx-range::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.12); }
.nx-range::-moz-range-thumb { width: 22px; height: 22px; border-radius: 999px; background: #fff; border: 2px solid var(--nx-blue); box-shadow: 0 4px 12px rgba(7, 84, 248, .35); cursor: grab; }
.nx-range::-moz-range-track { height: 4px; background: var(--nx-line); border-radius: 999px; }

select.nx-select {
  width: 100%; padding: 12px 14px; font-family: var(--font-sans); font-size: 14px;
  border: 1px solid var(--nx-line); border-radius: var(--nx-radius); background: rgba(255, 255, 255, .7);
  color: var(--nx-ink); cursor: pointer;
}

/* Calc result */
.nx-calc__result {
  margin: 6px 0 0; padding: 24px 26px;
  background: linear-gradient(135deg, var(--nx-ink), var(--nx-ink-2));
  color: #fff;
}
.nx-result__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.nx-result__metric .k { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255, 255, 255, .6); margin: 0 0 4px; }
.nx-result__metric .v { font-size: clamp(1.7rem, 4vw, 2.3rem); font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.nx-result__metric .v.green { color: #5ef08a; }
.nx-result__metric .u { font-size: 13px; color: rgba(255, 255, 255, .65); font-weight: 500; }
.nx-result__note { margin: 18px 0 0; font-size: 11.5px; color: rgba(255, 255, 255, .55); line-height: 1.5; border-top: 1px solid rgba(255, 255, 255, .12); padding-top: 14px; }
.nx-calc__foot { padding: 18px 26px 24px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.nx-calc__foot .nx-btn { flex: 1 1 auto; }

/* Scorecard share badge */
.nx-score-pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 13px; font-family: var(--font-mono); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; border-radius: 999px; }
.nx-score-pill[data-band="lean"] { background: rgba(8, 200, 66, .12); color: #06882a; }
.nx-score-pill[data-band="leaky"] { background: rgba(255, 138, 42, .14); color: #c25a00; }
.nx-score-pill[data-band="bleeding"] { background: rgba(1, 105, 254, .12); color: #a01fb3; }

/* ---------- Trust strip ---------- */
.nx-trust { border-top: 1px solid var(--nx-line-2); border-bottom: 1px solid var(--nx-line-2); padding: 26px 0; }
.nx-trust__grid { display: grid; gap: 18px 30px; grid-template-columns: repeat(2, 1fr); align-items: center; }
@media (min-width: 760px) { .nx-trust__grid { grid-template-columns: repeat(4, 1fr); } }
.nx-trust__item { text-align: center; }
.nx-trust__item .n { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; letter-spacing: -.02em; }
.nx-trust__item .l { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--nx-muted); margin-top: 4px; }

/* ---------- Value props ---------- */
.nx-prop { padding: 30px; }
.nx-prop__icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 18px; border-radius: var(--nx-radius-sm); color: #fff; font-family: var(--font-mono); font-weight: 700; }
.nx-prop h3 { margin-bottom: 10px; }
.nx-prop p { margin: 0; font-size: 14.5px; color: var(--nx-muted); }

/* ---------- Steps / how it works ---------- */
.nx-steps { counter-reset: step; display: grid; gap: 20px; }
@media (min-width: 860px) { .nx-steps--4 { grid-template-columns: repeat(2, 1fr); } }
.nx-step { padding: 28px 30px; position: relative; }
.nx-step__n { counter-increment: step; font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: var(--nx-blue); letter-spacing: .1em; }
.nx-step__n::before { content: counter(step, decimal-leading-zero); }
.nx-step h3 { margin: 10px 0 8px; }
.nx-step p { margin: 0; font-size: 14.5px; color: var(--nx-muted); }
.nx-step__tag { margin-top: 14px; }

/* timeline variant */
.nx-flow { display: grid; gap: 0; }
.nx-flow__item { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 0 0 32px; position: relative; }
.nx-flow__item:last-child { padding-bottom: 0; }
.nx-flow__bullet { width: 54px; display: flex; flex-direction: column; align-items: center; }
.nx-flow__num { width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center; background: linear-gradient(135deg, var(--nx-blue), var(--nx-blue-2)); color: #fff; font-family: var(--font-mono); font-weight: 700; font-size: 14px; border-radius: var(--nx-radius-sm); }
.nx-flow__line { flex: 1; width: 2px; background: var(--nx-line); margin-top: 6px; }
.nx-flow__item:last-child .nx-flow__line { display: none; }
.nx-flow__body { padding-bottom: 6px; }
.nx-flow__body h3 { margin: 6px 0 8px; }
.nx-flow__body p { margin: 0 0 8px; color: var(--nx-muted); font-size: 15px; }

/* ---------- Pricing ---------- */
.nx-pricing { display: grid; gap: 22px; align-items: stretch; }
@media (min-width: 900px) { .nx-pricing--3 { grid-template-columns: repeat(3, 1fr); } }
.nx-plan { padding: 32px 30px; display: flex; flex-direction: column; }
.nx-plan--featured { border: 1px solid var(--nx-blue); box-shadow: 0 30px 80px -42px rgba(7, 84, 248, .55); }
.nx-plan--featured::before {
  content: "Most chosen"; position: absolute; top: 0; right: 24px; transform: translateY(-50%);
  font-family: var(--font-mono); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  background: linear-gradient(110deg, var(--nx-blue), var(--nx-violet)); color: #fff; padding: 5px 12px; border-radius: 999px;
}
.nx-plan__name { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--nx-muted); }
.nx-plan__price { font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -.03em; margin: 12px 0 2px; line-height: 1; }
.nx-plan__price small { font-size: 14px; font-weight: 600; color: var(--nx-muted); letter-spacing: 0; }
.nx-plan__price .from { font-size: 13px; font-weight: 500; color: var(--nx-muted); display: block; margin-bottom: 4px; letter-spacing: .04em; font-family: var(--font-mono); text-transform: uppercase; }
.nx-plan__desc { font-size: 14px; color: var(--nx-muted); margin: 8px 0 20px; min-height: 40px; }
.nx-plan__feats { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 11px; }
.nx-plan__feats li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; font-size: 14px; align-items: start; }
.nx-plan__feats li::before { content: "✓"; color: var(--nx-green); font-weight: 800; font-size: 13px; line-height: 1.5; }
.nx-plan__feats li.off { color: var(--nx-muted); }
.nx-plan__feats li.off::before { content: "—"; color: var(--nx-muted); }
.nx-plan .nx-btn { margin-top: auto; }
.nx-anchor-note { font-family: var(--font-mono); font-size: 11px; color: var(--nx-muted); text-align: center; margin-top: 22px; letter-spacing: .04em; }

/* take-rate / listing band */
.nx-band { display: grid; gap: 22px; }
@media (min-width: 820px) { .nx-band { grid-template-columns: 1fr 1fr; } }
.nx-band__card { padding: 30px; }
.nx-band__card h3 { margin-bottom: 6px; }
.nx-band__card .big { font-size: clamp(1.6rem, 3.5vw, 2.1rem); font-weight: 800; letter-spacing: -.02em; margin: 10px 0; }
.nx-band__card p { font-size: 14px; color: var(--nx-muted); margin: 0; }

/* ---------- FAQ accordion ---------- */
.nx-faq { display: grid; gap: 12px; max-width: 820px; margin: 0 auto; }
.nx-faq__item { border: 1px solid var(--nx-line); background: var(--nx-glass); backdrop-filter: blur(14px); border-radius: var(--nx-radius); overflow: hidden; }
.nx-faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-sans); font-size: 15.5px; font-weight: 600; color: var(--nx-ink); }
.nx-faq__q .ic { flex: 0 0 auto; width: 20px; height: 20px; position: relative; transition: transform .3s var(--ease); }
.nx-faq__q .ic::before, .nx-faq__q .ic::after { content: ""; position: absolute; inset: 0; margin: auto; background: var(--nx-blue); }
.nx-faq__q .ic::before { width: 14px; height: 2px; }
.nx-faq__q .ic::after { width: 2px; height: 14px; transition: transform .3s var(--ease); }
.nx-faq__q[aria-expanded="true"] .ic::after { transform: rotate(90deg); opacity: 0; }
.nx-faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.nx-faq__a-inner { padding: 0 24px 22px; font-size: 14.5px; color: var(--nx-muted); }
.nx-faq__a-inner p { margin: 0; }

/* ---------- Lead capture (proof page) ---------- */
.nx-lead-grid { display: grid; gap: clamp(28px, 5vw, 48px); align-items: start; }
@media (min-width: 920px) { .nx-lead-grid { grid-template-columns: 1fr 1fr; } }
.nx-form { display: grid; gap: 16px; }
.nx-form label { font-size: 13px; font-weight: 600; display: block; margin-bottom: 7px; }
.nx-input, .nx-textarea {
  width: 100%; padding: 13px 15px; font-family: var(--font-sans); font-size: 14.5px;
  border: 1px solid var(--nx-line); border-radius: var(--nx-radius); background: rgba(255, 255, 255, .72); color: var(--nx-ink);
  transition: border-color .2s, box-shadow .2s;
}
.nx-input:focus, .nx-textarea:focus { border-color: var(--nx-blue); box-shadow: 0 0 0 3px rgba(7, 84, 248, .12); outline: none; }
.nx-textarea { resize: vertical; min-height: 92px; }
.nx-form__msg { font-size: 13px; padding: 13px 16px; border-radius: var(--nx-radius); display: none; }
.nx-form__msg[data-show="true"] { display: block; }
.nx-form__msg.ok { background: rgba(8, 200, 66, .1); color: #06882a; border: 1px solid rgba(8, 200, 66, .3); }
.nx-form__msg.err { background: rgba(1, 105, 254, .08); color: #a01fb3; border: 1px solid rgba(1, 105, 254, .3); }

/* preview output panel */
.nx-preview { padding: 0; overflow: hidden; }
.nx-preview__head { padding: 18px 24px; border-bottom: 1px solid var(--nx-line-2); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.nx-preview__body { padding: 24px; }
.nx-finding { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--nx-line-2); align-items: start; }
.nx-finding:last-child { border-bottom: 0; }
.nx-finding__sev { width: 9px; height: 9px; border-radius: 999px; margin-top: 6px; }
.nx-finding__sev.high { background: var(--nx-pink); }
.nx-finding__sev.medium { background: var(--nx-orange); }
.nx-finding__sev.low { background: var(--nx-blue-2); }
.nx-finding h4 { margin: 0 0 4px; font-size: 14.5px; }
.nx-finding p { margin: 0; font-size: 13px; color: var(--nx-muted); }
.nx-finding__hrs { font-family: var(--font-mono); font-size: 13px; font-weight: 700; text-align: right; white-space: nowrap; }
.nx-finding__hrs small { display: block; font-size: 10px; color: var(--nx-muted); font-weight: 500; letter-spacing: .06em; }

/* leads table */
.nx-leads { margin-top: 26px; }
.nx-leads table { width: 100%; border-collapse: collapse; font-size: 13px; }
.nx-leads th { text-align: left; font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--nx-muted); padding: 8px 10px; border-bottom: 1px solid var(--nx-line); }
.nx-leads td { padding: 10px; border-bottom: 1px solid var(--nx-line-2); }
.nx-leads tr:last-child td { border-bottom: 0; }

/* ---------- Checkout ---------- */
.nx-checkout { display: grid; gap: clamp(26px, 5vw, 44px); align-items: start; }
@media (min-width: 920px) { .nx-checkout { grid-template-columns: 1.1fr .9fr; } }
.nx-summary { padding: 0; overflow: hidden; position: sticky; top: 86px; }
.nx-summary__head { padding: 22px 26px; color: #fff; }
.nx-summary__head .nx-eyebrow { color: rgba(255, 255, 255, .8); }
.nx-summary__head h3 { margin: 0; color: #fff; }
.nx-summary__body { padding: 24px 26px; background: #fff; }
.nx-line { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; font-size: 14px; border-bottom: 1px solid var(--nx-line-2); }
.nx-line.total { border-bottom: 0; padding-top: 16px; font-weight: 800; font-size: 18px; letter-spacing: -.01em; }
.nx-line .sub { color: var(--nx-muted); font-size: 12px; }
.nx-pay-methods { display: grid; gap: 11px; margin-top: 8px; }
.nx-pay-cta {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px; font-family: var(--font-sans); font-weight: 700; font-size: 15px; cursor: pointer;
  border: 1px solid transparent; border-radius: var(--nx-radius); color: #fff; transition: transform .2s var(--ease), box-shadow .2s, opacity .2s;
}
.nx-pay-cta:hover { transform: translateY(-2px); box-shadow: var(--nx-shadow-lg); }
.nx-pay-cta:disabled { opacity: .6; cursor: wait; transform: none; box-shadow: none; }
.nx-pay-cta--stripe { background: linear-gradient(180deg, #635bff, #4b45c6); }
.nx-pay-cta--paypal { background: linear-gradient(180deg, #ffc439, #f0a800); color: #142c8e; }
.nx-pay-cta--razorpay { background: linear-gradient(180deg, #0c64f2, #084ec2); }
.nx-secure-note { font-size: 11.5px; color: var(--nx-muted); text-align: center; margin: 16px 0 0; display: flex; align-items: center; justify-content: center; gap: 8px; }
.nx-demo-banner { margin: 0 0 18px; padding: 13px 16px; background: rgba(255, 138, 42, .1); border: 1px solid rgba(255, 138, 42, .3); font-size: 12.5px; color: #a85400; border-radius: var(--nx-radius); }
.nx-tier-switch { display: flex; gap: 8px; margin: 18px 0 0; flex-wrap: wrap; }
.nx-tier-switch a { font-family: var(--font-mono); font-size: 11px; padding: 7px 12px; border: 1px solid var(--nx-line); color: var(--nx-muted); letter-spacing: .04em; }
.nx-tier-switch a[aria-current="true"] { border-color: var(--nx-blue); color: var(--nx-blue); background: rgba(7, 84, 248, .06); }

/* ---------- Dark section ---------- */
.nx-dark { background: var(--nx-ink); color: #fff; }
.nx-dark .nx-eyebrow { color: var(--nx-green); }
.nx-dark .nx-lede, .nx-dark .nx-muted { color: rgba(255, 255, 255, .68); }
.nx-dark .nx-card { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .12); backdrop-filter: blur(10px); }
.nx-dark .nx-prop p { color: rgba(255, 255, 255, .66); }
.nx-cta-band { text-align: center; }
.nx-cta-band h2 { max-width: 18ch; margin: 0 auto .5em; }

/* ---------- Footer ---------- */
.nx-footer { border-top: 1px solid var(--nx-line-2); padding: 56px 0 36px; }
.nx-footer__grid { display: grid; gap: 30px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .nx-footer__grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.nx-footer__col h4 { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--nx-muted); margin: 0 0 14px; font-weight: 600; }
.nx-footer__col a { display: block; font-size: 14px; color: var(--nx-muted); padding: 5px 0; transition: color .2s; }
.nx-footer__col a:hover { color: var(--nx-ink); }
.nx-footer__about { font-size: 14px; color: var(--nx-muted); max-width: 38ch; margin: 14px 0 0; }
.nx-footer__bottom { margin-top: 42px; padding-top: 24px; border-top: 1px solid var(--nx-line-2); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; font-size: 12.5px; color: var(--nx-muted); }
.nx-footer__legal { max-width: 70ch; line-height: 1.5; }

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Misc / utilities ---------- */
.nx-divider { height: 1px; background: var(--nx-line-2); border: 0; margin: 0; }
.nx-skip { position: absolute; left: -9999px; top: 0; background: var(--nx-ink); color: #fff; padding: 12px 18px; z-index: 100; }
.nx-skip:focus { left: 12px; top: 12px; }
.nx-section-head { max-width: 56ch; margin-bottom: clamp(34px, 5vw, 54px); }
.nx-center .nx-section-head { margin-left: auto; margin-right: auto; }
.nx-pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.nx-callout { padding: 22px 26px; border-left: 3px solid var(--nx-blue); background: rgba(7, 84, 248, .05); font-size: 14.5px; }
.nx-callout strong { color: var(--nx-ink); }
.nx-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
