  
    /* ─── Reset & Base ─── */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: system-ui, -apple-system, sans-serif;
      background: #080810;
      color: #f0f0f5;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }

    /* ─── Animations ─── */
    @keyframes pulse-ring {
      0%, 100% { transform: scale(1); opacity: 1; }
      50%       { transform: scale(1.7); opacity: 0; }
    }
    @keyframes pulse-core {
      0%, 100% { transform: scale(1); }
      50%       { transform: scale(1.25); }
    }
    @keyframes float-up {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fade-in {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes shimmer {
      from { background-position: 200% center; }
      to   { background-position: -200% center; }
    }
    @keyframes card-in {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes glow-pulse {
      0%, 100% { opacity: 0.35; }
      50%       { opacity: 0.65; }
    }
    @keyframes menu-slide {
      from { opacity: 0; transform: translateY(-8px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ─── Navbar ─── */
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.9rem 2rem;
      background: rgba(8, 8, 16, 0.85);
      backdrop-filter: blur(20px);
      border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
      position: sticky;
      top: 0;
      z-index: 200;
      animation: fade-in 0.5s ease both;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      flex-shrink: 0;
    }
    .logo img {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      object-fit: cover;
    }
    .logo-text {
      font-size: 16px;
      font-weight: 700;
      color: #f0f0f5;
      letter-spacing: -0.02em;
    }

    /* Capsule nav links */
    .nav-capsule {
      display: flex;
      align-items: center;
      gap: 2px;
      background: rgba(255, 255, 255, 0.05);
      border: 0.5px solid rgba(255, 255, 255, 0.1);
      border-radius: 99px;
      padding: 3px;
    }
    .nav-link {
      font-size: 13px;
      color: rgba(240, 240, 245, 0.55);
      padding: 6px 14px;
      border-radius: 99px;
      cursor: pointer;
      transition: all 0.2s;
      white-space: nowrap;
      user-select: none;
    }
    .nav-link:hover  { color: #f0f0f5; background: rgba(255, 255, 255, 0.08); }
    .nav-link.active {
      color: #f0f0f5;
      background: rgba(124, 58, 237, 0.35);
      border: 0.5px solid rgba(124, 58, 237, 0.4);
    }

    .nav-right { display: flex; align-items: center; gap: 8px; }

    .btn-ghost {
      font-size: 13px;
      color: rgba(240, 240, 245, 0.6);
      background: transparent;
      border: none;
      padding: 7px 14px;
      border-radius: 99px;
      cursor: pointer;
      transition: all 0.2s;
    }
    .btn-ghost:hover { color: #f0f0f5; background: rgba(255, 255, 255, 0.06); }

    .btn-cta {
      font-size: 13px;
      font-weight: 500;
      color: white;
      background: linear-gradient(135deg, #8b5cf6, #7c3aed);
      border: none;
      padding: 7px 18px;
      border-radius: 99px;
      cursor: pointer;
      transition: all 0.2s;
    }
    .btn-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 18px rgba(124, 58, 237, 0.35); }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 4px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
    }
    .hamburger span {
      width: 20px;
      height: 1.5px;
      background: rgba(240, 240, 245, 0.7);
      border-radius: 2px;
      transition: all 0.3s;
      display: block;
    }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      background: rgba(10, 10, 18, 0.97);
      border-bottom: 0.5px solid rgba(255, 255, 255, 0.07);
      padding: 1rem 1.5rem 1.5rem;
      animation: menu-slide 0.25s ease both;
    }
    .mobile-menu.open { display: block; }

    .mobile-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 1rem; }
    .mobile-link {
      font-size: 15px;
      color: rgba(240, 240, 245, 0.6);
      padding: 10px 14px;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.2s;
      user-select: none;
    }
    .mobile-link:hover,
    .mobile-link.active { color: #f0f0f5; background: rgba(124, 58, 237, 0.2); }

    .mobile-cta-row { display: flex; gap: 8px; }
    .mobile-signin {
      flex: 1;
      font-size: 14px;
      color: rgba(240, 240, 245, 0.6);
      background: rgba(255, 255, 255, 0.05);
      border: 0.5px solid rgba(255, 255, 255, 0.1);
      padding: 10px;
      border-radius: 10px;
      cursor: pointer;
      text-align: center;
    }
    .mobile-start {
      flex: 1;
      font-size: 14px;
      font-weight: 500;
      color: white;
      background: linear-gradient(135deg, #8b5cf6, #7c3aed);
      border: none;
      padding: 10px;
      border-radius: 10px;
      cursor: pointer;
      text-align: center;
      display: block;
    }

    /* ─── Hero ─── */
    .hero {
      text-align: center;
      padding: 5rem 1.5rem 2.5rem;
      max-width: 780px;
      margin: 0 auto;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(124, 58, 237, 0.1);
      border: 0.5px solid rgba(124, 58, 237, 0.3);
      color: #c4b5fd;
      font-size: 13px;
      padding: 5px 14px 5px 8px;
      border-radius: 99px;
      margin-bottom: 1.75rem;
      animation: float-up 0.6s 0.1s ease both;
    }

    /* Animated pulse dot */
    .pulse-wrap {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 16px;
      height: 16px;
    }
    .pulse-core {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #a78bfa;
      position: absolute;
      animation: pulse-core 2s ease-in-out infinite;
    }
    .pulse-ring {
      width: 13px;
      height: 13px;
      border-radius: 50%;
      border: 1.5px solid #a78bfa;
      position: absolute;
      animation: pulse-ring 2s ease-in-out infinite;
    }
    .pulse-ring-2 {
      width: 13px;
      height: 13px;
      border-radius: 50%;
      border: 1.5px solid #a78bfa;
      position: absolute;
      animation: pulse-ring 2s ease-in-out infinite 0.6s;
    }

    .hero h1 {
      font-size: clamp(2rem, 6vw, 3.6rem);
      font-weight: 700;
      line-height: 1.15;
      color: #f0f0f5;
      margin-bottom: 0.4rem;
      letter-spacing: -0.03em;
      animation: float-up 0.6s 0.2s ease both;
    }
    .gradient-text {
      background: linear-gradient(90deg, #a78bfa 0%, #60a5fa 50%, #a78bfa 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: shimmer 3s linear infinite;
    }

    .hero-tags {
      font-size: clamp(0.8rem, 2vw, 0.95rem);
      color: rgba(240, 240, 245, 0.35);
      margin: 0.5rem 0 0;
      letter-spacing: 0.02em;
      animation: float-up 0.6s 0.28s ease both;
    }
    .hero-sub {
      font-size: clamp(0.9rem, 2.5vw, 1.05rem);
      line-height: 1.75;
      color: rgba(240, 240, 245, 0.45);
      max-width: 500px;
      margin: 1rem auto 2rem;
      animation: float-up 0.6s 0.35s ease both;
    }

    .hero-btns {
      display: flex;
      gap: 10px;
      justify-content: center;
      flex-wrap: wrap;
      animation: float-up 0.6s 0.42s ease both;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: linear-gradient(135deg, #8b5cf6, #7c3aed);
      color: white;
      border: none;
      padding: 12px 26px;
      border-radius: 11px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      box-shadow: 0 0 28px rgba(124, 58, 237, 0.22);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(124, 58, 237, 0.38); }
    .btn-secondary {
      background: rgba(255, 255, 255, 0.04);
      color: #f0f0f5;
      border: 0.5px solid rgba(255, 255, 255, 0.14);
      padding: 12px 24px;
      border-radius: 11px;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s;
    }
    .btn-secondary:hover { border-color: rgba(255, 255, 255, 0.28); background: rgba(255, 255, 255, 0.07); }

    /* Hero stats bar */
    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      margin-top: 2.5rem;
      padding-top: 1.75rem;
      border-top: 0.5px solid rgba(255, 255, 255, 0.06);
      animation: float-up 0.6s 0.5s ease both;
    }
    .stat-item { text-align: center; }
    .stat-num { font-size: 1.25rem; font-weight: 700; color: #f0f0f5; letter-spacing: -0.02em; }
    .stat-lbl { font-size: 11px; color: rgba(240, 240, 245, 0.32); margin-top: 1px; }

    /* ─── Dashboard Preview ─── */
    .preview-wrapper {
      max-width: 860px;
      margin: 2.5rem auto 0;
      padding: 0 1.25rem;
      animation: float-up 0.8s 0.55s ease both;
    }
    .preview-glow {
      position: relative;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(124,58,237,0.28), rgba(96,165,250,0.12));
      padding: 1px;
    }
    .preview-glow::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(124,58,237,0.18), rgba(96,165,250,0.08));
      animation: glow-pulse 3s ease-in-out infinite;
      filter: blur(10px);
      z-index: -1;
    }
    .preview-frame { border-radius: 15px; overflow: hidden; background: #0f0f1a; }

    .browser-bar {
      background: #151520;
      padding: 9px 14px;
      display: flex;
      align-items: center;
      gap: 6px;
      border-bottom: 0.5px solid rgba(255, 255, 255, 0.05);
    }
    .browser-dot { width: 9px; height: 9px; border-radius: 50%; }
    .url-bar {
      flex: 1;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 5px;
      padding: 3px 10px;
      font-size: 11px;
      color: rgba(240, 240, 245, 0.22);
      margin: 0 0.75rem;
    }

    .dashboard-body { padding: 1.1rem; }
    .dash-title { font-size: 1.1rem; font-weight: 600; color: #c4b5fd; margin-bottom: 0.1rem; }
    .dash-sub   { font-size: 11px; color: rgba(240,240,245,0.3); margin-bottom: 0.85rem; }

    .dash-stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 7px; margin-bottom: 0.85rem; }
    .dash-stat {
      background: rgba(255,255,255,0.04);
      border: 0.5px solid rgba(255,255,255,0.06);
      border-radius: 9px;
      padding: 10px 12px;
    }
    .dash-stat-label { font-size: 10px; color: rgba(240,240,245,0.32); margin-bottom: 2px; }
    .dash-stat-val   { font-size: 1.15rem; font-weight: 700; color: #f0f0f5; }
    .dash-stat-note  { font-size: 10px; margin-top: 2px; }

    .doc-section-label {
      font-size: 10px;
      color: rgba(240,240,245,0.28);
      margin-bottom: 6px;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .doc-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 6px; }
    .doc-card {
      background: rgba(255,255,255,0.03);
      border: 0.5px solid rgba(255,255,255,0.06);
      border-radius: 9px;
      padding: 10px 8px;
      transition: border-color 0.2s;
    }
    .doc-card:hover { border-color: rgba(124,58,237,0.28); }
    .doc-icon  { width: 28px; height: 28px; border-radius: 7px; display: flex; align-items: center; justify-content: center; margin-bottom: 7px; font-size: 13px; }
    .doc-name  { font-size: 10px; font-weight: 600; color: #f0f0f5; margin-bottom: 1px; }
    .doc-desc  { font-size: 9px; color: rgba(240,240,245,0.28); margin-bottom: 5px; }
    .doc-badge { font-size: 9px; color: #a78bfa; font-weight: 500; }

    /* ─── Sections ─── */
    .section {
      max-width: 920px;
      margin: 0 auto;
      padding: 4.5rem 1.5rem;
    }
    .section-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      color: #a78bfa;
      text-transform: uppercase;
      margin-bottom: 0.6rem;
    }
    .section-title {
      font-size: clamp(1.5rem, 3.5vw, 2.1rem);
      font-weight: 700;
      color: #f0f0f5;
      margin-bottom: 0.6rem;
      line-height: 1.25;
      letter-spacing: -0.025em;
    }
    .section-sub {
      font-size: 0.95rem;
      color: rgba(240,240,245,0.42);
      max-width: 480px;
      line-height: 1.75;
    }

    .divider { height: 0.5px; background: rgba(255,255,255,0.06); }

    /* ─── Feature Cards ─── */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 12px;
      margin-top: 2.5rem;
    }
    .feature-card {
      background: #0f0f1a;
      border: 0.5px solid rgba(255,255,255,0.07);
      border-radius: 13px;
      padding: 1.4rem;
      transition: all 0.25s;
      opacity: 0;
    }
    .feature-card.visible { animation: card-in 0.5s ease both; }
    .feature-card:hover   { border-color: rgba(124,58,237,0.28); background: #131320; transform: translateY(-2px); }
    .feat-icon  { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.9rem; font-size: 16px; }
    .feat-title { font-size: 14px; font-weight: 600; color: #f0f0f5; margin-bottom: 4px; }
    .feat-desc  { font-size: 13px; color: rgba(240,240,245,0.38); line-height: 1.65; }

    /* ─── Document Types ─── */
    .types-section { padding: 4rem 1.5rem; text-align: center; }
    .types-inner   { max-width: 920px; margin: 0 auto; }
    .types-grid    { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px; margin-top: 2.25rem; }
    .type-card {
      background: #0f0f1a;
      border: 0.5px solid rgba(255,255,255,0.07);
      border-radius: 13px;
      padding: 1.3rem 1rem;
      text-align: left;
      transition: all 0.25s;
    }
    .type-card:hover { background: #131320; border-color: rgba(124,58,237,0.28); transform: translateY(-2px); }
    .type-icon { font-size: 20px; margin-bottom: 9px; }
    .type-name { font-size: 13px; font-weight: 600; color: #f0f0f5; margin-bottom: 3px; }
    .type-hint { font-size: 11px; color: rgba(240,240,245,0.32); }

    /* ─── CTA Section ─── */
    .cta-section { padding: 4.5rem 1.5rem; text-align: center; }
    .cta-card {
      max-width: 600px;
      margin: 0 auto;
      background: #0f0f1a;
      border: 0.5px solid rgba(124,58,237,0.22);
      border-radius: 20px;
      padding: 3rem 1.75rem;
      position: relative;
      overflow: hidden;
    }
    .cta-glow-left  { position: absolute; left: -80px; top: -80px; width: 200px; height: 200px; border-radius: 50%; background: rgba(124,58,237,0.1); filter: blur(40px); }
    .cta-glow-right { position: absolute; right: -80px; bottom: -80px; width: 200px; height: 200px; border-radius: 50%; background: rgba(96,165,250,0.07); filter: blur(40px); }
    .cta-card h2 {
      font-size: clamp(1.5rem, 3.5vw, 1.9rem);
      font-weight: 700;
      color: #f0f0f5;
      margin-bottom: 0.65rem;
      letter-spacing: -0.025em;
      position: relative;
    }
    .cta-card p {
      font-size: 14px;
      color: rgba(240,240,245,0.42);
      margin-bottom: 1.75rem;
      line-height: 1.75;
      position: relative;
    }
    .cta-badges {
      display: flex;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 1.75rem;
      position: relative;
    }
    .cta-badge {
      font-size: 12px;
      color: rgba(240,240,245,0.45);
      background: rgba(255,255,255,0.05);
      border: 0.5px solid rgba(255,255,255,0.1);
      padding: 5px 11px;
      border-radius: 99px;
    }

    /* ─── Footer ─── */
    footer {
      border-top: 0.5px solid rgba(255,255,255,0.07);
      padding: 3rem 2rem 1.75rem;
      background: #060610;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 2.5rem;
      max-width: 920px;
      margin: 0 auto 2.25rem;
    }
    .footer-brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 0.7rem;
    }
    .footer-brand-logo img {
      width: 28px;
      height: 28px;
      border-radius: 7px;
      object-fit: cover;
    }
    .footer-brand-logo span {
      font-size: 16px;
      font-weight: 700;
      color: #f0f0f5;
      letter-spacing: -0.02em;
    }
    .footer-brand p {
      font-size: 13px;
      color: rgba(240,240,245,0.32);
      line-height: 1.7;
      max-width: 230px;
    }
    .footer-status {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 0.9rem;
      background: rgba(124,58,237,0.09);
      border: 0.5px solid rgba(124,58,237,0.22);
      border-radius: 99px;
      padding: 4px 11px;
      font-size: 11px;
      color: #a78bfa;
    }
    .footer-col h4 {
      font-size: 11px;
      font-weight: 600;
      color: rgba(240,240,245,0.45);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 0.9rem;
    }
    .footer-col a {
      display: block;
      font-size: 13px;
      color: rgba(240,240,245,0.38);
      margin-bottom: 0.5rem;
      cursor: pointer;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: #f0f0f5; }

    .footer-bottom {
      max-width: 920px;
      margin: 0 auto;
      padding-top: 1.25rem;
      border-top: 0.5px solid rgba(255,255,255,0.05);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.75rem;
    }
    .footer-copy  { font-size: 12px; color: rgba(240,240,245,0.2); }
    .footer-legal { display: flex; gap: 1.25rem; }
    .footer-legal a {
      font-size: 12px;
      color: rgba(240,240,245,0.28);
      cursor: pointer;
      transition: color 0.2s;
    }
    .footer-legal a:hover { color: rgba(240,240,245,0.55); }

    /* ─── Responsive ─── */
    @media (max-width: 768px) {
      .nav { padding: 0.85rem 1.25rem; }
      .nav-capsule, .nav-right .btn-ghost, .nav-right .btn-cta { display: none; }
      .hamburger { display: flex; }

      .hero { padding: 3.5rem 1.25rem 2rem; }
      .hero-stats { gap: 1.25rem; }
      .stat-num   { font-size: 1.1rem; }

      .doc-grid      { grid-template-columns: repeat(2, minmax(0,1fr)); }
      .features-grid { grid-template-columns: 1fr; }
      .types-grid    { grid-template-columns: repeat(2, minmax(0,1fr)); }

      .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-brand p { max-width: 100%; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
      .cta-card { padding: 2.25rem 1.25rem; }
    }

    @media (max-width: 480px) {
      .hero h1 { font-size: 1.9rem; }
      .hero-stats { gap: 1rem; }
      .types-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-brand { grid-column: auto; }
      .btn-primary, .btn-secondary { padding: 11px 18px; font-size: 14px; }
      .hero-btns { gap: 8px; }
    }
  