*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --bg: #fbfbfd;
      --text: #0f172a;
      --text-muted: #475569;
      --text-light: #64748b;
      --border: rgba(0,0,0,0.08);
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--bg);
      color: var(--text);
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* NAVBAR */
    .navbar-wrap {
      position: sticky;
      top: 0;
      z-index: 50;
      padding: 1rem 2rem 0.5rem;
      pointer-events: none;
    }
    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1420px;
      height: 64px;
      margin: 0 auto;
      padding: 0 1.5rem;
      border-radius: 2rem;
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.6);
      box-shadow: 0 4px 24px rgba(0,0,0,0.06);
      pointer-events: auto;
      transition: background 0.3s, box-shadow 0.3s;
    }
    .navbar.scrolled {
      background: rgba(255,255,255,0.6);
      backdrop-filter: blur(32px) saturate(180%);
      -webkit-backdrop-filter: blur(32px) saturate(180%);
      box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    }
    .navbar-nav {
      display: flex;
      flex-direction: row;
      gap: 2rem;
      font-size: 0.9375rem;
      font-weight: 600;
      color: #333;
      list-style: none;
    }
    .navbar-nav li { display: flex; align-items: center; }
    .navbar-nav a { text-decoration: none; color: inherit; transition: color 0.2s; }
    .navbar-nav a:hover { color: #000; }
    .navbar-nav a.active { color: #7c3aed; }
    .navbar-actions { display: flex; align-items: center; gap: 0.75rem; }
    .btn-login {
      font-size: 0.875rem;
      font-weight: 500;
      color: #333;
      text-decoration: none;
      transition: opacity 0.2s;
    }
    .btn-login:hover { opacity: 0.6; }
    .btn-signup {
      display: inline-flex;
      align-items: center;
      white-space: nowrap;
      padding: 0.625rem 1.5rem;
      border-radius: 9999px;
      font-size: 0.875rem;
      font-weight: 500;
      color: #fff;
      text-decoration: none;
      background: linear-gradient(90deg, #4e58fe, #904bf5, #cc01ff, #4e58fe);
      background-size: 300% 100%;
      background-position: 0% 50%;
      transition: background-position 0.6s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }
    .btn-signup:hover {
      background-position: 100% 50%;
      transform: scale(1.05);
      box-shadow: 0 8px 30px rgba(144,75,245,0.35);
    }

    /* GRADIENT TEXT */
    .gradient-text {
      background: linear-gradient(90deg, #4e58fe, #904bf5, #cc01ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* BADGE */
    .section-badge {
      display: inline-flex;
      align-items: center;
      padding: 0.375rem 1rem;
      border-radius: 9999px;
      background: rgba(144,75,245,0.08);
      border: 1px solid rgba(144,75,245,0.2);
      color: #7c3aed;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 1.25rem;
    }

    /* HERO */
    .hero {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 7rem 2rem 5rem;
      max-width: 860px;
      margin: 0 auto;
    }
    .hero h1 {
      font-size: clamp(2.25rem, 5vw, 3.5rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.03em;
      color: var(--text);
      margin-bottom: 1.25rem;
    }
    .hero p {
      font-size: 1.125rem;
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 640px;
      margin: 0 auto 2.5rem;
    }
    .hero-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn-gradient {
      display: inline-flex;
      align-items: center;
      padding: 0.875rem 2rem;
      border-radius: 9999px;
      font-size: 0.9375rem;
      font-weight: 600;
      color: #fff;
      text-decoration: none;
      background: linear-gradient(90deg, #4e58fe, #904bf5, #cc01ff, #4e58fe);
      background-size: 300% 100%;
      background-position: 0% 50%;
      transition: background-position 0.6s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }
    .btn-gradient:hover {
      background-position: 100% 50%;
      transform: scale(1.04);
      box-shadow: 0 8px 30px rgba(144,75,245,0.35);
    }
    .btn-dark {
      display: inline-flex;
      align-items: center;
      padding: 0.875rem 2rem;
      border-radius: 9999px;
      font-size: 0.9375rem;
      font-weight: 600;
      color: #fff;
      text-decoration: none;
      background: #0f172a;
      border: 1px solid rgba(255,255,255,0.08);
      transition: background 0.2s, transform 0.2s;
    }
    .btn-dark:hover {
      background: #1e293b;
      transform: scale(1.04);
    }

    /* SECTIONS */
    .section {
      position: relative;
      z-index: 1;
      padding: 5rem 2rem;
    }
    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
    }
    .section-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }
    .section-title {
      font-size: 40px;
      font-weight: 600;
      letter-spacing: -0.02em;
      color: #0f172a;
      margin-bottom: 0.75rem;
    }
    .section-subtitle {
      font-size: 1.0625rem;
      color: var(--text-muted);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.65;
    }

    /* HOW IT WORKS */
    .steps-wrap {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      position: relative;
    }
    .steps-wrap::before {
      content: '';
      position: absolute;
      top: 2rem;
      left: calc(16.67% + 2rem);
      right: calc(16.67% + 2rem);
      height: 1px;
      border-top: 2px dashed rgba(144,75,245,0.25);
      pointer-events: none;
    }
    .step {
      text-align: center;
      padding: 0 2rem;
    }
    .step-num {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: linear-gradient(135deg, #4e58fe, #904bf5, #cc01ff);
      color: #fff;
      font-size: 1.25rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.25rem;
      position: relative;
      z-index: 1;
      box-shadow: 0 8px 24px rgba(144,75,245,0.3);
    }
    .step h3 {
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 0.625rem;
    }
    .step p {
      font-size: 0.9375rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* FEATURE CARDS */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    .feature-card {
      background: #fff;
      border-radius: 1.5rem;
      border: 1px solid rgba(0,0,0,0.06);
      padding: 2rem;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    }
    .feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 0.875rem;
      background: linear-gradient(135deg, rgba(78,88,254,0.1), rgba(204,1,255,0.1));
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.125rem;
      font-size: 1.375rem;
    }
    .feature-card h3 {
      font-size: 1.0625rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 0.5rem;
    }
    .feature-card p {
      font-size: 0.9375rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* INTEGRATIONS STRIP */
    .integrations-strip {
      background: #fff;
      border-radius: 2rem;
      border: 1px solid rgba(0,0,0,0.06);
      padding: 3rem 2rem;
      text-align: center;
    }
    .integrations-strip h2 {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--text-muted);
      margin-bottom: 2rem;
      letter-spacing: -0.01em;
    }
    .integrations-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      justify-content: center;
    }
    .pill {
      padding: 0.5rem 1.25rem;
      border-radius: 9999px;
      background: #fff;
      border: 1px solid rgba(0,0,0,0.08);
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--text);
      white-space: nowrap;
    }

    /* DARK CTA */
    .cta-dark {
      border-radius: 2.5rem;
      background: linear-gradient(135deg, #0a0814 0%, #1a1040 50%, #0f0a20 100%);
      min-height: 320px;
      padding: 4rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-dark::before {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(144,75,245,0.2), transparent 70%);
      top: -200px;
      left: 50%;
      transform: translateX(-50%);
      pointer-events: none;
    }
    .cta-dark h2 {
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.75rem;
      position: relative;
      z-index: 1;
      letter-spacing: -0.02em;
    }
    .cta-dark p {
      font-size: 1rem;
      color: rgba(255,255,255,0.6);
      margin-bottom: 2rem;
      position: relative;
      z-index: 1;
    }
    .cta-dark .btn-gradient { position: relative; z-index: 1; }

    @media (max-width: 768px) {
      .steps-wrap { grid-template-columns: 1fr; }
      .steps-wrap::before { display: none; }
      .features-grid { grid-template-columns: 1fr; }
      .navbar-nav { display: none; }
    }
  
    /* ── RESPONSIVE NAVBAR ─────────────────────────────────── */
    @media (max-width: 960px) {
      .navbar-nav { gap: 1.25rem; }
    }

    @media (max-width: 860px) {
      .navbar-nav { gap: 0.875rem; font-size: 0.875rem; }
      .btn-signup { padding: 0.5rem 1.125rem; }
    }

    @media (max-width: 760px) {
      .navbar-nav { display: none; }
    }

    @media (max-width: 680px) {
      .navbar-wrap { padding: 0.75rem 0.75rem 0.4rem; }
      .navbar { padding: 0 1rem; border-radius: 1.5rem; height: 56px; }
      .navbar-logo svg, .navbar > a svg, nav.navbar a > svg { height: 26px; }
      .btn-login { font-size: 0.8rem; }
      .btn-signup { font-size: 0.8rem; padding: 0.5rem 0.875rem; }
    }
