/*
Theme Name: NeuraPent
Theme URI: https://www.neurapent.com/
Author: NeuraPent
Author URI: https://www.neurapent.com/
Description: A custom dark WordPress theme for NeuraPent autonomous penetration testing.
Version: 1.0.23
Text Domain: neurapent
GitHub Theme URI: https://github.com/Areeba402/neurapent-theme
Primary Branch: main
*/

/* === DESIGN SYSTEM === */
:root {
  --bg: #03050a;
  --bg-deep: #020306;
  --panel: rgba(8, 12, 24, 0.4);
  --panel-hover: rgba(14, 20, 36, 0.55);
  --panel-strong: rgba(10, 14, 28, 0.8);
  --border: rgba(255, 255, 255, 0.05);
  --border-hover: rgba(156, 92, 255, 0.3);
  --text: #f3f5f9;
  --muted: #9ba4b7;
  --dim: #5c6475;
  --purple: #9c5cff;
  --purple-glow: rgba(156, 92, 255, 0.15);
  --cyan: #3fe5e8;
  --cyan-glow: rgba(63, 229, 232, 0.08);
  --green: #00ffb2;
  --red: #f85269;
  --card-radius: 12px;
  --shadow-premium: 0 30px 100px rgba(0, 0, 0, 0.6);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: var(--bg-deep);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.mobile-nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

button,
input,
textarea,
select {
  font-family: inherit;
  color: inherit;
  outline: none;
}

button {
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: rgba(156, 92, 255, 0.35);
  color: var(--text);
}

.page-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-wrapper > main {
  flex: 1 0 auto;
}

.container {
  width: min(100% - 40px, 1140px);
  margin: 0 auto;
}

.grid-bg-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 30%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.05) 85%);
  pointer-events: none;
  z-index: 1;
}

.spotlight {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.spotlight-1 {
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 100vw);
  height: 500px;
  background: radial-gradient(circle, rgba(156, 92, 255, 0.18) 0%, transparent 70%);
  filter: blur(100px);
}

.spotlight-2 {
  top: 200px;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(63, 229, 232, 0.05) 0%, transparent 70%);
  filter: blur(120px);
}

.spotlight-3 {
  top: 500px;
  right: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(156, 92, 255, 0.08) 0%, transparent 70%);
  filter: blur(120px);
}

/* Front-page hero: tone down spotlights for clean editorial look */
.is-front-page .spotlight-1 {
  background: radial-gradient(circle, rgba(248, 250, 252, 0.04) 0%, transparent 60%);
  filter: blur(120px);
}

.is-front-page .spotlight-2,
.is-front-page .spotlight-3 {
  display: none;
}

.is-front-page .grid-bg-overlay {
  opacity: 0.3;
}

.section-eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 auto 30px;
  max-width: 820px;
  color: var(--text);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-align: center;
}

.section-title span {
  background: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 26px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--purple) 0%, #753be6 100%);
  box-shadow: 0 6px 20px rgba(156, 92, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 8px 25px rgba(156, 92, 255, 0.5);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === NAVIGATION === */
.top-nav {
  position: fixed;
  top: 24px;
  left: 50%;
  width: min(100% - 32px, 1100px);
  height: 62px;
  border: 1px solid var(--border);
  border-radius: 99px;
  background: rgba(3, 5, 10, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: translateX(-50%);
  transition: var(--transition-smooth);
  z-index: 100;
}

.top-nav.scrolled {
  background: rgba(2, 3, 6, 0.8);
  border-color: rgba(156, 92, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(156, 92, 255, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--purple));
}

.brand span {
  background: linear-gradient(135deg, #fff 50%, var(--muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  padding: 6px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a {
  color: var(--text);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  transform: translateX(-50%);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links .current-menu-item > a::after,
.nav-links .current_page_item > a::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
}

.beta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid rgba(156, 92, 255, 0.35);
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(156, 92, 255, 0.12), rgba(63, 229, 232, 0.05));
  color: var(--cyan);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(2, 3, 6, 0.95);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  z-index: 999;
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 28px;
  list-style: none;
  text-align: center;
}

.mobile-nav-menu a {
  color: var(--muted);
  font-size: 24px;
  font-weight: 800;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a:focus-visible {
  color: var(--text);
}

.mobile-nav-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 24px;
}

/* === FRONT PAGE: WAITLIST === */
.page-content {
  position: relative;
  z-index: 3;
}

/* === HERO: PREMIUM AURORA DESIGN === */
.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
  text-align: center;
}

.waitlist-hero {
  position: relative;
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
}

/* Aurora animated background orbs */
.hero-aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform, opacity;
  mix-blend-mode: screen;
}

.aurora-orb--1 {
  top: -15%;
  left: 15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(156, 92, 255, 0.3) 0%, transparent 70%);
  animation: auroraFloat1 18s infinite ease-in-out;
}

.aurora-orb--2 {
  top: 10%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 65, 232, 0.25) 0%, rgba(63, 229, 232, 0.08) 50%, transparent 70%);
  animation: auroraFloat2 22s infinite ease-in-out;
}

.aurora-orb--3 {
  bottom: 0%;
  left: 30%;
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(120, 70, 255, 0.2) 0%, transparent 70%);
  animation: auroraFloat3 25s infinite ease-in-out;
}

.aurora-orb--4 {
  top: 40%;
  left: 55%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(63, 229, 232, 0.1) 0%, rgba(156, 92, 255, 0.15) 40%, transparent 70%);
  animation: auroraFloat4 20s infinite ease-in-out;
}

@keyframes auroraFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  33% { transform: translate(80px, 40px) scale(1.1); opacity: 1; }
  66% { transform: translate(-40px, 80px) scale(0.9); opacity: 0.6; }
}

@keyframes auroraFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(-100px, 60px) scale(1.15); opacity: 0.9; }
}

@keyframes auroraFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  40% { transform: translate(60px, -40px) scale(1.08); opacity: 0.8; }
  80% { transform: translate(-30px, -20px) scale(0.95); opacity: 0.6; }
}

@keyframes auroraFloat4 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  50% { transform: translate(-50px, -30px) scale(1.2); opacity: 0.7; }
}

/* Perspective grid lines for depth */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(156, 92, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 92, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 20%, transparent 80%);
  pointer-events: none;
  z-index: 1;
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Radial edge fade */
.hero-radial-fade {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 0%, rgba(156, 92, 255, 0.06), transparent 80%);
  pointer-events: none;
  z-index: 1;
}

.waitlist-elementor-probe {
  display: none;
}

.waitlist-elementor-content {
  position: relative;
  z-index: 4;
  width: min(100% - 40px, 1140px);
  margin: 126px auto 52px;
}

.hero .container {
  position: relative;
  z-index: 3;
}

/* Staggered entrance animation */
@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-animate {
  opacity: 0;
  animation: heroFadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Brand badge pill with glow */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 7px 18px;
  border: 1px solid rgba(156, 92, 255, 0.25);
  border-radius: 100px;
  background: rgba(156, 92, 255, 0.08);
  color: #c4a1ff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(156, 92, 255, 0.08);
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background-color: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--purple), 0 0 4px var(--purple);
  animation: pulseBadgeDot 2s infinite ease-in-out;
}

@keyframes pulseBadgeDot {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 12px var(--purple), 0 0 4px var(--purple); }
  50% { transform: scale(1.4); opacity: 0.6; box-shadow: 0 0 20px var(--purple), 0 0 8px var(--purple); }
}

/* Hero Headline - BIG, bold, gradient */
.waitlist-hero h1 {
  margin: 0 auto 24px;
  color: #ffffff;
  font-size: clamp(32px, 4.8vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.hero-gradient-line {
  display: block;
  background: linear-gradient(135deg, #ffffff 0%, #c4a1ff 40%, var(--purple) 70%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-top: 4px;
}

/* Legacy gradient-text kept for compatibility */
.gradient-text {
  background: linear-gradient(135deg, #ffffff 25%, var(--purple) 65%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero subtitle */
.hero-copy {
  max-width: 580px;
  margin: 0 auto 40px;
  color: #8892a8;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.8;
  letter-spacing: -0.01em;
}

.prelaunch-form-wrapper {
  max-width: 520px;
  margin: 0 auto;
}

.signup-form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 6px 6px 18px;
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  background: rgba(14, 20, 32, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), var(--shadow-premium);
  transition: var(--transition-smooth);
}

.signup-form:focus-within {
  border-color: rgba(156, 92, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(156, 92, 255, 0.12), var(--shadow-premium);
}

.signup-form input[type="email"] {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 14.5px;
}

.signup-form input::placeholder {
  color: var(--dim);
}

.error-msg {
  min-height: 20px;
  margin-top: 12px;
  color: var(--red);
  font-size: 13px;
}

.error-msg.active {
  display: block;
}

.success-card {
  display: none;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(0, 255, 178, 0.25);
  border-radius: var(--card-radius);
  background: linear-gradient(180deg, rgba(0, 255, 178, 0.08), rgba(14, 20, 32, 0.35));
  text-align: left;
}

.success-card.active {
  display: block;
}

.success-title {
  margin-bottom: 5px;
  color: var(--green);
  font-weight: 800;
}

.success-msg {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.success-msg span {
  color: var(--text);
}

/* CTA Buttons Layout */
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

/* Primary CTA — Glowing purple with animated shimmer */
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.hero-cta i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.hero-cta--primary {
  background: linear-gradient(135deg, #9c5cff 0%, #7c3aed 50%, #6d28d9 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 0 20px rgba(156, 92, 255, 0.3),
    0 4px 16px rgba(156, 92, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Shimmer shine animation on primary CTA */
.hero-cta--primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
  animation: ctaShimmer 3s infinite ease-in-out;
}

@keyframes ctaShimmer {
  0% { left: -100%; }
  50%, 100% { left: 150%; }
}

.hero-cta--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 40px rgba(156, 92, 255, 0.5),
    0 8px 30px rgba(156, 92, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-cta--primary:hover i {
  transform: translateX(3px);
}

/* Ghost CTA — subtle border glow */
.hero-cta--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-cta--ghost:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(156, 92, 255, 0.3);
  box-shadow: 0 0 20px rgba(156, 92, 255, 0.1);
  color: #ffffff;
}

.hero-cta--ghost:hover i {
  transform: translateY(2px);
}

/* Product Preview — Floating frame with animated glow border */
.hero-preview-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 0;
  z-index: 3;
}

/* Animated rotating glow behind the preview */
.hero-preview-glow {
  position: absolute;
  inset: -3px;
  border-radius: 18px;
  background: conic-gradient(
    from var(--glow-angle, 0deg),
    rgba(156, 92, 255, 0.5) 0deg,
    rgba(63, 229, 232, 0.3) 60deg,
    rgba(156, 92, 255, 0.1) 120deg,
    rgba(120, 70, 255, 0.4) 180deg,
    rgba(63, 229, 232, 0.2) 240deg,
    rgba(156, 92, 255, 0.5) 360deg
  );
  filter: blur(20px);
  opacity: 0.6;
  z-index: -1;
  animation: glowRotate 6s linear infinite;
}

@property --glow-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes glowRotate {
  from { --glow-angle: 0deg; }
  to { --glow-angle: 360deg; }
}

/* Browser chrome frame */
.hero-preview-frame {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(156, 92, 255, 0.25);
  background: #0a0d1a;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 60px rgba(156, 92, 255, 0.12);
}

.hero-preview-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(10, 13, 26, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-preview-dots {
  display: flex;
  gap: 6px;
}

.hero-preview-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-preview-dots span:nth-child(1) { background: #ff5f57; }
.hero-preview-dots span:nth-child(2) { background: #febc2e; }
.hero-preview-dots span:nth-child(3) { background: #28c840; }

.hero-preview-url {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--dim);
}

.hero-preview-url i {
  font-size: 9px;
  color: var(--green);
}

.hero-preview-img {
  display: block;
  width: 100%;
  height: auto;
}

/* Trust strip below preview */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  max-width: 1000px;
  margin: 48px auto 0;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
  transition: all 0.3s ease;
}

.hero-trust-item:hover {
  color: #94a3b8;
  background: rgba(156, 92, 255, 0.06);
  border-color: rgba(156, 92, 255, 0.15);
}

.hero-trust-item i {
  font-size: 11px;
  color: var(--purple);
  opacity: 0.7;
}

/* Legacy trust-strip support */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 32px;
  max-width: 960px;
  margin: 56px auto 0;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 12.5px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.trust-strip span:hover {
  color: #94a3b8;
}

.trust-strip i {
  color: var(--purple);
  font-size: 12px;
  opacity: 0.8;
}

/* Hero responsive */
@media (max-width: 768px) {
  .hero {
    padding: 120px 0 60px;
  }

  .waitlist-hero {
    min-height: auto;
  }

  .waitlist-hero h1 {
    font-size: clamp(30px, 8vw, 48px);
  }

  .hero-preview-wrapper {
    margin: 0 -16px;
  }

  .hero-preview-frame {
    border-radius: 10px;
  }

  .hero-trust {
    gap: 8px;
  }

  .hero-trust-item {
    font-size: 11px;
    padding: 4px 10px;
  }

  .hero-cta {
    height: 48px;
    padding: 0 24px;
    font-size: 14px;
  }

  .aurora-orb {
    filter: blur(80px);
  }
}

@media (max-width: 500px) {
  .waitlist-hero h1 {
    font-size: clamp(28px, 8vw, 42px);
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta {
    width: 100%;
  }

  .hero-preview-topbar {
    padding: 8px 12px;
  }

  .hero-preview-dots span {
    width: 8px;
    height: 8px;
  }

  .hero-preview-url {
    font-size: 10px;
  }
}

.entity-definition-section {
  position: relative;
  padding: 34px 0 58px;
}

.entity-definition-card {
  max-width: 880px;
  margin: 0 auto;
  padding: 28px 32px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(14, 20, 32, 0.38) 0%, rgba(8, 12, 20, 0.18) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.entity-definition-card h2 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(23px, 2.6vw, 34px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.16;
}

.entity-definition-card p {
  color: var(--muted);
  font-size: clamp(14.5px, 1.55vw, 16px);
  line-height: 1.72;
}

.waitlist-section {
  position: relative;
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

.waitlist-section-header {
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}

.waitlist-section-header .section-title {
  margin-bottom: 0;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.deliverable-card {
  padding: 24px 22px;
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  background: linear-gradient(180deg, rgba(14, 20, 32, 0.4) 0%, rgba(8, 12, 20, 0.15) 100%);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: var(--transition-smooth);
}

.deliverable-card:hover {
  border-color: rgba(156, 92, 255, 0.4);
  box-shadow: 0 20px 45px rgba(156, 92, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: translateY(-5px);
}

.deliverable-card h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.deliverable-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.waitlist-closing-line {
  max-width: 820px;
  margin: 26px auto 0;
  color: var(--text);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.65;
  text-align: center;
}

.product-journey-section {
  background: linear-gradient(180deg, rgba(3, 5, 10, 0.95) 0%, rgba(2, 3, 6, 0.72) 100%);
}

.comparison-table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(14, 20, 32, 0.35) 0%, rgba(8, 12, 20, 0.2) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.waitlist-compare-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.waitlist-compare-table th,
.waitlist-compare-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
  text-align: left;
  vertical-align: top;
}

.waitlist-compare-table thead th {
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.waitlist-compare-table tbody th {
  width: 18%;
  color: var(--text);
  font-weight: 700;
}

.waitlist-compare-table th:last-child,
.waitlist-compare-table td:last-child {
  color: var(--text);
  background: linear-gradient(90deg, rgba(156, 92, 255, 0.12), rgba(63, 229, 232, 0.04));
}

.waitlist-compare-table tr:last-child th,
.waitlist-compare-table tr:last-child td {
  border-bottom: 0;
}

.eligibility-section {
  background: radial-gradient(circle at 50% 0%, rgba(156, 92, 255, 0.08) 0%, transparent 36%);
}

.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}

.eligibility-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  background: rgba(14, 20, 32, 0.34);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.eligibility-item i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: rgba(156, 92, 255, 0.12);
  color: var(--purple);
}

.waitlist-form-section {
  position: relative;
  padding: 76px 0;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at 20% 20%, rgba(63, 229, 232, 0.08) 0%, transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(156, 92, 255, 0.12) 0%, transparent 32%),
    var(--bg-deep);
}

.waitlist-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.waitlist-form-grid > div:first-child,
.next-steps-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(14, 20, 32, 0.48) 0%, rgba(8, 12, 20, 0.24) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.waitlist-form-grid h2 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 850;
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.waitlist-form-grid p {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.waitlist-application-form {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 10px;
  max-width: 650px;
  padding: 10px;
}

.waitlist-application-form .field-label {
  grid-column: 1 / -1;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.waitlist-success-card {
  max-width: 650px;
}

.success-details {
  margin-top: 12px;
  padding-left: 18px;
  color: var(--muted);
}

.success-details li + li {
  margin-top: 6px;
}

.next-steps-card h3 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: 20px;
  font-weight: 800;
}

.next-steps-card ol {
  display: grid;
  gap: 14px;
  list-style: none;
  counter-reset: next-step;
}

.next-steps-card li {
  position: relative;
  min-height: 34px;
  padding-left: 48px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  counter-increment: next-step;
}

.next-steps-card li::before {
  content: counter(next-step);
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(156, 92, 255, 0.28);
  border-radius: 50%;
  background: rgba(156, 92, 255, 0.12);
  color: var(--purple);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
}

.final-reassurance {
  padding: 26px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.final-reassurance p {
  max-width: 900px;
  margin: 0 auto;
  color: var(--dim);
  font-size: 12.5px;
  line-height: 1.65;
  text-align: center;
}

.product-preview-wrapper {
  position: relative;
  max-width: 880px;
  margin: 42px auto 0;
  padding: 1px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02), rgba(156, 92, 255, 0.15));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 50px rgba(156, 92, 255, 0.12);
}

.browser-mockup {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 15px;
  background: #060910;
}

.browser-header {
  position: relative;
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
  background: #090c14;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.browser-dot.red { background: #ff5f56; }
.browser-dot.yellow { background: #ffbd2e; }
.browser-dot.green { background: #27c93f; }

.browser-search {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: min(280px, 45%);
  height: 22px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--dim);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  transform: translateX(-50%);
}

.preview-slider {
  position: relative;
  height: clamp(260px, 47vw, 450px);
  overflow: hidden;
}

.preview-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.005);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.preview-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.preview-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.preview-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 30px 24px;
  background: linear-gradient(0deg, rgba(3, 5, 10, 0.98) 0%, rgba(3, 5, 10, 0) 100%);
  text-align: left;
}

.preview-caption h3 {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 16.5px;
  font-weight: 800;
}

.preview-caption p {
  color: var(--muted);
  font-size: 13px;
}

.preview-controls {
  position: absolute;
  top: 50%;
  right: 16px;
  left: 16px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.carousel-control {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: rgba(3, 5, 10, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  pointer-events: auto;
  transition: var(--transition-smooth);
}

.carousel-control:hover,
.carousel-control:focus-visible {
  border-color: var(--purple);
  background: var(--purple);
  transform: scale(1.08);
}

.preview-dots {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-dot.active {
  width: 24px;
  background: var(--purple);
}



/* === FRONT PAGE: FEATURES AND COMPARISON === */
.feature-band {
  position: relative;
  padding: 82px 0 68px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(3, 5, 10, 0.95) 0%, rgba(2, 3, 6, 0.7) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature-card {
  padding: 34px 28px;
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  background: linear-gradient(180deg, rgba(14, 20, 32, 0.4) 0%, rgba(8, 12, 20, 0.15) 100%);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  border-color: rgba(156, 92, 255, 0.4);
  box-shadow: 0 20px 45px rgba(156, 92, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: translateY(-5px);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border: 1px solid rgba(156, 92, 255, 0.3);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(156, 92, 255, 0.18), rgba(63, 229, 232, 0.05));
  box-shadow: 0 0 15px rgba(156, 92, 255, 0.1);
  color: #bc8fff;
  font-size: 20px;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.compare-section {
  padding: 76px 0;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.compare-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  background: linear-gradient(180deg, rgba(14, 20, 32, 0.35) 0%, rgba(8, 12, 20, 0.2) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.compare-card.ai-card {
  border-color: rgba(156, 92, 255, 0.5);
  box-shadow: 0 25px 60px rgba(156, 92, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.compare-card h3 {
  padding: 24px 28px 18px;
  color: var(--dim);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-card.ai-card h3 {
  color: #bc8fff;
}

.compare-list {
  padding: 0 28px 28px;
  list-style: none;
}

.compare-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 14px;
}

.compare-list i {
  flex-shrink: 0;
  font-size: 14px;
}

.compare-card.traditional-card i {
  color: var(--red);
}

.compare-card.ai-card i {
  color: var(--green);
}

.compare-card.ai-card li {
  color: var(--text);
}

/* === SECTION: FAQ === */
.faq-section,
.np-faq-section {
  padding: 76px 0 88px;
}

.faq-list,
.np-faq-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.np-faq-column {
  justify-content: center;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  background: linear-gradient(180deg, rgba(14, 20, 32, 0.3) 0%, rgba(8, 12, 20, 0.15) 100%);
  transition: var(--transition-smooth);
}

.faq-item[open] {
  border-color: rgba(156, 92, 255, 0.45);
  box-shadow: 0 10px 30px rgba(156, 92, 255, 0.05);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 26px;
  color: var(--text);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  color: var(--dim);
  font-size: 11px;
  transition: transform 0.25s ease;
}

.faq-item[open] summary i {
  color: var(--purple);
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 26px 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* === SECTION: HERO === */
.np-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #03050a;
}

.np-hero-video,
.np-hero-video-overlay,
.np-hero-grid,
.np-hero-spotlight,
.np-hero-bottom-gradient {
  position: absolute;
  pointer-events: none;
}

.np-hero-video {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.np-hero-video-overlay {
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 3, 6, 0.85) 0%, rgba(3, 5, 10, 0.7) 100%);
}

.np-hero-grid {
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.np-hero-spotlight {
  top: -200px;
  left: 50%;
  width: min(900px, 100vw);
  height: 500px;
  background: radial-gradient(circle, rgba(156, 92, 255, 0.18) 0%, transparent 70%);
  filter: blur(100px);
  transform: translateX(-50%);
}

.np-hero-bottom-gradient {
  right: 0;
  bottom: 0;
  left: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, #03050a);
}

.np-hero-content {
  position: relative;
  z-index: 10;
  min-height: 100vh;
}

.np-hero-word {
  position: absolute;
  font-size: clamp(80px, 13vw, 180px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.np-hero-word-neura {
  top: 18%;
  left: 10%;
  color: #f3f5f9;
}

.np-hero-word-pent {
  top: 38%;
  right: 10%;
  background: linear-gradient(135deg, #9c5cff 0%, #3fe5e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.np-hero-word-hacks {
  top: 58%;
  left: 22%;
  color: #f3f5f9;
  text-shadow: 0 0 80px rgba(156, 92, 255, 0.4);
}

.np-hero-description {
  position: absolute;
  top: 46%;
  left: 10%;
  max-width: 260px;
  color: #9ba4b7;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
}

.np-hero-stat {
  position: absolute;
  z-index: 11;
}

.np-hero-stat-top {
  top: 14%;
  right: 8%;
}

.np-hero-stat-bottom-left {
  bottom: 24%;
  left: 8%;
}

.np-hero-stat-bottom-right {
  right: 8%;
  bottom: 20%;
}

.np-hero-stat-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.np-hero-stat-bottom-left .np-hero-stat-row {
  justify-content: flex-start;
}

.np-hero-divider {
  width: 80px;
  height: 1px;
  background: rgba(156, 92, 255, 0.4);
  transform: rotate(20deg);
}

.np-hero-stat-bottom-left .np-hero-divider {
  background: rgba(63, 229, 232, 0.4);
  transform: rotate(-20deg);
}

.np-hero-stat-bottom-right .np-hero-divider {
  transform: rotate(-20deg);
}

.np-hero-number {
  color: #9c5cff;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1;
}

.np-hero-stat-bottom-left .np-hero-number {
  color: #3fe5e8;
}

.np-hero-stat-bottom-right .np-hero-number {
  color: #00ffb2;
}

.np-hero-label {
  margin-top: 4px;
  color: #5c6475;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}

.np-hero-stat-bottom-left .np-hero-label {
  text-align: left;
}

/* === SECTION: LANDING HERO === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInDialog {
  from { opacity: 0; }
  to { opacity: 1; }
}

.page-template-page-landing .top-nav {
  border-color: rgba(3, 5, 10, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 45px rgba(3, 5, 10, 0.08);
}

.page-template-page-landing .top-nav.scrolled {
  border-color: rgba(156, 92, 255, 0.2);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 55px rgba(3, 5, 10, 0.12), 0 0 24px rgba(156, 92, 255, 0.08);
}

.page-template-page-landing .brand span {
  background: linear-gradient(135deg, #03050a 0%, #4d5362 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-template-page-landing .nav-links a {
  color: #4d5362;
}

.page-template-page-landing .nav-links a:hover,
.page-template-page-landing .nav-links a:focus-visible,
.page-template-page-landing .nav-links .current-menu-item > a,
.page-template-page-landing .nav-links .current_page_item > a {
  color: #03050a;
}

.page-template-page-landing .beta-badge {
  border-color: rgba(3, 5, 10, 0.1);
  background: rgba(3, 5, 10, 0.04);
  color: #03050a;
}

.page-template-page-landing .nav-toggle {
  color: #03050a;
}

.np-landing-hero {
  position: relative;
  z-index: 3;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(156, 92, 255, 0.12) 0%, transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fb 74%, #03050a 100%);
  color: #03050a;
  isolation: isolate;
}

.np-landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(3, 5, 10, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(3, 5, 10, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 24%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.03) 74%);
  pointer-events: none;
  z-index: -1;
}

.np-landing-hero-inner {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
  padding: 112px 0 74px;
  text-align: center;
}

.np-hero-animate {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.np-hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  color: #03050a;
  font-size: 14px;
  font-weight: 600;
}

.np-rating-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(3, 5, 10, 0.12);
  border-radius: 8px;
  background: #fff;
  color: var(--purple);
  box-shadow: 0 10px 24px rgba(3, 5, 10, 0.08);
}

.np-landing-title {
  max-width: 900px;
  margin: 0 auto 18px;
  color: #03050a;
  font-size: clamp(42px, 5.8vw, 70px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
}

.np-landing-title span {
  display: block;
}

.np-landing-gradient {
  background: linear-gradient(90deg, #03050a 0%, #6f46d9 50%, #8d95a3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.np-landing-subtitle {
  max-width: 680px;
  margin: 0 auto 26px;
  color: #5c6475;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.65;
}

.np-landing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  margin-bottom: 34px;
  padding: 0 32px;
  border-radius: 99px;
  background: #03050a;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.np-landing-cta:hover,
.np-landing-cta:focus-visible {
  background: #1a2030;
  box-shadow: 0 16px 34px rgba(3, 5, 10, 0.18);
  transform: translateY(-2px);
}

.np-hero-tabs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 22px;
  padding: 5px;
  border-radius: 12px;
  background: #eef0f4;
}

.np-hero-tab {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 130px;
  height: 42px;
  justify-content: center;
  border-radius: 9px;
  background: transparent;
  color: #667085;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.np-hero-tab.active,
.np-hero-tab:hover,
.np-hero-tab:focus-visible {
  background: #fff;
  color: #03050a;
  box-shadow: 0 7px 18px rgba(3, 5, 10, 0.08);
}

.np-hero-tab i {
  font-size: 15px;
}

.np-tab-divider {
  width: 1px;
  height: 20px;
  background: #d2d6df;
}

.np-hero-demo {
  position: relative;
  max-width: 1120px;
  height: 500px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(3, 5, 10, 0.08);
  border-radius: 28px;
  background: #060910;
  box-shadow: 0 40px 110px rgba(3, 5, 10, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

.np-hero-demo-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.np-demo-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 5, 10, 0.08) 0%, rgba(3, 5, 10, 0.55) 100%),
    radial-gradient(circle at 50% 50%, transparent 0%, rgba(3, 5, 10, 0.46) 100%);
}

.np-demo-overlay {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.np-demo-overlay.active {
  display: flex;
  animation: fadeInOverlay 0.4s ease-out forwards;
}

.np-demo-overlay.active .np-demo-card {
  animation: fadeInDialog 0.5s ease-out forwards;
}

.np-demo-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100% - 40px, 440px);
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(3, 5, 10, 0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45), 0 0 40px rgba(156, 92, 255, 0.16);
  color: var(--text);
  text-align: left;
  transform: translate(-50%, -50%);
}

.np-demo-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--text);
  font-weight: 700;
}

.np-demo-card-head strong {
  color: var(--purple);
  font-family: 'JetBrains Mono', monospace;
}

.np-demo-card-head strong.orange {
  color: #f59e0b;
}

.np-progress {
  height: 8px;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.np-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
}

.np-progress.orange span {
  background: linear-gradient(90deg, #f97316, #facc15);
}

.np-demo-steps {
  display: grid;
  gap: 12px;
  list-style: none;
}

.np-demo-steps li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--muted);
  font-size: 14px;
}

.np-demo-steps li.active {
  color: var(--text);
}

.np-demo-steps i {
  width: 18px;
  color: var(--purple);
  text-align: center;
}

.np-demo-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.np-demo-metrics div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.np-demo-metrics strong {
  display: block;
  color: var(--cyan);
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  line-height: 1.1;
}

.np-demo-metrics span {
  color: var(--muted);
  font-size: 12px;
}

.np-demo-success {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(0, 255, 178, 0.12);
  color: var(--green);
  font-size: 24px;
}

.np-demo-card h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
}

.np-demo-card p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.np-proof-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  border: 1px solid rgba(0, 255, 178, 0.18);
  border-radius: 12px;
  background: rgba(0, 255, 178, 0.06);
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}

.np-proof-row strong {
  color: var(--green);
}

.np-demo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 42px;
  margin-top: 22px;
  border-radius: 99px;
  background: #fff;
  color: #03050a;
  font-size: 14px;
  font-weight: 700;
}

.np-demo-button:hover,
.np-demo-button:focus-visible {
  background: var(--cyan);
}

.np-hero-standards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(22px, 5vw, 58px);
  margin-top: 76px;
  color: rgba(3, 5, 10, 0.42);
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* === SECTION: CTA === */
@property --np-x1 { syntax: '<percentage>'; inherits: false; initial-value: 10%; }
@property --np-y1 { syntax: '<percentage>'; inherits: false; initial-value: 10%; }
@property --np-x2 { syntax: '<percentage>'; inherits: false; initial-value: 90%; }
@property --np-y2 { syntax: '<percentage>'; inherits: false; initial-value: 10%; }
@property --np-x3 { syntax: '<percentage>'; inherits: false; initial-value: 10%; }
@property --np-y3 { syntax: '<percentage>'; inherits: false; initial-value: 90%; }
@property --np-x4 { syntax: '<percentage>'; inherits: false; initial-value: 90%; }
@property --np-y4 { syntax: '<percentage>'; inherits: false; initial-value: 90%; }
@property --np-x5 { syntax: '<percentage>'; inherits: false; initial-value: 50%; }
@property --np-y5 { syntax: '<percentage>'; inherits: false; initial-value: 50%; }
@property --np-s1 { syntax: '<percentage>'; inherits: false; initial-value: 55%; }
@property --np-s2 { syntax: '<percentage>'; inherits: false; initial-value: 55%; }
@property --np-s3 { syntax: '<percentage>'; inherits: false; initial-value: 55%; }
@property --np-s4 { syntax: '<percentage>'; inherits: false; initial-value: 55%; }
@property --np-s5 { syntax: '<percentage>'; inherits: false; initial-value: 65%; }

.np-cta-section {
  padding: 100px 0;
  background: var(--bg);
}

.np-cta-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  align-items: stretch;
  gap: 30px;
  width: min(100% - 40px, 1100px);
  margin: 0 auto;
}

.np-animated-gradient {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 460px;
  padding: 80px 40px;
  border-radius: 24px;
  background-color: #1a0a3a;
  background-image:
    radial-gradient(circle at var(--np-x1) var(--np-y1), rgba(156, 92, 255, 0.9) 0px, transparent var(--np-s1)),
    radial-gradient(circle at var(--np-x2) var(--np-y2), rgba(63, 229, 232, 0.6) 0px, transparent var(--np-s2)),
    radial-gradient(circle at var(--np-x3) var(--np-y3), rgba(156, 92, 255, 0.5) 0px, transparent var(--np-s3)),
    radial-gradient(circle at var(--np-x4) var(--np-y4), rgba(0, 255, 178, 0.4) 0px, transparent var(--np-s4)),
    radial-gradient(circle at var(--np-x5) var(--np-y5), rgba(188, 143, 255, 0.7) 0px, transparent var(--np-s5));
  box-shadow: 0 10px 60px rgba(156, 92, 255, 0.2), 0 0 0 1px rgba(156, 92, 255, 0.15);
  color: #fff;
  text-align: center;
  animation:
    np-blob1 5s ease-in-out infinite, np-blob2 6s ease-in-out infinite,
    np-blob3 5.5s ease-in-out infinite, np-blob4 6.5s ease-in-out infinite,
    np-blob5 4s ease-in-out infinite,
    np-size1 3.5s ease-in-out infinite, np-size2 4.2s ease-in-out infinite,
    np-size3 3.8s ease-in-out infinite, np-size4 4.6s ease-in-out infinite,
    np-size5 3s ease-in-out infinite;
}

@keyframes np-blob1 { 0%,100%{--np-x1:5%;--np-y1:5%} 25%{--np-x1:45%;--np-y1:20%} 50%{--np-x1:30%;--np-y1:55%} 75%{--np-x1:0%;--np-y1:30%} }
@keyframes np-blob2 { 0%,100%{--np-x2:95%;--np-y2:5%} 33%{--np-x2:55%;--np-y2:35%} 66%{--np-x2:80%;--np-y2:65%} }
@keyframes np-blob3 { 0%,100%{--np-x3:5%;--np-y3:95%} 40%{--np-x3:45%;--np-y3:65%} 70%{--np-x3:25%;--np-y3:100%} }
@keyframes np-blob4 { 0%,100%{--np-x4:95%;--np-y4:95%} 30%{--np-x4:60%;--np-y4:70%} 60%{--np-x4:100%;--np-y4:50%} }
@keyframes np-blob5 { 0%,100%{--np-x5:50%;--np-y5:50%} 25%{--np-x5:70%;--np-y5:30%} 50%{--np-x5:40%;--np-y5:70%} 75%{--np-x5:30%;--np-y5:40%} }
@keyframes np-size1 { 0%,100%{--np-s1:45%} 50%{--np-s1:80%} }
@keyframes np-size2 { 0%,100%{--np-s2:45%} 50%{--np-s2:85%} }
@keyframes np-size3 { 0%,100%{--np-s3:45%} 50%{--np-s3:78%} }
@keyframes np-size4 { 0%,100%{--np-s4:45%} 50%{--np-s4:82%} }
@keyframes np-size5 { 0%,100%{--np-s5:50%} 50%{--np-s5:85%} }
@media (prefers-reduced-motion: reduce) { .np-animated-gradient { animation: none; } }

.np-cta-eyebrow {
  display: block;
  margin-bottom: 16px;
  color: #3fe5e8;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.np-cta-title {
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.np-cta-copy {
  margin-bottom: 32px;
  color: #f3f5f9;
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.8;
}

.np-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(3, 5, 10, 0.85);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #f3f5f9;
  font-size: 13.5px;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.np-cta-button:hover,
.np-cta-button:focus-visible {
  border-color: rgba(156, 92, 255, 0.4);
  box-shadow: 0 10px 30px rgba(156, 92, 255, 0.35);
  transform: translateY(-2px);
}

/* === SECTION: PRICING === */
.pricing-page-header {
  padding-top: 128px;
  padding-bottom: 42px;
  text-align: center;
}

.pricing-page-title,
.blog-index-title {
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 850;
  letter-spacing: -0.025em;
}

.pricing-page-sub,
.blog-index-sub {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15.5px;
  font-weight: 400;
}

.np-pricing-section {
  padding: 78px 0;
  background: var(--bg-deep);
}

.np-pricing-header {
  margin-bottom: 38px;
  text-align: center;
}

.np-pricing-header h2 {
  color: var(--text);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.np-calculator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
}

.np-calc-form {
  padding: 48px;
  background: #0a0d16;
}

.np-calc-output {
  display: flex;
  flex-direction: column;
  min-height: 600px;
  padding: 48px;
  background: #07090f;
}

.np-calc-group {
  padding: 0 0 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.np-calc-group:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.np-calc-label {
  display: block;
  margin-bottom: 16px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

.np-option-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.np-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}

.np-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.np-option-main {
  display: flex;
  align-items: center;
  gap: 12px;
}

.np-radio,
.np-checkbox {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  transition: var(--transition-smooth);
}

.np-radio {
  border-radius: 50%;
}

.np-checkbox {
  border-radius: 4px;
}

.np-radio::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  opacity: 0;
  transform: translate(-50%, -50%);
}

.np-checkbox::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: rotate(45deg);
}

.np-option input:checked + .np-option-main .np-radio,
.np-option input:checked + .np-option-main .np-checkbox {
  border-color: var(--purple);
}

.np-option input:checked + .np-option-main .np-checkbox {
  background: var(--purple);
}

.np-option input:checked + .np-option-main .np-radio::after,
.np-option input:checked + .np-option-main .np-checkbox::after {
  opacity: 1;
}

.np-option input:checked + .np-option-main .np-option-text {
  color: var(--text);
}

.np-option-price,
.np-slider-value {
  color: var(--purple);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
}

.np-slider-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

.np-range {
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple) var(--range-progress, 8%), rgba(255, 255, 255, 0.08) var(--range-progress, 8%));
  appearance: none;
  cursor: pointer;
}

.np-range::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  background: var(--purple);
  appearance: none;
}

.np-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  background: var(--purple);
}

.np-range-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: var(--dim);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}

.np-calc-output h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
}

.np-calc-output-intro {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 13.5px;
}

.np-estimate-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.np-estimate-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  background: rgba(14, 20, 32, 0.5);
}

.np-estimate-card.featured {
  border: 1px solid rgba(156, 92, 255, 0.4);
  background: linear-gradient(135deg, rgba(156, 92, 255, 0.2) 0%, rgba(63, 229, 232, 0.08) 100%);
  box-shadow: 0 0 30px rgba(156, 92, 255, 0.1);
}

.np-estimate-title {
  margin-bottom: 10px;
  color: var(--dim);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.np-estimate-card.featured .np-estimate-title {
  color: var(--cyan);
}

.np-estimate-price {
  color: var(--text);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.1;
}

.np-estimate-card.featured .np-estimate-price {
  color: var(--purple);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
}

.np-estimate-sub {
  margin-top: 8px;
  color: var(--dim);
  font-size: 12px;
}

.np-estimate-card.featured .np-estimate-sub {
  color: var(--muted);
}

.np-scope-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  margin-top: auto;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--purple) 0%, #753be6 100%);
  box-shadow: 0 6px 20px rgba(156, 92, 255, 0.35);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.np-scope-button:hover,
.np-scope-button:focus-visible {
  box-shadow: 0 10px 30px rgba(156, 92, 255, 0.48);
  filter: brightness(1.08);
  transform: translateY(-2px);
}

/* === BLOG INDEX === */
.blog-index {
  padding-top: 104px;
  padding-bottom: 64px;
}

.blog-index-header {
  margin-bottom: 28px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.post-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  background: linear-gradient(180deg, rgba(14, 20, 32, 0.4) 0%, rgba(8, 12, 20, 0.15) 100%);
  backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
}

.post-card:hover {
  border-color: rgba(156, 92, 255, 0.4);
  box-shadow: 0 20px 45px rgba(156, 92, 255, 0.1);
  transform: translateY(-5px);
}

.post-card-thumb {
  position: relative;
  display: block;
  height: 200px;
  overflow: hidden;
}

.post-card-thumb::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 70px;
  background: linear-gradient(0deg, rgba(3, 5, 10, 0.95), transparent);
}

.post-card-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card-body {
  padding: 24px;
}

.post-category-pill {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 5px 10px;
  border: 1px solid rgba(156, 92, 255, 0.25);
  border-radius: 99px;
  color: var(--purple);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-card-title {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.post-card-title a:hover,
.post-card-title a:focus-visible {
  color: var(--purple);
}

.post-card-excerpt {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.post-card-meta,
.single-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  color: var(--dim);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}

.pagination,
.nav-links.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(14, 20, 32, 0.35);
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.page-numbers.current,
.page-numbers:hover {
  border-color: rgba(156, 92, 255, 0.45);
  background: rgba(156, 92, 255, 0.16);
  color: var(--purple);
}

/* === SINGLE POST AND PAGE === */
.single-post,
.page-main {
  padding-top: 128px;
  padding-bottom: 78px;
}

.post-container,
.page-container {
  max-width: 740px;
  margin: 0 auto;
}

.single-post-title,
.page-title {
  margin: 10px 0 16px;
  color: var(--text);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 850;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.single-post-meta {
  gap: 20px;
  margin-bottom: 40px;
}

.single-featured-image {
  width: 100%;
  margin-bottom: 48px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
}

.single-featured-image img {
  display: block;
  width: 100%;
}

.entry-content {
  color: var(--muted);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
}

.entry-content > * + * {
  margin-top: 1.35em;
}

.entry-content h2,
.entry-content h3 {
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.entry-content h2 {
  margin-top: 2em;
  font-size: 30px;
}

.entry-content h3 {
  margin-top: 1.75em;
  font-size: 24px;
}

.entry-content a {
  color: var(--purple);
}

.entry-content a:hover {
  text-decoration: underline;
}

.entry-content strong {
  color: var(--text);
}

.entry-content code {
  padding: 2px 6px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(14, 20, 32, 0.8);
  color: var(--cyan);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9em;
}

.entry-content pre {
  overflow-x: auto;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  background: rgba(14, 20, 32, 0.8);
  color: var(--cyan);
}

.entry-content pre code {
  padding: 0;
  border: 0;
  background: transparent;
}

.entry-content blockquote {
  padding-left: 24px;
  border-left: 3px solid var(--purple);
  color: var(--text);
  font-style: italic;
}

/* === DEFINITION PAGE === */
.definition-page {
  padding-top: 126px;
  padding-bottom: 170px;
}

.definition-article {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

.definition-header {
  margin-bottom: 38px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

.definition-title {
  max-width: 780px;
  margin: 0;
  color: var(--text);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 820;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.definition-intro {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.72;
}

.definition-content {
  max-width: 740px;
}

.definition-content h2 {
  margin-top: 2.15em;
  font-size: clamp(24px, 2.6vw, 31px);
}

.definition-content h3 {
  margin-top: 1.8em;
  font-size: clamp(20px, 2vw, 24px);
}

.definition-content p,
.definition-content li {
  color: #aeb6c8;
}

.definition-content ul,
.definition-content ol {
  padding-left: 1.2em;
}

.definition-content li + li {
  margin-top: 0.55em;
}

.definition-content table {
  width: 100%;
  margin-top: 1.7em;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  background: rgba(8, 12, 20, 0.24);
}

.definition-content th,
.definition-content td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

.definition-content th {
  color: var(--text);
  font-weight: 700;
}

.definition-content tr:last-child th,
.definition-content tr:last-child td {
  border-bottom: 0;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.post-navigation a {
  display: inline-flex;
  max-width: 48%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 99px;
  background: rgba(14, 20, 32, 0.35);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.post-navigation a:hover {
  border-color: rgba(156, 92, 255, 0.45);
  color: var(--purple);
}

/* === SEARCH AND SIDEBAR === */
.search-form {
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  background: rgba(14, 20, 32, 0.45);
}

.search-field {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 14px;
}

.search-submit {
  height: 38px;
  padding: 0 16px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--purple) 0%, #753be6 100%);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.sidebar {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  background: var(--panel);
}

.widget + .widget {
  margin-top: 28px;
}

.widget-title {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 16px;
}

/* === 404 === */
.not-found-page {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 140px 20px 80px;
  text-align: center;
}

.not-found-inner {
  position: relative;
  z-index: 2;
}

.not-found-code {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  color: rgba(156, 92, 255, 0.12);
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(100px, 20vw, 200px);
  font-weight: 700;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.not-found-title {
  margin: 12px 0;
  color: var(--text);
  font-size: 28px;
  font-weight: 700;
}

.not-found-sub {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 15px;
}

/* === PLACEHOLDERS === */
.np-placeholder-section {
  padding: 90px 0;
  background: var(--bg);
}

.np-placeholder-panel {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  background: var(--panel);
  text-align: center;
}

.np-placeholder-panel h2 {
  color: var(--text);
  font-size: 28px;
  font-weight: 700;
}

/* === FOOTER === */
.footer {
  flex-shrink: 0;
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
  background: var(--bg-deep);
  color: var(--dim);
  font-size: 13px;
}

.footer--definition-fixed {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 80;
  padding: 18px 0;
  background: rgba(2, 3, 6, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.34);
}

.footer--definition-fixed .footer-inner {
  gap: 18px;
}

.footer--definition-fixed .footer-left,
.footer--definition-fixed .footer-links,
.footer--definition-fixed .footer-menu {
  gap: 16px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
}

.footer-brand img {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 8px var(--purple));
}

.footer-brand span {
  background: linear-gradient(135deg, #fff 50%, var(--muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-version {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}

.footer-links,
.footer-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-links a {
  font-size: 16px;
}

.footer--large {
  padding: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(156, 92, 255, 0.14) 0%, transparent 32%),
    radial-gradient(circle at 82% 12%, rgba(63, 229, 232, 0.08) 0%, transparent 30%),
    var(--bg-deep);
}

.np-large-footer {
  padding: 62px 0 30px;
}

.np-footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 32px;
  border: 1px solid rgba(156, 92, 255, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(156, 92, 255, 0.16) 0%, rgba(63, 229, 232, 0.06) 100%),
    rgba(8, 12, 24, 0.62);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.np-footer-cta h2 {
  max-width: 760px;
  margin-bottom: 10px;
  color: var(--text);
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.np-footer-cta p {
  max-width: 680px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
}

.np-footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(150px, 0.6fr));
  gap: 36px;
  padding: 50px 0 36px;
}

.np-footer-brand-large {
  gap: 12px;
  margin-bottom: 18px;
  font-size: 22px;
}

.np-footer-brand-large img {
  width: 34px;
  height: 34px;
}

.np-footer-brand-column p {
  max-width: 360px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.np-footer-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(0, 255, 178, 0.18);
  border-radius: 99px;
  background: rgba(0, 255, 178, 0.06);
  color: var(--green);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.np-footer-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(0, 255, 178, 0.7);
}

.np-footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.np-footer-column h3 {
  margin-bottom: 6px;
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.np-footer-column a {
  color: var(--muted);
  font-size: 13.5px;
}

.np-footer-column a:hover,
.np-footer-column a:focus-visible {
  color: var(--text);
  transform: translateX(2px);
}

.np-footer-wp-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.np-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  color: var(--dim);
  font-size: 13px;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .compare-grid,
  .np-calculator,
  .np-cta-grid {
    grid-template-columns: 1fr;
  }

  .np-cta-grid {
    gap: 60px;
  }

  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .waitlist-form-grid {
    grid-template-columns: 1fr;
  }

  .np-footer-cta,
  .np-footer-main {
    grid-template-columns: 1fr;
  }

  .np-footer-cta {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .top-nav {
    top: 14px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .beta-badge {
    display: none;
  }

  .footer-inner,
  .footer-left,
  .footer-links,
  .footer-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer--definition-fixed .footer-inner,
  .footer--definition-fixed .footer-left,
  .footer--definition-fixed .footer-links,
  .footer--definition-fixed .footer-menu {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .footer--definition-fixed {
    padding: 14px 0;
  }

  .footer--definition-fixed .footer-left > span,
  .footer--definition-fixed .footer-menu {
    display: none;
  }

  .np-large-footer {
    padding: 56px 0 28px;
  }

  .np-footer-cta {
    padding: 30px;
    border-radius: 18px;
  }

  .np-footer-main {
    gap: 34px;
    padding: 48px 0 36px;
  }

  .np-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .waitlist-section,
  .waitlist-form-section {
    padding: 58px 0;
  }

  .entity-definition-section {
    padding: 28px 0 46px;
  }

  .entity-definition-card {
    padding: 24px;
  }

  .definition-page {
    padding-top: 110px;
    padding-bottom: 190px;
  }

  .definition-header {
    margin-bottom: 30px;
    padding-bottom: 24px;
  }

  .eligibility-grid {
    grid-template-columns: 1fr;
  }

  .np-hero-word-neura {
    left: 4%;
  }

  .np-hero-word-pent {
    right: 4%;
  }

  .np-hero-word-hacks {
    left: 12%;
  }

  .np-hero-description {
    left: 6%;
  }

  .np-hero-stat-top {
    right: 6%;
  }

  .np-hero-stat-bottom-left {
    bottom: 20%;
    left: 6%;
  }

  .np-hero-stat-bottom-right {
    right: 6%;
    bottom: 16%;
  }

  .np-hero-divider {
    display: none;
  }

  .np-pricing-section {
    padding: 60px 0;
  }

  .np-landing-hero-inner {
    width: min(100% - 32px, 1280px);
    padding-top: 100px;
    padding-bottom: 58px;
  }

  .np-landing-title {
    font-size: clamp(36px, 10vw, 52px);
  }

  .np-landing-subtitle {
    font-size: 15.5px;
  }

  .np-hero-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 430px);
  }

  .np-hero-tab {
    min-width: 0;
  }

  .np-tab-divider {
    display: none;
  }

  .np-hero-demo {
    height: 420px;
    border-radius: 22px;
  }

  .np-demo-card {
    width: min(100% - 28px, 420px);
    padding: 22px;
  }

  .np-calc-form,
  .np-calc-output {
    padding: 32px;
  }
}

@media (max-width: 600px) {
  .container,
  .np-cta-grid {
    width: min(100% - 28px, 1140px);
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 56px;
  }

  .signup-form {
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
  }

  .signup-form .cta-button {
    width: 100%;
  }

  .browser-search {
    width: min(220px, 62%);
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }

  .post-navigation {
    flex-direction: column;
  }

  .post-navigation a {
    max-width: 100%;
  }

  .np-option {
    align-items: flex-start;
  }

  .np-hero-rating {
    align-items: flex-start;
    max-width: 310px;
    text-align: left;
  }

  .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .waitlist-application-form {
    grid-template-columns: 1fr;
  }

  .waitlist-form-grid > div:first-child,
  .next-steps-card {
    padding: 24px;
  }

  .np-hero-demo {
    height: 390px;
  }

  .np-demo-metrics {
    grid-template-columns: 1fr;
  }

  .np-hero-standards {
    gap: 18px;
    margin-top: 52px;
    font-size: 12px;
  }

  .np-animated-gradient {
    padding: 64px 26px;
  }
}

/* === LEGAL PAGES === */
.legal-page {
  padding-top: clamp(140px, 12vw, 180px);
  padding-bottom: clamp(60px, 8vw, 100px);
}

.legal-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-content {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
}

.legal-content h1,
.legal-content h2,
.legal-content h3 {
  color: var(--text);
  font-family: var(--font-serif);
  font-weight: 500;
  margin-top: 1.8em;
  margin-bottom: 0.6em;
}

.legal-content h2 {
  font-size: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}

.legal-content h3 {
  font-size: 20px;
}

.legal-content p {
  margin-bottom: 1.5em;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1.5em;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 0.5em;
  list-style-type: disc;
}

.legal-content strong {
  color: var(--text);
}

.legal-content .last-updated {
  font-size: 14px;
  color: var(--dim);
  margin-bottom: 2em;
}
