/* --- Reset-ish + tokens --- */
.ns-wrap * { box-sizing: border-box; }
.ns-wrap { --bg:#0b0b10; --fg:#ffffff; --muted:#a3a3b0; --btn:#6366f1; --btn-hover:#4f46e5; background: var(--bg); color: var(--fg); font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, "Helvetica Neue", Arial; }

/* Layout */
.ns-container { max-width: 1200px; margin: 0 auto; padding: 24px; }
.ns-hero { border-radius: 20px; background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)); overflow: hidden; }
.ns-hero-grid { display: grid; gap: 32px; padding: 56px 24px; align-items: center; }
@media (min-width: 1024px) { .ns-hero-grid { grid-template-columns: 1.1fr 1fr; padding: 80px 64px; } }

/* Text */
.ns-eyebrow { color: var(--muted); font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.ns-title { font-size: 42px; line-height: 1.1; font-weight: 700; margin: 12px 0; }
.ns-desc  { font-size: 18px; color: #c7c8d9; max-width: 56ch; }
@media (min-width: 768px) { .ns-title { font-size: 56px; } }

/* Buttons */
.ns-cta-row { display:flex; flex-wrap:wrap; gap:12px; margin-top: 24px; }
.ns-btn { padding: 12px 18px; border-radius: 10px; font-weight: 600; text-decoration: none; display:inline-block; transition: .2s ease; }
.ns-btn-primary { background: var(--btn); color: white; }
.ns-btn-primary:hover { background: var(--btn-hover); }
.ns-btn-ghost { background: transparent; border:1px solid rgba(255,255,255,.3); color: var(--fg); }
.ns-btn-ghost:hover { background: rgba(255,255,255,.1); }

/* Image */
.ns-visual img { width: 100%; height: auto; border-radius: 16px; object-fit: cover; }

/* Logos slider */
.ns-partners { padding: 28px 0 6px; }
.ns-partners-label { font-size:14px; color:#c7c8d9; margin-bottom: 12px; }
.ns-marquee-wrap { overflow: hidden; position: relative; }
.ns-marquee-fade::before,
.ns-marquee-fade::after {
  content:""; position:absolute; top:0; bottom:0; width:64px; pointer-events:none; z-index: 2;
  background: linear-gradient(to right, var(--bg), transparent);
}
.ns-marquee-fade::after { right:0; left:auto; transform: rotateZ(180deg); }
.ns-marquee { display:flex; gap:40px; align-items:center; min-width:max-content; animation: ns-scroll 25s linear infinite; filter: grayscale(100%) contrast(0.9) opacity(0.9); }
.ns-logo-pill { font-size: 14px; color:#e5e7eb; border:1px solid rgba(255,255,255,.16); padding:8px 14px; border-radius: 999px; white-space: nowrap; }
@keyframes ns-scroll { from{transform:translateX(0);} to{transform:translateX(-50%);} }
