.npl-wrap {
  --npl-bg: #050509;
  --npl-panel: rgba(255,255,255,.055);
  --npl-border: rgba(255,255,255,.12);
  --npl-border-2: rgba(255,255,255,.20);
  --npl-text: #fff;
  --npl-muted: rgba(255,255,255,.66);
  --npl-soft: rgba(255,255,255,.42);
  --npl-purple: #6d28d9;
  --npl-magenta: #ff00ce;
  --npl-orange: #ff7a18;
  --npl-radius-xl: 32px;
  --npl-shadow: 0 30px 100px rgba(0,0,0,.48);
  --npl-max: 1180px;
  --npl-gradient: linear-gradient(135deg, var(--npl-purple) 0%, var(--npl-magenta) 52%, var(--npl-orange) 100%);
  color: var(--npl-text);
  font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at 80% 2%, rgba(255,0,206,.18), transparent 28%),
    radial-gradient(circle at 12% 0%, rgba(109,40,217,.18), transparent 26%),
    radial-gradient(circle at 64% 70%, rgba(255,122,24,.09), transparent 26%),
    linear-gradient(180deg, #08080e 0%, #050509 46%, #030305 100%);
  margin: 0 auto;
  overflow: hidden;
}
.npl-wrap * { box-sizing: border-box; }
.npl-wrap a { color: inherit; text-decoration: none; }
.npl-wrap button,
.npl-wrap input,
.npl-wrap select,
.npl-wrap textarea { font: inherit; }
.npl-hero {
  width: min(1280px, calc(100% - 34px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 112px) 0 clamp(58px, 7vw, 96px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}
.npl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,0,206,.30);
  background: rgba(255,0,206,.11);
  color: #ffd6f7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.npl-hero h1 {
  margin: 18px 0 18px;
  max-width: 780px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: .92;
  letter-spacing: -.08em;
  font-weight: 900;
}
.npl-gradient-text {
  background: var(--npl-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.npl-hero p {
  margin: 0;
  max-width: 650px;
  color: var(--npl-muted);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.75;
  font-weight: 500;
}
.npl-hero-actions,
.npl-form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.npl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--npl-border-2);
  color: white;
  font-weight: 900;
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;
  transition: 180ms ease;
}
.npl-btn:hover { transform: translateY(-1px); }
.npl-btn-outline { background: rgba(255,255,255,.04); }
.npl-btn-primary {
  border: 0;
  background: var(--npl-gradient);
  box-shadow: 0 18px 44px rgba(255,0,206,.25);
}
.npl-hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 22px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  font-weight: 700;
}
.npl-dashboard-card {
  position: relative;
  min-height: 560px;
  border-radius: 38px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(circle at 76% 0%, rgba(255,0,206,.22), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.035));
  box-shadow: var(--npl-shadow);
  overflow: hidden;
}
.npl-dashboard-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 44%, rgba(255,255,255,.08) 45% 46%, transparent 47% 100%),
    radial-gradient(circle at 12% 18%, rgba(255,122,24,.12), transparent 28%);
  pointer-events: none;
}
.npl-app-window {
  position: relative;
  z-index: 1;
  min-height: 512px;
  border-radius: 28px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(8,8,12,.78);
  backdrop-filter: blur(18px);
}
.npl-window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.npl-window-title {
  font-size: 13px;
  font-weight: 900;
  color: rgba(255,255,255,.72);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.npl-dots { display: flex; gap: 6px; }
.npl-dots i { width: 10px; height: 10px; border-radius: 99px; background: rgba(255,255,255,.22); }
.npl-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 16px 0; }
.npl-metric { padding: 16px; border-radius: 20px; border: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.055); }
.npl-metric span { color: var(--npl-soft); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.npl-metric strong { display: block; margin-top: 6px; font-size: 28px; letter-spacing: -.05em; line-height: 1; }
.npl-ticket-preview { display: grid; gap: 11px; }
.npl-ticket-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; padding: 14px; border-radius: 18px; border: 1px solid rgba(255,255,255,.09); background: rgba(255,255,255,.035); }
.npl-ticket-row b { font-size: 14px; letter-spacing: -.02em; }
.npl-ticket-row span { display: block; margin-top: 4px; color: var(--npl-soft); font-size: 12px; font-weight: 600; }
.npl-ticket-price { color: white; font-size: 15px; font-weight: 900; }
.npl-progress { margin-top: 16px; height: 11px; border-radius: 999px; overflow: hidden; background: rgba(255,255,255,.12); }
.npl-progress span { display: block; width: 72%; height: 100%; border-radius: inherit; background: var(--npl-gradient); }
.npl-section { width: min(var(--npl-max), calc(100% - 34px)); margin: 0 auto; padding: clamp(58px, 8vw, 104px) 0; }
.npl-section-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 460px); gap: 28px; align-items: end; margin-bottom: 32px; }
.npl-section-kicker { margin: 0 0 10px; color: #ffd0f6; font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .10em; }
.npl-section-title, .npl-highlight-card h2, .npl-final-cta h2 { margin: 0; font-size: clamp(34px, 5vw, 62px); line-height: .98; letter-spacing: -.07em; font-weight: 900; }
.npl-section-text { margin: 0; color: var(--npl-muted); line-height: 1.75; font-size: 15px; font-weight: 500; }
.npl-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.npl-feature-card { min-height: 210px; padding: 22px; border-radius: 26px; border: 1px solid var(--npl-border); background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025)); box-shadow: 0 18px 70px rgba(0,0,0,.25); }
.npl-feature-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; background: rgba(255,0,206,.12); border: 1px solid rgba(255,0,206,.24); margin-bottom: 18px; font-size: 22px; }
.npl-feature-card h3, .npl-step h3 { margin: 0 0 10px; font-size: 20px; line-height: 1.1; letter-spacing: -.045em; }
.npl-feature-card p, .npl-step p, .npl-highlight-card p, .npl-final-cta p { margin: 0; color: var(--npl-muted); font-size: 14px; line-height: 1.65; }
.npl-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.npl-step { position: relative; padding: 24px; border-radius: 26px; border: 1px solid var(--npl-border); background: rgba(255,255,255,.045); min-height: 200px; }
.npl-step::before { counter-increment: step; content: "0" counter(step); display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 14px; background: var(--npl-gradient); font-weight: 900; margin-bottom: 18px; }
.npl-split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 24px; align-items: stretch; }
.npl-highlight-card, .npl-form-card, .npl-final-cta { border-radius: 32px; border: 1px solid var(--npl-border); background: rgba(255,255,255,.055); box-shadow: var(--npl-shadow); }
.npl-highlight-card { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; justify-content: space-between; min-height: 590px; background: radial-gradient(circle at 82% 12%, rgba(255,0,206,.20), transparent 34%), radial-gradient(circle at 8% 100%, rgba(255,122,24,.13), transparent 34%), rgba(255,255,255,.055); }
.npl-highlight-card h2 { margin-bottom: 18px; }
.npl-check-list { display: grid; gap: 12px; margin: 30px 0; padding: 0; list-style: none; }
.npl-check-list li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,.78); font-weight: 700; font-size: 14px; }
.npl-check-list li::before { content: "✓"; flex: 0 0 23px; width: 23px; height: 23px; display: grid; place-items: center; border-radius: 99px; background: rgba(124,201,67,.14); color: #baff8f; font-weight: 900; }
.npl-form-card { padding: clamp(22px, 4vw, 34px); }
.npl-form-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.npl-form-card h2 { margin: 0 0 8px; font-size: 30px; letter-spacing: -.055em; line-height: 1; }
.npl-form-card p { margin: 0; color: var(--npl-muted); font-size: 14px; line-height: 1.6; }
.npl-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.npl-field { display: grid; gap: 8px; }
.npl-field.full { grid-column: 1 / -1; }
.npl-field label { color: rgba(255,255,255,.74); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.npl-field input, .npl-field select, .npl-field textarea { width: 100%; min-height: 50px; border-radius: 16px; border: 1px solid rgba(255,255,255,.12); background: rgba(0,0,0,.24); color: white; padding: 0 15px; outline: none; transition: 160ms ease; }
.npl-field select option { color: #111; }
.npl-field textarea { min-height: 118px; padding: 14px 15px; resize: vertical; }
.npl-field input:focus, .npl-field select:focus, .npl-field textarea:focus { border-color: rgba(255,0,206,.55); box-shadow: 0 0 0 4px rgba(255,0,206,.10); }
.npl-form-footer { justify-content: space-between; margin-top: 18px; }
.npl-form-footer small { color: var(--npl-soft); line-height: 1.5; font-weight: 600; }
.npl-form-message { display: none; margin-top: 15px; padding: 13px 15px; border-radius: 16px; border: 1px solid rgba(255,255,255,.12); color: white; background: rgba(255,255,255,.06); font-weight: 700; font-size: 14px; }
.npl-form-message.is-success { display: block; border-color: rgba(124,201,67,.34); background: rgba(124,201,67,.12); }
.npl-form-message.is-error { display: block; border-color: rgba(239,68,68,.34); background: rgba(239,68,68,.12); }
.npl-hp { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.npl-final-cta { width: min(1120px, calc(100% - 34px)); margin: 0 auto clamp(52px, 6vw, 90px); display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; padding: clamp(26px, 5vw, 48px); background: radial-gradient(circle at 10% 100%, rgba(255,122,24,.15), transparent 34%), linear-gradient(135deg, rgba(109,40,217,.18), rgba(255,0,206,.12), rgba(255,122,24,.11)); }
.npl-final-cta h2 { margin-bottom: 8px; }
@media (max-width: 980px) {
  .npl-hero, .npl-section-head, .npl-split, .npl-final-cta { grid-template-columns: 1fr; }
  .npl-dashboard-card { min-height: 0; }
  .npl-app-window { min-height: 440px; }
  .npl-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .npl-process { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .npl-section { width: min(100% - 28px, var(--npl-max)); padding: 58px 0; }
  .npl-hero { width: min(100% - 28px, 1280px); padding-top: 34px; }
  .npl-hero h1 { font-size: clamp(42px, 14.5vw, 64px); }
  .npl-hero-actions .npl-btn, .npl-form-footer .npl-btn, .npl-final-cta .npl-btn { width: 100%; }
  .npl-metrics, .npl-feature-grid, .npl-process, .npl-form-grid { grid-template-columns: 1fr; }
  .npl-dashboard-card { padding: 12px; border-radius: 28px; }
  .npl-app-window { border-radius: 22px; min-height: 0; }
  .npl-highlight-card { min-height: auto; }
  .npl-form-footer { flex-direction: column; align-items: stretch; }
  .npl-final-cta { width: min(100% - 28px, 1120px); }
}
