:root { --nl-bg-dark: #0f172a; --nl-text-light: #f8fafc; --nl-neon: #38bdf8; --nl-magenta: #e879f9; --nl-card-bg: #1e293b; --nl-font-head: 'Space Grotesk', sans-serif; --nl-font-body: 'Inter', sans-serif; } * { margin: 0; padding: 0; box-sizing: border-box; } body { background-color: var(--nl-bg-dark); color: var(--nl-text-light); font-family: var(--nl-font-body); line-height: 1.6; overflow-x: hidden; } img { width: 100%; height: auto; object-fit: cover; display: block; } a { color: var(--nl-neon); text-decoration: none; transition: color 0.3s ease; } a:hover { color: var(--nl-magenta); } .nl-header-bar { position: sticky; top: 0; z-index: 100; background: rgba(15, 23, 42, 0.95); backdrop-filter: blur(10px); display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 5%; border-bottom: 1px solid rgba(255,255,255,0.1); } .nl-brand-mark { display: flex; align-items: center; gap: 0.75rem; font-family: var(--nl-font-head); font-size: 1.5rem; font-weight: 700; color: #fff; } .nl-nav-links { display: flex; gap: 2rem; font-size: 0.9rem; font-weight: 500; } .nl-nav-links a { color: var(--nl-text-light); } .nl-nav-links a:hover { color: var(--nl-neon); } .nl-hero-expansive { position: relative; padding: 12vmin 5%; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 3rem; overflow: hidden; } .nl-hero-shapes { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; } .nl-shape-one { position: absolute; top: -10%; left: -5%; width: 40vw; height: 40vw; background: radial-gradient(circle, rgba(56,189,248,0.15) 0%, transparent 70%); border-radius: 50%; } .nl-shape-two { position: absolute; bottom: -20%; right: -10%; width: 50vw; height: 50vw; background: radial-gradient(circle, rgba(232,121,249,0.1) 0%, transparent 70%); border-radius: 50%; } .nl-hero-content { max-width: 800px; z-index: 1; } .nl-headline-massive { font-family: var(--nl-font-head); font-size: clamp(3rem, 6vw, 5rem); line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -0.03em; } .nl-subhead-premium { font-size: clamp(1.1rem, 2vw, 1.5rem); color: #cbd5e1; margin-bottom: 2.5rem; } .nl-hero-actions { display: flex; justify-content: center; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; } .nl-btn-primary { background: linear-gradient(135deg, var(--nl-neon), var(--nl-magenta)); color: #fff; padding: 1rem 2rem; border-radius: 4px; font-weight: 600; font-family: var(--nl-font-head); text-transform: uppercase; letter-spacing: 0.05em; } .nl-btn-primary:hover { opacity: 0.9; color: #fff; } .nl-btn-ghost { border: 1px solid rgba(255,255,255,0.3); padding: 1rem 2rem; border-radius: 4px; font-weight: 600; font-family: var(--nl-font-head); text-transform: uppercase; } .nl-btn-ghost:hover { border-color: var(--nl-neon); background: rgba(56,189,248,0.05); } .nl-tiny-disclaimer { font-size: 0.75rem; color: #64748b; } .nl-hero-visual { width: 100%; max-width: 1000px; border-radius: 12px; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); z-index: 1; } .nl-section-title { font-family: var(--nl-font-head); font-size: 2.5rem; margin-bottom: 2rem; } .nl-story-deep { padding: 10vmin 5%; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; background: #0b1121; } .nl-story-text p { margin-bottom: 1.5rem; color: #94a3b8; font-size: 1.1rem; } .nl-inline-link { text-decoration: underline; text-decoration-color: var(--nl-magenta); text-underline-offset: 4px; } .nl-metrics-row { display: flex; gap: 2rem; margin-top: 3rem; } .nl-metric-box { display: flex; flex-direction: column; } .nl-metric-value { font-family: var(--nl-font-head); font-size: 3.5rem; color: var(--nl-neon); line-height: 1; } .nl-metric-label { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; color: #64748b; margin-top: 0.5rem; } .nl-story-image { border-radius: 8px; overflow: hidden; position: relative; } .nl-story-image::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1); border-radius: 8px; pointer-events: none; } .nl-strategies-grid { padding: 12vmin 5%; } .nl-strat-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; } .nl-strat-header p { color: #94a3b8; font-size: 1.2rem; } .nl-process-bar { display: flex; justify-content: center; gap: 2rem; margin-bottom: 5rem; flex-wrap: wrap; background: var(--nl-card-bg); padding: 2rem; border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); } .nl-step { font-size: 0.95rem; color: #cbd5e1; } .nl-step strong { color: var(--nl-magenta); font-family: var(--nl-font-head); } .nl-cards-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .nl-strat-card { background: var(--nl-card-bg); border-radius: 8px; padding: 2.5rem; border: 1px solid rgba(255,255,255,0.05); transition: transform 0.3s ease; } .nl-strat-card:hover { transform: translateY(-5px); border-color: rgba(56,189,248,0.3); } .nl-strat-card img { border-radius: 4px; margin-bottom: 1.5rem; height: 180px; } .nl-strat-card h3 { font-family: var(--nl-font-head); font-size: 1.5rem; margin-bottom: 1rem; } .nl-strat-card p { color: #94a3b8; font-size: 0.95rem; } .nl-feedback-wrapper { padding: 8vmin 5%; background: linear-gradient(to bottom, #0b1121, var(--nl-bg-dark)); text-align: center; } .nl-testimonials-layout { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-top: 3rem; } .nl-testimonial-item { background: rgba(255,255,255,0.03); padding: 3rem 2rem; border-radius: 8px; max-width: 450px; text-align: left; border-left: 2px solid var(--nl-neon); } .nl-testimonial-item p { font-size: 1.1rem; font-style: italic; color: #e2e8f0; margin-bottom: 2rem; } .nl-client-info { display: flex; align-items: center; gap: 1rem; } .nl-client-info img { width: 50px; height: 50px; border-radius: 50%; } .nl-client-name { font-weight: 600; font-size: 0.9rem; color: #94a3b8; } .nl-connect-panel { padding: 12vmin 5%; display: flex; justify-content: center; } .nl-form-container { background: var(--nl-card-bg); padding: 4rem; border-radius: 12px; width: 100%; max-width: 600px; border: 1px solid rgba(255,255,255,0.05); } .nl-form-container p { color: #94a3b8; margin-bottom: 2rem; font-size: 0.9rem; } .nl-lead-form { display: flex; flex-direction: column; gap: 1.5rem; } .nl-lead-form input, .nl-lead-form textarea { width: 100%; padding: 1rem; background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; color: #fff; font-family: var(--nl-font-body); font-size: 1rem; } .nl-lead-form input:focus, .nl-lead-form textarea:focus { outline: none; border-color: var(--nl-neon); } .nl-lead-form textarea { min-height: 120px; resize: vertical; } .nl-btn-submit { background: var(--nl-neon); color: #0f172a; border: none; padding: 1.2rem; border-radius: 4px; font-family: var(--nl-font-head); font-weight: 700; font-size: 1.1rem; cursor: pointer; transition: background 0.3s ease; text-transform: uppercase; } .nl-btn-submit:hover { background: var(--nl-magenta); color: #fff; } .nl-footer-base { background: #070b14; padding: 4rem 5% 2rem; border-top: 1px solid rgba(255,255,255,0.05); } .nl-footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; margin-bottom: 3rem; } .nl-footer-col h4 { font-family: var(--nl-font-head); margin-bottom: 1.5rem; color: #fff; } .nl-footer-col p { color: #64748b; font-size: 0.9rem; margin-bottom: 0.5rem; } .nl-footer-col a { color: #64748b; } .nl-footer-col a:hover { color: var(--nl-neon); } .nl-footer-col nav { display: flex; flex-direction: column; gap: 0.75rem; } .nl-footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; color: #475569; font-size: 0.85rem; } .nl-legal-wrap { padding: 15vmin 5%; max-width: 800px; margin: 0 auto; } .nl-legal-wrap h1 { font-family: var(--nl-font-head); margin-bottom: 2rem; font-size: 2.5rem; } .nl-legal-wrap p { margin-bottom: 1.5rem; color: #94a3b8; } @media (max-width: 900px) { .nl-story-deep { grid-template-columns: 1fr; } .nl-nav-links { display: none; } .nl-form-container { padding: 2rem; } }