    :root {
      --ns-red: #E63946;
      --ns-red-dark: #C1121F;
      --ns-cream: #F1FAEE;
      --ns-light-blue: #A8DADC;
      --ns-mid-blue: #457B9D;
      --ns-black: #000000;
      --ns-charcoal: #0B1120;
      --ns-white: #FFFFFF;
      --ns-gray-100: #F8F9FA;
      --ns-gray-200: #E9ECEF;
      --ns-gray-600: #6C757D;
      --ns-gray-800: #343A40;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'DM Sans', sans-serif; color: var(--ns-gray-800); background: var(--ns-black); overflow-x: hidden; }
    h1, h2, h3, h4, h5, h6 { font-family: 'Barlow', sans-serif; }
    .balanced { text-wrap: balance; }

    /* ── Navbar ───────────────────────────────── */
	.now-serving { display: inline-block; line-height: 0;  }
	.now-serving svg { max-width: 250px; width: 100%; height: auto; }
    #ns-number { font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif; font-size: 158px; font-weight: 700; fill: #ed230d; letter-spacing: -4px; }
	
    .ns-navbar { background: rgba(50,50,50,0.25); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,0.06); transition: box-shadow 0.3s ease; }
    .ns-navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }
    .ns-navbar .navbar-brand { font-family: 'Barlow', sans-serif; font-weight: 800; font-size: 1.35rem; color: var(--ns-black); letter-spacing: -0.02em; }
    .ns-navbar .nav-link { font-weight: 500; color: var(--ns-gray-600); transition: color 0.2s; font-size: 0.95rem; }
    .ns-navbar .nav-link:hover { color: var(--ns-black); }

    /* ── Buttons ──────────────────────────────── */
    .btn-ns-primary { background: var(--ns-red); color: var(--ns-white); border: none; border-radius: 50px; padding: 14px 36px; font-weight: 600; font-size: 1rem; transition: all 0.25s ease; text-decoration: none;  display: inline-flex; align-items: center; gap: 8px; }
    .btn-ns-primary:hover { background: var(--ns-red-dark);  color: var(--ns-white); box-shadow: 0 8px 30px rgba(230,57,70,0.3); }
    .btn-ns-outline { background: transparent; color: var(--ns-black); border: 2px solid var(--ns-black); border-radius: 50px; padding: 12px 34px; font-weight: 600; font-size: 1rem; transition: all 0.25s ease; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
    .btn-ns-outline:hover { background: var(--ns-black); color: var(--ns-white); }

    /* ── Hero ─────────────────────────────────── */
    .ns-hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: rgba(0,0,0,1);
      overflow: hidden;
      padding-top: 80px;
    }
    .ns-hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 80%;
      height: 150%;
      background: radial-gradient(circle, rgba(230,57,70,0.08) 0%, transparent 60%);
      pointer-events: none;
    }


    .hero-number {
      position: absolute;
      font-family: 'Barlow', sans-serif;
      font-weight: 900;
      font-size: 28vw;
      color: rgba(255,255,255,0.018);
      right: -5%;
      top: 50%;
      transform: translateY(-50%);
      line-height: 1;
      user-select: none;
      pointer-events: none;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 50px;
      padding: 8px 18px;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--ns-light-blue);
      margin-bottom: 28px;
      backdrop-filter: blur(10px);
    }
    .hero-badge .pulse-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--ns-red);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.4); }
    }

    .ns-hero h1 {
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 900;
      color: var(--ns-white);
      line-height: 1.05;
      letter-spacing: -0.035em;
      margin-bottom: 24px;
    }
    .ns-hero h1 .accent {
      color: var(--ns-red);
    }
    .ns-hero .hero-sub {
      font-size: 1.2rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
      margin-bottom: 40px;
    }

    .hero-devices-col {
      position: relative;
      z-index: 1;
    }

    /* ── Device Placeholders ─────────────────── */
    .device-placeholder {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.25);
      font-family: 'Barlow', sans-serif;
      font-weight: 500;
      text-align: center;
      overflow: hidden;
      position: relative;
    }
    .device-placeholder .device-icon {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }
    .device-placeholder .device-label {
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .device-iphone {
      width: 240px;
      height: 480px;
      border-radius: 36px;
    }
    .device-ipad {
      width: 300px;
      height: 220px;
    }
    .device-watch {
      width: 130px;
      height: 155px;
      border-radius: 36px;
    }
    .device-tv {
      width: 320px;
      height: 190px;
      border-radius: 12px;
    }

    .hero-devices-grid {
      display: grid;
      grid-template-columns: 150px 240px 150px;
      grid-template-rows: auto auto;
      gap: 16px;
      align-items: center;
      justify-items: center;
      justify-content: center;
    }
    .hero-devices-grid .dev-iphone {
      grid-column: 2;
      grid-row: 1 / 3;
    }
    .hero-devices-grid .dev-watch {
      grid-column: 1;
      grid-row: 1;
      justify-self: end;
    }
    .hero-devices-grid .dev-ipad {
      grid-column: 1 / 4;
      grid-row: 3;
    }

    /* ── Section Shared ──────────────────────── */
    .ns-section { padding: 100px 0; }
    .section-label {
      display: inline-block;
      font-family: 'Barlow', sans-serif;
      font-weight: 700;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--ns-red);
      margin-bottom: 16px;
    }
    .section-heading {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      color: var(--ns-black);
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .section-sub { font-size: 1.1rem; color: var(--ns-gray-600); line-height: 1.7; }

    /* ── Use Cases ────────────────────────────── */
    #use-cases { background: var(--ns-white); }
    .use-case-card { background: var(--ns-white); border: 1px solid var(--ns-gray-200); border-radius: 16px; padding: 32px 28px; transition: all 0.3s ease; height: 100%; }
    .use-case-card:hover { border-color: var(--ns-red); }
    .use-case-icon { font-size: 3rem; margin-bottom: 18px; }
    .use-case-card h5 { font-weight: 700; font-size: 1.05rem; color: var(--ns-black); margin-bottom: 8px; }
    .use-case-card p { color: var(--ns-gray-600); font-size: 0.9rem; line-height: 1.6; margin: 0; }

    /* ── Devices Section ─────────────────────── */
    .ns-devices { background: var(--ns-black); position: relative; overflow: hidden; }
    .ns-devices .section-heading { color: var(--ns-white); }
    .ns-devices .section-sub { color: rgba(255,255,255,0.5); }

    .device-feature-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; padding: 36px 28px; text-align: center; transition: all 0.3s ease; height: 100%; }
    .device-feature-card:hover { background: rgba(255,255,255,0.07); border-color: var(--ns-red-dark); }
    .device-feature-card .df-icon { font-size: 2.5rem; margin-bottom: 18px; display: block; }
    .device-feature-card h5 { font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--ns-white); margin-bottom: 8px; }
    .device-feature-card p { color: rgba(255,255,255,0.45); font-size: 0.9rem; line-height: 1.6; margin: 0; }

    /* ── App Icon Section ────────────────────── */
    .ns-app-showcase { position: relative; }
    .app-icon-placeholder { width: 140px; height: 140px; border-radius: 32px; background: var(--ns-black); display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 20px 60px rgba(0,0,0,0.25); margin-bottom: 24px; }
    .app-icon-placeholder .icon-num { width: 115px; height: auto; margin-bottom: 2px; }
    
    #features { background: var(--ns-white); }
    .feature-list { list-style: none; padding: 0; margin: 0; }
    .feature-list li { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--ns-gray-200); font-size: 1rem; color: var(--ns-gray-800); }
    .feature-list li:last-child { border-bottom: none; }
    .feature-list li .fi-icon { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--ns-red); font-size: 1.5rem; margin-top: 1px; }
    
    #download { background: var(--ns-gray-200); color: var(--ns-black); }

    /* ── Screenshot Gallery ───────────────────── */
    .screenshot-placeholder {
      background: var(--ns-gray-100);
      border: 1px solid var(--ns-gray-200);
      border-radius: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: var(--ns-gray-600);
      font-family: 'Barlow', sans-serif;
      font-weight: 500;
      padding: 40px 20px;
      text-align: center;
      min-height: 320px;
    }
    .screenshot-placeholder .ss-icon {
      font-size: 2.2rem;
      color: var(--ns-gray-200);
      margin-bottom: 12px;
    }
    .screenshot-placeholder .ss-label {
      font-size: 0.8rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--ns-gray-600);
    }

    /* ── CTA Section ─────────────────────────── */
    .ns-cta {
      background: linear-gradient(165deg, var(--ns-black), var(--ns-charcoal));
      position: relative;
      overflow: hidden;
    }
    .ns-cta::before {
      content: '';
      position: absolute;
      bottom: -40%;
      left: -10%;
      width: 50%;
      height: 120%;
      background: radial-gradient(circle, rgba(230,57,70,0.1) 0%, transparent 60%);
      pointer-events: none;
    }
    .ns-cta .section-heading {
      color: var(--ns-white);
    }
    .ns-cta .section-sub {
      color: rgba(255,255,255,0.5);
    }

    .cta-number-strip {
      display: flex;
      gap: 12px;
      justify-content: center;
      margin-bottom: 40px;
    }
    .cta-num {
      width: 56px;
      height: 72px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Barlow', sans-serif;
      font-weight: 800;
      font-size: 1.8rem;
      color: var(--ns-red);
    }

    /* ── Footer ───────────────────────────────── */
    .ns-footer {
      background: var(--ns-black);
      border-top: 1px solid rgba(255,255,255,0.05);
      padding: 50px 0 40px;
    }
    .ns-footer .footer-brand {
      font-family: 'Barlow', sans-serif;
      font-weight: 800;
      font-size: 1.2rem;
      color: var(--ns-white);
    }
    .ns-footer .footer-brand .brand-dot {
      color: var(--ns-red);
    }
    .ns-footer p {
      color: rgba(255,255,255,0.3);
      font-size: 0.85rem;
    }
    .ns-footer a {
      color: rgba(255,255,255,0.4);
      text-decoration: none;
      transition: color 0.2s;
    }
    .ns-footer a:hover {
      color: var(--ns-white);
    }
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      gap: 24px;
    }
    .footer-links li a {
      font-size: 0.9rem;
      font-weight: 500;
    }

    /* ── Animations ───────────────────────────── */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── Responsive ───────────────────────────── */
    @media (max-width: 991.98px) {
      .ns-hero { padding-top: 100px; padding-bottom: 80px; min-height: auto; }
      .ns-hero::after { display: none; }
      .hero-number { display: none; }
      .hero-devices-grid {
        grid-template-columns: 100px 180px 100px;
        margin-top: 60px;
      }
      .device-iphone { width: 180px; height: 360px; }
      .device-watch { width: 100px; height: 120px; }
      .device-ipad { width: 260px; height: 180px; }
    }
    @media (max-width: 767.98px) {
      .ns-section { padding: 70px 0; }
      .hero-devices-grid { grid-template-columns: 80px 160px 80px; gap: 10px; }
      .hero-buttons { justify-content: center; }
      .features-header { display: fled; align-items: center; justify-content: center; width: 100%; }
      .footer-links { flex-direction: column; gap: 12px; }
    }