.nyle-page {
  --bg: #000000;
  --bg-card: #0a0a0a;
  --bg-card-elevated: #111111;
  --bg-input: #0f0f0f;
  --border-c: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --border-focus: rgba(34,197,94,0.5);
  --text: #ffffff;
  --text-muted: #8a8a8a;
  --text-dim: #5a5a5a;
  --green: #22c55e;
  --green-dim: rgba(34,197,94,0.15);
  --green-glow: rgba(34,197,94,0.4);
  --lavender: #a5a5ff;
  --lavender-dim: rgba(165,165,255,0.15);
  --red: #ef4444;
  --red-dim: rgba(239,68,68,0.1);
  --orange: #fbbf24;

  background: var(--bg);
  color: var(--text);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.nyle-page * { box-sizing: border-box; }
.nyle-page html { scroll-behavior: smooth; }

.nyle-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- NAV ---------- */
.nyle-page nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-c);
  position: sticky;
  top: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
}
.nyle-page nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nyle-page .logo-link { text-decoration: none; display: inline-block; }
.nyle-page .logo {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.12em;
  background: linear-gradient(180deg, #fff 0%, #888 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nyle-page .nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--text-muted);
}
.nyle-page .nav-links a { color: inherit; text-decoration: none; transition: color 0.2s; }
.nyle-page .nav-links a:hover { color: #fff; }
.nyle-page .nav-cta {
  background: var(--green);
  color: #000;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.nyle-page .nav-cta:hover { background: #1ea54b; transform: translateY(-1px); }
.nyle-page .nav-right { display: flex; align-items: center; gap: 14px; }
.nyle-page .nav-menu-btn {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nyle-page .nav-menu-btn:hover { background: rgba(255,255,255,0.08); }
.nyle-page .nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.95);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.nyle-page .nav-overlay.open { display: flex; }
.nyle-page .nav-overlay-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nyle-page .nav-overlay-close:hover { background: rgba(255,255,255,0.08); }
.nyle-page .nav-overlay-links {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
  padding: 0;
}
.nyle-page .nav-overlay-links a {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.nyle-page .nav-overlay-links a:hover { color: var(--lavender); }
.nyle-page .back-link {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.nyle-page .back-link:hover { color: #fff; }

/* ---------- HERO ---------- */
.nyle-page .hero {
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.nyle-page .hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--green-dim) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.nyle-page .hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--lavender-dim) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}
.nyle-page .hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.nyle-page .countdown-bar {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(90deg, rgba(251,191,36,0.08), rgba(34,197,94,0.08));
  border: 1px solid rgba(251,191,36,0.25);
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  max-width: 100%;
  flex-wrap: wrap;
}
.nyle-page .countdown-bar .label {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  white-space: nowrap;
}
.nyle-page .countdown-bar .divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
}
.nyle-page .countdown-timer { display: flex; gap: 10px; color: #fff; }
.nyle-page .countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 26px;
}
.nyle-page .countdown-unit .num { font-size: 14px; font-weight: 600; line-height: 1; }
.nyle-page .countdown-unit .lbl {
  font-size: 9px;
  color: var(--text-dim);
  margin-top: 2px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nyle-page h1.hero-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.nyle-page h1.hero-title .accent,
.nyle-page h1.form-h1 .accent {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, #fff 0%, #a5a5ff 50%, #22c55e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nyle-page .hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 580px;
}
.nyle-page .hero-sub strong { color: #fff; font-weight: 500; }

.nyle-page .cta-row {
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.nyle-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.nyle-page .btn-primary { background: var(--green); color: #000; }
.nyle-page .btn-primary:hover {
  background: #1ea54b;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--green-glow);
}
.nyle-page .btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid var(--border-strong);
}
.nyle-page .btn-secondary:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.25);
}
.nyle-page .trust-line {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  padding-top: 28px;
  border-top: 1px solid var(--border-c);
}
.nyle-page .trust-line strong { color: var(--text-muted); font-weight: 500; }

.nyle-page .demo-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: linear-gradient(135deg, #0d0d0d 0%, #050505 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02),
    0 30px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(34,197,94,0.08);
}
.nyle-page .demo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(34,197,94,0.3), transparent 40%, transparent 60%, rgba(165,165,255,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.nyle-page .demo-chrome {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-c);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nyle-page .demo-chrome .dots { display: flex; gap: 6px; }
.nyle-page .demo-chrome .dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.nyle-page .demo-chrome .url {
  flex: 1;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-dim);
}
.nyle-page .demo-content { padding: 24px; }
.nyle-page .demo-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 12px;
}
.nyle-page .demo-title {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nyle-page .demo-h {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.nyle-page .demo-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  padding: 4px 10px;
  background: var(--green-dim);
  color: var(--green);
  border-radius: 999px;
  border: 1px solid var(--green-dim);
  white-space: nowrap;
  flex-shrink: 0;
}
.nyle-page .score-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.nyle-page .score-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-c);
  border-radius: 10px;
  padding: 14px;
}
.nyle-page .score-card .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.nyle-page .score-card .value {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.nyle-page .score-card .value.high { color: var(--green); }
.nyle-page .score-card .value.mod { color: var(--lavender); }
.nyle-page .score-card .value.low { color: #fff; }
.nyle-page .score-card .bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.nyle-page .score-card .bar-fill {
  height: 100%;
  border-radius: 999px;
}
.nyle-page .demo-row-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.nyle-page .control-list { display: flex; flex-direction: column; gap: 6px; }
.nyle-page .control-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-c);
  border-radius: 8px;
  font-size: 12px;
}
.nyle-page .control-row .id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  min-width: 56px;
  flex-shrink: 0;
}
.nyle-page .control-row .name {
  flex: 1;
  color: #ccc;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nyle-page .control-row .badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 999px;
  flex-shrink: 0;
}
.nyle-page .badge-met { background: var(--green-dim); color: var(--green); }
.nyle-page .badge-gap { background: var(--red-dim); color: var(--red); }
.nyle-page .badge-partial { background: var(--lavender-dim); color: var(--lavender); }

.nyle-page .demo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: 16px;
  cursor: pointer;
}
.nyle-page .demo-frame:hover .demo-overlay { opacity: 1; }
.nyle-page .demo-overlay .play {
  background: var(--green);
  color: #000;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nyle-page section { padding: 96px 0; position: relative; }
.nyle-page .section-divider { border-top: 1px solid var(--border-c); }
.nyle-page .section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nyle-page .section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--green);
}
.nyle-page .section-h2 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 800px;
}
.nyle-page .section-h2 .accent {
  font-style: italic;
  font-weight: 500;
  color: var(--lavender);
}
.nyle-page .section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.55;
}

.nyle-page .value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.nyle-page .value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-c);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.nyle-page .value-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.nyle-page .value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.nyle-page .value-card:hover::before { opacity: 1; }
.nyle-page .value-stat {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 56px;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff 0%, #888 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nyle-page .value-stat .unit {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted);
}
.nyle-page .value-vs {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.nyle-page .value-vs s { color: var(--text-dim); opacity: 0.5; }
.nyle-page .value-h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.nyle-page .value-body { font-size: 15px; color: var(--text-muted); line-height: 1.55; }

.nyle-page .unlocks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.nyle-page .unlock-card {
  background: var(--bg-card);
  border: 1px solid var(--border-c);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.nyle-page .unlock-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 60px;
  background: radial-gradient(circle at top left, var(--green-dim), transparent 70%);
  pointer-events: none;
}
.nyle-page .unlock-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 16px;
}
.nyle-page .unlock-h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  line-height: 1.25;
}
.nyle-page .unlock-body { font-size: 15px; color: var(--text-muted); line-height: 1.6; }
.nyle-page .unlock-body strong { color: #fff; font-weight: 500; }

.nyle-page .demo-cta {
  background: linear-gradient(135deg, rgba(34,197,94,0.05) 0%, rgba(165,165,255,0.05) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.nyle-page .demo-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(34,197,94,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.nyle-page .demo-cta-h {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  position: relative;
  line-height: 1.15;
}
.nyle-page .demo-cta-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
  position: relative;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.nyle-page .deliv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.nyle-page .deliv-card {
  background: var(--bg-card);
  border: 1px solid var(--border-c);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.2s;
}
.nyle-page .deliv-card:hover { border-color: var(--border-strong); background: var(--bg-card-elevated); }
.nyle-page .deliv-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nyle-page .deliv-icon svg { width: 18px; height: 18px; color: var(--green); }
.nyle-page .deliv-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.nyle-page .deliv-content p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

.nyle-page .compare-wrapper {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.nyle-page .compare-col {
  background: var(--bg-card);
  border: 1px solid var(--border-c);
  border-radius: 16px;
  overflow: hidden;
}
.nyle-page .compare-col.nyle {
  border-color: rgba(34,197,94,0.3);
  background: linear-gradient(180deg, rgba(34,197,94,0.04) 0%, transparent 100%);
  box-shadow: 0 0 40px rgba(34,197,94,0.06);
}
.nyle-page .compare-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-c);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nyle-page .compare-col.trad .compare-header { color: var(--text-muted); }
.nyle-page .compare-col.nyle .compare-header { color: var(--green); }
.nyle-page .compare-list { list-style: none; padding: 8px; margin: 0; }
.nyle-page .compare-list li {
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px solid var(--border-c);
}
.nyle-page .compare-list li:last-child { border-bottom: none; }
.nyle-page .compare-col.trad li { color: var(--text-muted); }
.nyle-page .compare-col.nyle li { color: #fff; }
.nyle-page .compare-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}
.nyle-page .compare-col.trad .compare-icon { background: rgba(239,68,68,0.1); color: var(--red); }
.nyle-page .compare-col.nyle .compare-icon { background: var(--green-dim); color: var(--green); }

.nyle-page .trust-section { text-align: center; }
.nyle-page .trust-body {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 16px;
  line-height: 1.65;
}
.nyle-page .trust-body strong { color: #fff; font-weight: 500; }

.nyle-page .vantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 56px 0 0;
  text-align: left;
}
.nyle-page .vantage-card {
  background: var(--bg-card);
  border: 1px solid var(--border-c);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.nyle-page .vantage-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--lavender);
  margin-bottom: 14px;
}
.nyle-page .vantage-h {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.nyle-page .vantage-body { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.nyle-page .vantage-body strong { color: #fff; font-weight: 500; }

.nyle-page .trust-quote {
  font-family: 'Inter Tight', sans-serif;
  font-style: italic;
  font-size: 20px;
  color: #fff;
  max-width: 620px;
  margin: 56px auto 0;
  line-height: 1.5;
  font-weight: 400;
  padding: 0 20px;
}

.nyle-page .pricing-wrapper { display: flex; justify-content: center; margin-top: 56px; }
.nyle-page .pricing-card {
  background: linear-gradient(180deg, var(--bg-card-elevated) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 48px;
  max-width: 560px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.nyle-page .pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--lavender));
}
.nyle-page .pricing-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(251,191,36,0.3);
  background: rgba(251,191,36,0.06);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.nyle-page .pricing-name {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nyle-page .price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.nyle-page .price-old {
  font-size: 24px;
  color: var(--text-dim);
  text-decoration: line-through;
  font-weight: 500;
}
.nyle-page .price-new {
  font-size: clamp(40px, 8vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nyle-page .price-meta {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-c);
}
.nyle-page .includes-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.nyle-page .includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 32px;
  padding: 0;
}
.nyle-page .includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #ddd;
  line-height: 1.5;
}
.nyle-page .includes-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 9px;
  flex-shrink: 0;
}
.nyle-page .pricing-cta {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 16px;
}
.nyle-page .pricing-footnote {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
  line-height: 1.5;
  text-align: center;
}

.nyle-page .final-cta {
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.nyle-page .final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(34,197,94,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.nyle-page .final-h {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
  position: relative;
}
.nyle-page .final-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 40px;
  position: relative;
  line-height: 1.55;
}
.nyle-page .final-deadline {
  margin-top: 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
}

.nyle-page footer {
  border-top: 1px solid var(--border-c);
  padding: 48px 0;
  text-align: center;
}
.nyle-page footer .tagline { color: var(--text-muted); font-size: 14px; margin: 12px 0 24px; }
.nyle-page footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 13px;
  color: var(--text-dim);
  flex-wrap: wrap;
}
.nyle-page footer .footer-links a { color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.nyle-page footer .footer-links a:hover { color: var(--text-muted); }

/* ---------- PRICING PAGE LAYOUT ---------- */
.nyle-page .page-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  padding: 72px 0 120px;
  position: relative;
}
.nyle-page .page-wrap::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--green-dim) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}
.nyle-page .page-wrap::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--lavender-dim) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}
.nyle-page .left-col { position: sticky; top: 120px; align-self: start; }
.nyle-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(251,191,36,0.25);
  background: rgba(251,191,36,0.05);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.nyle-page .eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
}
.nyle-page h1.form-h1 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.nyle-page .lede {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
}
.nyle-page .lede strong { color: #fff; font-weight: 500; }

.nyle-page .summary-card {
  background: var(--bg-card);
  border: 1px solid var(--border-c);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.nyle-page .summary-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.nyle-page .summary-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.nyle-page .summary-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.nyle-page .summary-price .price-old { font-size: 18px; }
.nyle-page .summary-price .price-new { font-size: 40px; }
.nyle-page .summary-meta { font-size: 13px; color: var(--text-muted); }
.nyle-page .summary-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--border-c);
}
.nyle-page .summary-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
}
.nyle-page .summary-bullets li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 9px;
  flex-shrink: 0;
}
.nyle-page .trust-mini {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
  padding-top: 20px;
  border-top: 1px solid var(--border-c);
}
.nyle-page .trust-mini strong { color: var(--text-muted); font-weight: 500; }

.nyle-page .form-card {
  background: linear-gradient(180deg, var(--bg-card-elevated) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.nyle-page .form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--lavender));
}
.nyle-page .form-h {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.nyle-page .form-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.nyle-page form .row { margin-bottom: 22px; }
.nyle-page form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nyle-page label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #ddd;
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.nyle-page label .req { color: var(--green); margin-left: 2px; }
.nyle-page input[type="text"],
.nyle-page input[type="email"],
.nyle-page select,
.nyle-page textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-c);
  border-radius: 10px;
  padding: 13px 14px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  color: #fff;
  transition: all 0.15s;
  font-weight: 400;
}
.nyle-page input::placeholder,
.nyle-page textarea::placeholder { color: var(--text-dim); }
.nyle-page input:hover,
.nyle-page select:hover,
.nyle-page textarea:hover { border-color: var(--border-strong); }
.nyle-page input:focus,
.nyle-page select:focus,
.nyle-page textarea:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
}
.nyle-page select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%238a8a8a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.nyle-page select option { background: var(--bg-input); color: #fff; }
.nyle-page textarea {
  resize: vertical;
  min-height: 90px;
  font-family: 'Inter Tight', sans-serif;
}
.nyle-page .error-msg {
  font-size: 12px;
  color: var(--red);
  margin-top: 6px;
}
.nyle-page input.error,
.nyle-page select.error,
.nyle-page textarea.error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}
.nyle-page .submit-btn {
  width: 100%;
  background: var(--green);
  color: #000;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.nyle-page .submit-btn:hover:not(:disabled) {
  background: #1ea54b;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--green-glow);
}
.nyle-page .submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.nyle-page .form-footnote {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 20px;
  line-height: 1.5;
}
.nyle-page .form-footnote strong { color: var(--text-muted); font-weight: 500; }

.nyle-page .success-state { text-align: center; padding: 20px 0; }
.nyle-page .success-icon {
  width: 64px;
  height: 64px;
  background: var(--green-dim);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.nyle-page .success-icon svg { width: 28px; height: 28px; color: var(--green); }
.nyle-page .success-h {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.nyle-page .success-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 auto 28px;
  max-width: 440px;
}
.nyle-page .success-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 1px solid var(--border-strong);
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}
.nyle-page .success-cta:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.25); }
.nyle-page .success-actions { display: flex; flex-direction: column; align-items: center; gap: 12px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .nyle-page .container { padding: 0 24px; }
  .nyle-page .nav-links { gap: 24px; }
  .nyle-page .hero-inner { gap: 40px; }
  .nyle-page .value-grid,
  .nyle-page .unlocks-grid,
  .nyle-page .vantage-grid { gap: 14px; }
  .nyle-page .value-card,
  .nyle-page .unlock-card,
  .nyle-page .vantage-card { padding: 24px; }
  .nyle-page .value-stat { font-size: 44px; }
  .nyle-page .unlock-h3 { font-size: 19px; }
  .nyle-page .page-wrap { gap: 56px; }
  .nyle-page .form-card { padding: 40px; }
}

@media (max-width: 900px) {
  .nyle-page .page-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 0 80px;
  }
  .nyle-page .left-col { position: static; }
  .nyle-page h1.form-h1 { font-size: 36px; }
  .nyle-page .form-card { padding: 32px; }
}

@media (max-width: 820px) {
  .nyle-page .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .nyle-page .value-grid,
  .nyle-page .unlocks-grid,
  .nyle-page .vantage-grid { grid-template-columns: 1fr; }
  .nyle-page .deliv-grid { grid-template-columns: 1fr; }
  .nyle-page .compare-wrapper { grid-template-columns: 1fr; }
  .nyle-page .nav-links { display: none; }
  .nyle-page section { padding: 72px 0; }
  .nyle-page .hero { padding: 56px 0 64px; }
  .nyle-page .demo-cta { padding: 48px 24px; }
  .nyle-page .pricing-card { padding: 36px 28px; }
  .nyle-page .value-stat { font-size: 56px; }
  .nyle-page .unlock-h3 { font-size: 22px; }
}

@media (max-width: 560px) {
  .nyle-page .container { padding: 0 20px; }
  .nyle-page nav { padding: 16px 0; }
  .nyle-page .nav-cta { font-size: 13px; padding: 9px 14px; }
  .nyle-page section { padding: 56px 0; }
  .nyle-page .hero { padding: 40px 0 48px; }
  .nyle-page .countdown-bar {
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
    gap: 10px;
    margin-bottom: 24px;
  }
  .nyle-page .countdown-bar .label { font-size: 10px; }
  .nyle-page .countdown-bar .divider { display: none; }
  .nyle-page .countdown-timer { gap: 8px; }
  .nyle-page .countdown-unit { min-width: 22px; }
  .nyle-page .countdown-unit .num { font-size: 13px; }
  .nyle-page .countdown-unit .lbl { font-size: 8px; }
  .nyle-page h1.hero-title { font-size: 36px; margin-bottom: 18px; }
  .nyle-page .hero-sub { font-size: 16px; margin-bottom: 28px; }
  .nyle-page .cta-row { gap: 10px; flex-direction: column; align-items: stretch; }
  .nyle-page .btn { width: 100%; padding: 16px 20px; }
  .nyle-page .trust-line { font-size: 12px; padding-top: 24px; }
  .nyle-page .demo-content { padding: 18px; }
  .nyle-page .demo-header { margin-bottom: 16px; }
  .nyle-page .demo-h { font-size: 16px; }
  .nyle-page .score-grid { gap: 8px; }
  .nyle-page .score-card { padding: 11px; }
  .nyle-page .score-card .value { font-size: 20px; }
  .nyle-page .control-row { padding: 7px 8px; font-size: 11px; }
  .nyle-page .control-row .id { font-size: 10px; min-width: 50px; }
  .nyle-page .section-h2 { font-size: 28px; margin-bottom: 18px; }
  .nyle-page .section-sub { font-size: 15px; }
  .nyle-page .section-eyebrow { font-size: 10px; }
  .nyle-page .value-grid,
  .nyle-page .unlocks-grid,
  .nyle-page .vantage-grid { margin-top: 36px; gap: 12px; }
  .nyle-page .value-card,
  .nyle-page .unlock-card,
  .nyle-page .vantage-card { padding: 24px; }
  .nyle-page .value-stat { font-size: 48px; }
  .nyle-page .value-stat .unit { font-size: 20px; }
  .nyle-page .value-vs { margin-bottom: 18px; }
  .nyle-page .unlock-h3 { font-size: 20px; }
  .nyle-page .unlock-body,
  .nyle-page .vantage-body { font-size: 14px; }
  .nyle-page .demo-cta { padding: 36px 20px; border-radius: 18px; }
  .nyle-page .demo-cta-h { font-size: 24px; }
  .nyle-page .demo-cta-sub { font-size: 15px; margin-bottom: 24px; }
  .nyle-page .deliv-grid { margin-top: 36px; }
  .nyle-page .deliv-card { padding: 20px; }
  .nyle-page .compare-wrapper { margin-top: 36px; gap: 14px; }
  .nyle-page .compare-list li { padding: 14px 16px; font-size: 13px; }
  .nyle-page .trust-body { font-size: 15px; }
  .nyle-page .trust-quote { font-size: 17px; margin-top: 36px; padding: 0 12px; }
  .nyle-page .vantage-h { font-size: 18px; }
  .nyle-page .pricing-card { padding: 28px 20px; border-radius: 18px; }
  .nyle-page .price-row { gap: 12px; }
  .nyle-page .price-old { font-size: 20px; }
  .nyle-page .price-new { font-size: 44px; }
  .nyle-page .includes-list li { font-size: 14px; }
  .nyle-page .final-cta { padding: 72px 0; }
  .nyle-page .final-h { font-size: 32px; }
  .nyle-page .final-h br { display: none; }
  .nyle-page .final-sub { font-size: 16px; margin-bottom: 32px; }
  .nyle-page footer { padding: 36px 0; }
  .nyle-page footer .footer-links { gap: 16px 20px; font-size: 12px; }
  .nyle-page .page-wrap { padding: 36px 0 64px; gap: 36px; }
  .nyle-page h1.form-h1 { font-size: 30px; }
  .nyle-page .lede { font-size: 15px; margin-bottom: 28px; }
  .nyle-page .summary-card { padding: 22px; }
  .nyle-page .summary-price .price-new { font-size: 34px; }
  .nyle-page .form-card { padding: 24px; border-radius: 18px; }
  .nyle-page .form-h { font-size: 19px; }
  .nyle-page form .row { margin-bottom: 18px; }
  .nyle-page form .row-2 { grid-template-columns: 1fr; gap: 18px; }
  .nyle-page input[type="text"],
  .nyle-page input[type="email"],
  .nyle-page select,
  .nyle-page textarea { font-size: 16px; padding: 12px 13px; }
  .nyle-page .submit-btn { padding: 15px 20px; font-size: 15px; }
  .nyle-page .success-h { font-size: 24px; }
  .nyle-page .success-body { font-size: 15px; }
}

@media (max-width: 380px) {
  .nyle-page .container { padding: 0 16px; }
  .nyle-page h1.hero-title { font-size: 32px; }
  .nyle-page .section-h2 { font-size: 24px; }
  .nyle-page .value-stat { font-size: 40px; }
  .nyle-page .price-new { font-size: 38px; }
  .nyle-page .countdown-bar { padding: 8px 12px; }
  .nyle-page .countdown-unit .num { font-size: 12px; }
  .nyle-page .demo-content { padding: 14px; }
  .nyle-page .score-card { padding: 9px; }
  .nyle-page .score-card .value { font-size: 18px; }
  .nyle-page h1.form-h1 { font-size: 26px; }
  .nyle-page .form-card { padding: 20px; }
  .nyle-page .summary-price .price-new { font-size: 30px; }
}
